Search the Community
Showing results for tags 'TUT'.
Found 99 results
-
This tutorial will will show you how you can get a Cydia alternative on your jailbroken iDevice, works on iOS 9.3.1 Getting Started: [hide] How to Install Mojo on iOS Without Jailbreak: Step 1: First and foremost, you’re going to need to head on over to mojoapp.xyz in Safari on your iOS device. Step 2: That will take you to a dedicated Mojo Installer page. The page itself contains a lot of information about the package, as well as a button in the middle to install Mojo directly onto the iOS device. Tap on the button. Step 3: The Mojo Installer will then take you to a new page with some information on it about building a custom profile. Read the information under the “What does this do?” header to familiarize yourself with the process before tapping on the Build Custom Profile button. Step 4: Your device will then switch from the browser to the native Settings app and take you to a page with the title Install Profile. Tap Install in the top-right corner to proceed. Step 5: If your device has a passcode activated, then you will need to enter that into the device to proceed. Step 6: After entering the passcode, tap on the Install button that is shown in the resulting action sheet pop-up. Step 7: The Settings app will then hand control back over to the browser, where you can tap theInstall Mojo button below to proceed. Step 8: Select Install in the resulting pop-up to confirm the installation. This will then hand control back over to the Settings app with yet another Install Profile page. This time around, the profile willnot be signed and will show in red. Step 9: Select Install and enter the device passcode if necessary. Step 10: Select Next from the top-right corner. If a page titled Warning appears to show information about an unsigned profile, tap Install once again to continue. Step 11: And yet again, select Install from the action sheet before hitting Done in the top-right corner. Mojo should then be installed on the device and will be available from the Home screen. Once the above process has been followed through, you should have Mojo successfully installed on the device. Launch the app and start adding repos followed by installing any apps you like. Some of these apps might add certificates of their own. You will have to go into Settings > General > Profile and Trust each of these individually to be able to launch the apps. Tutorial Credits: RedmondPie.com [/hide]
-
THIS IS A TUTORIAL ON HOW TO MAKE A PREFERENCE BUNDLE. I MADE THIS BECAUSE THERE IS A LOT OF TUT OUT THERE THAT DON'T EXPLAIN EVERYTHING. Requirements: -theos -I am assuming you are using IOSMods patcher theos template, if not you can find it here: click me -A hack already coded, not obligated just it is going to be faster :) Instructions: [hide] Once you have a project created with theos, I am assuming you have and that you selected IOSMods patcher template if not go see the link above in requirements, you should be redy to start! Usually when coding a normal tweak we don't need to adapt the code for making it compatible for a preference bundle. During this tutorial I will be using Tiny Tower as an exemple. Now let's say you just coded a tweak for hacking coins and bux, it should look like this: Now that would be good for a tweak but not for a patcher. That's why we need to make the code compatible with a preference bundle. You would edit the code like this: Now it is unfortunately not finished you need to make the preference bundle. Go in the folder named with the name of your project and then in Resources, click yourhackname.plist and delete every thing except : and this Now that you have delteted everything except things mentioned above I would add this for Tiny Tower: [/hide] you are now ready to compile!! if you want to customize your preference bundle go see our tut section :) Also if you have any question pm me or ask in the coment section :D
-
This tutorial is for advance users who already has some knowledge about IDA hacking. Use this tutorial to hack games when u cant use il2cpp dumper to dump unity games. In the tutorial I hacked pubg and showed how to hack recoil and spread. If you have any questions pls comment down or dm me. [hide] https://www.youtube.com/watch?v=NzsWKoCVzR8[/hide] Credits: me
- 708 replies
-
- ida hacking
- ida strings
-
(and 1 more)
Tagged with:
-
In this tutorial, I will just give a brief overview of some ARM64 You need to know ARMv7 first so this will be easier to understand. Let's Get Started [hide] So basically, instructions are the same, ARM64 has LDR, MOV, STR, etc., same from ARMv7. You will notice ARM64 has different registers, instead of R0, for example, ARM64 uses X0, OR W0. You can hack it the same way as you would ARMv7. Example: This is ammo in the game Forward Assault. The highlighted instruction is what I hacked, SUB W8, W8, #1 Subtract 1 from W8 and put the value back into W8, simply NOP it. OR You can hack the STR underneath it and instead of storing W8, change it to W20 or W29. It will result in making your ammo a very high number. why? Because you silly goose, W20/W29 is the equivalent of R7. OR you can use X20/X29 if the function has X But wait, are the W20/W29 both the same Father Nitro? Well, I'm glad you asked, I was just about to get to that you eager mcbeaver. You see here, the 20 has a high value, but 29 has a even more higher value. Sometimes 29 can make it go too high it can go negative, so use 20 instead. BOOLS Now let's talk about Booleans in ARM64. In ARMv7, to make something return TRUE or FALSE, we simply change it to MOV R0, #1 OR MOV R0, #0 ARM64 is no different, it's just X instead. MOV X0, #0 or MOV X0, #1 Example: Here is an example function. In case you didn't know, it's a BOOL since this function loads a byte, which have 0 or 1 value. So as you can see, this function gets my sexiness. Obviously, to hack it you will change it to MOV X0, #1 making it true, which it is.. This can NEVER be false :kappa: FLOATS So floats in ARM64 are similar in ARMv7, using FMOV instead of VMOV. So just hack the instruction the same way as you would in ARMv7. Example: You can change that FMOv S2, #0.5 to FMOV S2, #31.0. Now it's time to discuss something else. As you make know in ARM7, sometimes we want to hack the beginning of a function and make it return a float value. so we would do: VMOV S0, #31.0 VMOV R0, S0 BX LR So father Nitro, is it the same in ARM64? I know what you're thinking, you're thinking in ARM64 the equivalent would be: FMOV S0, #31.0 FMOV X0, S0 RET WRONG! Do that and watch the game crash. In arm64 the second instruction isn't needed. FMOV S0, #31.0 FMOV X0, S0 RET SO just replace the first 2 lines of the function with FMOV S0, #31.0 then RET that bad boy. Now let me get into another example why ARM64 is bae. Example: This function is from Critical Ops, which gets the bounciness from the grenade. As you will see, it's a LDR, you can hack it and change it from LDR to FMOV. Yes, in ARM64 you can hack LDR functions to FMOV's. So to hack the function, you can replace the LDR S0, [X0,#0xA0] with a FMOV S0, #31.0 This function made my grenades super bouncy, it was funny to troll in public matches. The grenades bounced like crazy! In ARMv7 I found the same function, it was a LDR followed by a BX LR (RET). So to hack it, I tried many things, MOV R0, R7 and such but every time I threw a grenade it crashed. A VMOV S0, #31.0 VMOV R0, S0 BX LR wouldn't work since there isn't enough space. Unless you wanted to write your own code to the unused part of the binary and make the function branch there, which I'm not entirely sure would have worked since I never tried. So I just hacked it in ARM64 instead [/hide]
-
Keto Vitax Gummies Erfahrungsberichte – Heute kann jeder aus einer Vielzahl frischer Diätpläne wählen. Trotz der Tatsache, dass jeder schlank, aktiv und gesund erscheinen möchte, bedeutet der gehetzte und ungesunde Lebensstil der Menschen, dass sie nur manchmal Zeit finden, sich auf ihre Gesundheit zu konzentrieren. Infolgedessen nehmen die Menschen an Gewicht zu und haben Schwierigkeiten, genug Schlaf zu bekommen. Während der ketogenen Diät ist der Stoffwechselzustand der Ketose im Wesentlichen hypothetisch. Die ketogene Ernährung ist eine beliebte Methode, um dieses Ziel zu erreichen, da sie effektiv und vollkommen natürlich ist. Related Sources:- https://www.sympla.com.br/produtor/ironmenscbdgummiesreviews23 https://www.scoop.it/topic/carolinhughes?curate=true&onb=1&loader=1 https://www.toyorigin.com/community/index.php?threads/iron-mens-cbd-gummies%E3%80%90new-update-price-where-to-buy.182593/ https://www.dibiz.com/carolinhughes https://groups.google.com/g/iron-mens-cbd-gummies5/c/24bIg6F8AW4 https://www.toyorigin.com/community/index.php?threads/iron-mens-cbd-gummies-reviews-scam-or-legit-shark-tank-price-updated-2023-warning.182609/ https://groups.google.com/g/iron-mens-cbd-gummies5/c/9nZn3hLSGLI https://sites.google.com/view/iron-mens-cbd-gummies-22/home https://www.ivoox.com/podcast-iron-mens-cbd-gummies-reviews-scam-or-legit_sq_f11933950_1.html https://www.sympla.com.br/produtor/ironmenscbdgummies53 https://divinefitketogummies.hashnode.dev/iron-mens-cbd-gummiesnew-update-price-where-to-buy https://sites.google.com/view/iron-mens-cbd-gummies-50/home https://www.scoop.it/topic/iron-mens-cbd-gumm https://www.scoop.it/topic/endura-male-enhancement-by-enduramale-2?curate=true&onb=1&loader=1 https://www.sympla.com.br/produtor/enduramaleenhancement2023 http://toyorigin.com/community/index.php?threads/endura-male-enhancement-reviews-2023-sale-is-now-live-do-not-miss-the-chance.182580/ https://dribbble.com/shots/21335634-Endura-Male-Enhancement?added_first_shot=true https://dribbble.com/shots/21335988-Endura-Male-Enhancement?added_first_shot=true https://www.scoop.it/topic/endura-male-enhancement-by-maleendura?curate=true&onb=1&loader=1 https://www.sympla.com.br/produtor/enduramaleenhancementreviews2023 https://www.toyorigin.com/community/index.php?threads/get-endura-male-enhancement-sale-is-now-live-do-not-miss-the-chance.182622/ https://www.sympla.com.br/produtor/enduramaleenhancementus https://www.scoop.it/topic/endura-male-enhancement-by-enramale?curate=true&onb=1&loader=1 http://www.dibiz.com/maleendura https://sites.google.com/view/endura-male-enhancement-review/home https://sites.google.com/view/endura-male-enhancement-2023/home https://sites.google.com/view/enduramale-enhancement/home https://endura-male-enhancement-3.jimdosite.com/ https://lookerstudio.google.com/reporting/0fc06191-9edd-4745-b636-c55285e1137a https://sites.google.com/view/keto-xplode-gummieserfahrungen/home https://www.scoop.it/topic/keto-xplode-gummies-erfahrungen-by-duratm?curate=true&onb=1&loader=1 https://www.sympla.com.br/produtor/ketoxplodegummieserfahrungenau https://infogram.com/keto-xplode-gummies-erfahrungen-1hzj4o3nw9lpo4p?live https://sites.google.com/view/ketoxplode-gummies-erfahrungen/home https://keto-xplode-gummies-erfahrungen.jimdosite.com/ https://www.scoop.it/topic/keto-xplode-gummies-erfahrungen-by-fizztm?curate=true&onb=1&loader=1 https://www.sympla.com.br/produtor/ketoxplodegummieserfahrungenau24 https://infogram.com/keto-xplode-gummies-erfahrungen-2023-or-is-it-worth-buying-or-buy-from-official-site-1ho16vo810dlx4n?live https://sites.google.com/view/keto-xplode-gummies-erfahrung/home https://keto-xplode-gummies-erfahrungen-1.jimdosite.com/ https://www.toyorigin.com/community/index.php?threads/keto-xplode-gummies-erfahrungen-discount-available-only-for-today.182696/ https://www.scoop.it/topic/keto-xplode-gummies-erfahrungen-by-duratmji?curate=true&onb=1&loader=1 https://infogram.com/keto-xplode-gummies-erfahrungen-or-discount-available-only-for-today-1ho16vo810ymx4n?live https://www.sympla.com.br/produtor/ketoxplodegummieserfahrungendiscountavailableonlyfortoday https://lookerstudio.google.com/reporting/13a430ff-9c1b-43c2-ba3e-320e762ca641 https://www.dibiz.com/duratmji https://sites.google.com/view/ketovitaxgumieserfahrungsbe23/home https://groups.google.com/g/keto-vitax-gummies-erfahrungsberichte23/c/pJSW05EMXFY https://sites.google.com/view/ketovitaxgummiesgermany24/home https://groups.google.com/g/keto-vitax-gummies-germany-erfahrungen-24/c/zIHgoW4KnuE https://infogram.com/app/#/edit/cc6690c4-2f4a-441a-a2ed-f9fa5a636808 https://techplanet.today/post/keto-vitax-gummies-erfahrungsberichte-reviews-germany-alert-vitax-keto-gummies-germany-de-exposed-reports https://techplanet.today/post/keto-vitax-gummies-germany-keto-vitax-gummies-hohle-der-lowen-ketoviax-gummies-bewertungen-erfahrungen-test-preis-wo-zu-kaufen https://www.toyorigin.com/community/index.php?threads/keto-vitax-gummies-erfahrungsberichte-reviews-germany-alert-vitax-keto-gummies-germany-de-exposed-reports.182582/ https://www.toyorigin.com/community/index.php?threads/keto-vitax-gummies-germany-keto-vitax-gummies-hohle-der-lowen-ketoviax-gummies-bewertungen-erfahrungen-test-preis-wo-zu-kaufen.182636/ https://seema-nishad-1.jimdosite.com/ https://www.dibiz.com/seemavob5-6 https://lookerstudio.google.com/reporting/c9089d6a-71ca-4a78-b46e-0b10f42280a1/page/edjOD https://www.scoop.it/topic/keto-vitax-gummies-by-lisaroy-8?curate=true&onb=1&loader=1 https://www.scoop.it/topic/keto-vitax-gummies-by-lisaroy-8-7 https://shina1.hashnode.dev/keto-vitax-gummies-erfahrungsberichte-testberichte-germany-alert-vitax-keto-gummies-deutschland-de-exposed-reports https://www.sympla.com.br/produtor/ketoxplodegummieserfahrungenge https://infogram.com/sexo-blog-cbd-gummies-1hzj4o37o70o34p?live https://infogram.com/sexo-blog-cbd-gummies-1h8n6m31ymxxj4x?live https://sexo-blog-cbd-gummies-8.jimdosite.com/ https://sites.google.com/view/sexo-blog-cbd-gummie/home https://www.sympla.com.br/produtor/ketoxplodegummieserfahrungenge https://www.scoop.it/topic/keto-xplode-gummies-erfahrungen-by-duratm
-
Hey guys now that I have learned flex and mshooking I am going to share some methods and targets used for hacking which will help in making flex patches and tweaks [hide] 1)First start with jailbreak Search for jailbreak and Disable all the jailbreak checks If the value is bool turn it to false And if it is Id then change it to Null 2. search for appiscracked or tampered Some bool will appear and turn them to false 3. Human Readeable - search for it And turn all of them to true 4. How to get rid of tracking Search for IsOptout and uuidenabled Some bool will come and turn them to false 5. How to enable cheat engine scan search for human Readeable and turn it to true 6. Now let's learn how to get premium on apps like premium subscription in apps search for premium and u will get different results like setpremium,iselite,haselite,premium,ispremiumpurchased,these will be mainly in bool values turn all of them to true Then search for isvalid a bool will come turn it to true and then search for isexpired then turn it to false Some apps Vpn detections also to disable that search for blackout and some bool or I'd will come turn to false and null. So u have turn on premium 8. Now how to hack coins gems and xp Simply search for coins and there will be different result like coinsamount,setCoins,get coins change them int 99999 10. Now how to unlock things before its level finished Simply search for unlocked and turn all the bools things to true and search for locked and turn bools to false 11.Now how to make free store hack Search for purchased and turn it to true or search for transactionstate and turn it to int 1 12How to remove tutorial Search for tutorial and some result will come like istutorialdone turn them to true 14.How to make god-mode Search for dead,killed or damage Change dead and Kill to false And player damage to 0 Or search for health and make it to 99999 15.How to make skill Cooldown hacks simply search for enemycooldown or Powerupcooldown and turn them to whatever amount u want 16.How to make cost 0 Search for cost it will show result like Itemcost revivecost change them to 0 int 17.How to make gravity hacks Simply search for Gravity if it's float change the float to ur wish and if it's a bool then turn it to false 18.How to make autowin hacks Search for win and turn the bool to true or search for opponentturn and turn it to false or search for opponent quiet and turn it to true This will help u in hacking many games and it won't support all the applications Now I am learning Ida I have almost learned it but when I finish learning it I will post a tutorial on it too Hope it was use full for u enjoy and don't forget to rep me [/hide]
- 341 replies
-
- how to hack with mshook easy
- mshook
-
(and 2 more)
Tagged with:
-
These are a bunch of IDA tutorials that I found on the web and put them in this one big thread. IDA Hacking Tutorial Videos by AliKR96: [hide] https://www.youtube.com/playlist?list=PLb2_I5G7LZUlEl2A22nZWhtf9yKQcm9UP https://www.youtube.com/playlist?list=PLb2_I5G7LZUkJk6erTQYjx-zH05o2fXVy[/hide] How to hack sub_x games using GP/iGG, GDB & IDA : [hide] https://www.youtube.com/watch?v=huWOxX7XxOw[/hide] Mila432's tutorials: [hide] https://www.youtube.com/user/MrPrototypnBlood/videos Look for his tuts on there [/hide] String Hacking Tutorial: [hide] https://www.youtube.com/watch?v=2J1ldv2tSJE[/hide] Hack iPhone Games - The Guide By HBK.pdf : [hide]https://dl.dropboxusercontent.com/u/2935810/Forum%20folder/Guide%20on%20hacking%20iphone%20games.pdf These are video tutorials for HBK's guide above: [/hide] how to hack apps using IDA PRO: iDevice Game Hacking Tutorial by micral: [hide] https://www.dropbox.com/s/lnu1m4aorepqxxy/inotia2_tut.rar?dl=0[/hide] IDA String Hacking (IOS): [hide]www.youtube.com/watch?v=x8aDERKTNxU [/hide] Modify game-binaries to hack gems, cash etc.: [hide] http://ultrapowa.com/forum/archive/index.php/t-610.html[/hide] Handle sub_XXXX Problem in IDA (iOS Hacking) : [hide]www.youtube.com/watch?v=dks0LrGo5dE [/hide] ALL CREDITS GO TO THEIR RIGHTFUL OWNERS
-
[hide] [/hide]
-
[hide] 1) Open cydia and add this repo: "http://coolstar.org/publicrepo" 2) Tap on search and install this packages: "BigBoss Recommended Tools" "Perl" "iOS ToolChains" "MTerminal" "iFile" 3) Open MTerminal and type "su" than your password (default is alpine") 4) Now type in "installtheos3" and hit return (It will take a while, it depends also by your connection so don't worry) 5) Once in done close MTerminal and open iFile. Navigate to /var and you will see a new folder called "theos" 6) Now navigate to /usr/local/bin and search for a file called "perl5.22.0" 7) Tap on edit, select "perl5.22.0" and copy/link that file 8) Now go to /usr/bin tap edit and than tap on Create Link (Don't paste it!!!!) 9) Serach for the file that you have linked and raname it to "perl" 10) Now we need to fix theos for 64-bit devices so go to "/var/theos/bin" 11) Open the file "bootstrap.sh" and look for this line " if [[ "$(uname -s)" == "Darwin" && "$(uname -p)" != "arm" ]] " and add 64 where you see "arm" 12) The result is this " if [[ "$(uname -s)" == "Darwin" && "$(uname -p)" != "arm64" ]] " 13) Save the file and go to "/var/theos/makefile/targets" 14) Tap the blue info button for the folder "Darwin-arm" and rename in "Darwin-arm64" and save it 15) Navigate to "/var/theos/makefiles/platform" and rename the single file inside that folder in "Darwin-arm64" 16) Now we need to download the sdks. Open safari and go to this website "https://sdks.website " and download the iOS 9.3.3 sdks. 17) Once has been downloaded tap in "Open in iFile" and copy the zip file and extract the content in a new folder that you will create in the next step 18) Go to /var/theos and create a new folder called "sdks". Open that folder and paste the zip file and extract it 19) Now open MTermin and login again with the su mode 19) Type in cd /usr/bin and hit return 20) Now type this " ldid -s clang" and click return. After that type "ldid -s clang++" and click return 21) Now type cd /var/mobile and click return 22) And finally we can run theos's menu. Type in "/var/theos/bin/nic.pl" and click return 23) And here we go the menu will appear! [/hide] Credits:Killerdon(Infinite Hacker)
-
I will show you how to install Theos. Usage: Make your own hacks/tweaks with this tool [hide] Add the cydia source: http://jakeashacks.com/cydia/ Get the „Theos Installer“ Package from the repo Now download the NewTerm2 application from the xarold repo: https:/hrepo.xarold.com/ Launch the NewTerm Application and type User: su Password: alpine Run „theosinstaller 9.3 as command in Root# Root# theosinstaller 9.3 Now the installing begins now you can run theos in /var/theos/bin/nic.pl You can access this folder by downloading a file manager(I recommend Filza). [/hide] -Sab Enjoy
-
What is theos? A cross-platform suite of tools for building and deploying software for iOS and other platforms. (wiki) What can I do with it? You ever thought about how developers create cydia tweaks/apps? They do so using theos. If you want to get into developing for iOS and learn more on how apps/tweaks work, you can start off by using theos on your jailbroken iDevice. It is also possible to install it on Mac and Windows and Linux based OS, but this tutorial only covers iOS. Guide: [hide] https://www.iosmods.com/downloads/theos.pdf [/hide]
-
Target game: Zombie Anarchy - https://itunes.apple.com/us/app/zombie- ... 01472?mt=8 [hide] Keyword 1: Cheat Keyword 2: Infinite Keyword 1: Search for cheat in your stringwindow, you see a string mc_cheatsbutton xref it and take a look at the function. Noping the conditional branch will force load the button, also we can enable 2 more buttons here. Start the game and a new cheat button appeared. Now we need the menu bit added back. Take a look at the function. Right under the "onclicked" string. Code (Text): CODE: SELECT ALL ADR X3, sub_1000C8D1C Take the subroutine and you see it unconditionally branches at the end, so follow the route. Take a look at some branches. One leads to this. From here on it should be pretty straight forward what to do. Go back to the previous subroutine and nop out the first two conditional branch forcing the menu to load. You might have to enable battle menu button and the menu bit, inside the debug menu, should be obvious what to do, but here is some hint. [/hide] Credits:Sterling Archer
-
Sections: 1) Introduction 2) The hacker manifesto 3) What is hacking? 4) Choosing your path 5) Where should I start? 6) Basic terminology 7) Keylogging 8) RAT's 9) Java Driveby's 10) Crypters 11) Dosing and DDosing, what's the difference? 12) Staying anonymous 13) Proxies 14) VPN's 15) Alternatives, tips and tricks 16) Extending your knowledge 17) Closing section [hide] SECTION 1 – Introduction Hi there. If you are reading this, you're either an eager to learn beginner hacker, or an upgraded member here to judge my work. Well, in either case, I'm sure you will enjoy this thread and increase your knowledge of hacking. I will be going over ALL the basics of hacking, and a lot more. I've included tutorials aswell, so you could say this is an all-in-one guide. SECTION 2 - The hacker manifesto The hacker manifesto (also known as the conscience of a hacker) is an essay written by a hacker known as 'The Mentor'. It is often said to give an insight into the psychology of hackers. If you are hoping to start learning the art of hacking, this will certainly give you the right mindset for the job. "The Hacker Manifesto by +++The Mentor+++ Written January 8, 1986 Another one got caught today, it's all over the papers. "Teenager Arrested in Computer Crime Scandal", "Hacker Arrested after Bank Tampering"... Damn kids. They're all alike. But did you, in your three-piece psychology and 1950's technobrain, ever take a look behind the eyes of the hacker? Did you ever wonder what made him tick, what forces shaped him, what may have molded him? I am a hacker, enter my world... Mine is a world that begins with school... I'm smarter than most of the other kids, this crap they teach us bores me... Damn underachiever. They're all alike. I'm in junior high or high school. I've listened to teachers explain for the fifteenth time how to reduce a fraction. I understand it. "No, Ms. Smith, I didn't show my work. I did it in my head..." Damn kid. Probably copied it. They're all alike. I made a discovery today. I found a computer. Wait a second, this is cool. It does what I want it to. If it makes a mistake, it's because I screwed it up. Not because it doesn't like me... Or feels threatened by me.. Or thinks I'm a smart ass.. Or doesn't like teaching and shouldn't be here... Damn kid. All he does is play games. They're all alike. And then it happened... a door opened to a world... rushing through the phone line like heroin through an addict's veins, an electronic pulse is sent out, a refuge from the day-to-day incompetencies is sought... a board is found. "This is it... this is where I belong..." I know everyone here... even if I've never met them, never talked to them, may never hear from them again... I know you all... Damn kid. Tying up the phone line again. They're all alike... You bet your ass we're all alike... we've been spoon-fed baby food at school when we hungered for steak... the bits of meat that you did let slip through were pre-chewed and tasteless. We've been dominated by sadists, or ignored by the apathetic. The few that had something to teach found us willing pupils, but those few are like drops of water in the desert. This is our world now... the world of the electron and the switch, the beauty of the baud. We make use of a service already existing without paying for what could be dirt-cheap if it wasn't run by profiteering gluttons, and you call us criminals. We explore... and you call us criminals. We seek after knowledge... and you call us criminals. We exist without skin color, without nationality, without religious bias... and you call us criminals. You build atomic bombs, you wage wars, you murder, cheat, and lie to us and try to make us believe it's for our own good, yet we're the criminals. Yes, I am a criminal. My crime is that of curiosity. My crime is that of judging people by what they say and think, not what they look like. My crime is that of outsmarting you, something that you will never forgive me for. I am a hacker, and this is my manifesto. You may stop this individual, but you can't stop us all... after all, we're all alike." – Taken from http://www.mithral.com/~beberg/manifesto.html That is the essay. It's quite impressive isn't it? After reading it you should have an idea of the mindset any hacker should have. I read it about 5 months ago and it has certainly sent me on the right track. SECTION 3 - What is hacking? What is hacking? Well, whatishacking.org defines it as "the practice of modifying the features of a system, in order to accomplish a goal outside of the creator's original purpose. The person who is consistently engaging in hacking activities, and has accepted hacking as a lifestyle and philosophy of their choice, is called a hacker. Computer hacking is the most popular form of hacking nowadays, especially in the field of computer security, but hacking exists in many other forms, such as phone hacking, brain hacking, etc. and it's not limited to either of them." - Taken from whatishacking.org That's a great definition but in my opinion hacking is much more than that. In my opinion, hacking isn't something you can just 'learn'. It's not just a skill, it's an art. Hacking requires knowledge. Knowledge is power. In order to gain said knowledge, and the power that comes with it, a change of lifestyle is required, along with a certain amount of secrecy. Learning 'how' to hack takes time and dedication. There's no easy way to get better at it. That's right, no shortcuts and its unlikely you're going to get a helping hand. Like everything else in life, it takes practice. Don't go crying to others if it doesn't work out, just keep calm and carry on. If you are serious about becoming a hacker, you will need to be willing to change your lifestyle, and dedicate yourself to the task. With enough dedication and hard work you will excel at hacking. SECTION 4 - Choosing your path Ask any stranger what a hacker is, they will probably give you a really negative answer; identity theft, hacking accounts, stealing, to name a few. The reality is actually quite different. There are a few kinds of hackers, you probably only know about the bad ones. This section should give you a better understanding of the different kinds of hackers, and help you decide which kind you should become. Black hat hackers: These are the bad guys you always hear about. These are the people giving other hackers a bad name. Black hat hackers are the ones who commit crime. They steal identities, hack accounts, ddos sites and just go about causing havoc. Grey hat hackers: Grey hats are basically good guys. They still do illegal stuff, but they report it to the person/company they are targeting. So... Basically they do bad stuff and help people to fix it. White hat hackers: White hat hackers are the good guys. They fix stuff and help people. They don't do illegal stuff. You've probably never heard of an event where a hacker does something good but these guys do that all the time. Examples of white hat hackers are: • Technicians • Cyber security teams • IT consultants Now that you have a better understanding of the 'types' of hackers, you need to choose your path. This requires a lot of thinking, because you need to consider the possibilities of each path. Black hat is the easiest path to choose. It's 'fun' and it has the most benefits. It also is the only one that will get you in trouble and maybe even arrested. Grey hat is a slightly more difficult path. You (technically) are a good guy but most people won't see you as such. Grey hats have a hard time because although they are trying to help, the method they are using isn't really that legal. If you do choose to be a Grey hat, be aware that some people won't believe you are really trying to help, and you may still get in trouble. The last and most difficult path is White hat. As I mentioned before, White hats are the good guys. Their job is to help. Becoming a White hat may seem boring but you are helping people, and that should be a reward in itself. The only problem with becoming a What hat is that you will have to start out as a Black hat. I personally would recommend that you start out as a Grey hat. You'll get more out of it. SECTION 5 - Where should I start? This is the question that most people ask. I honestly don't think there is any one place to start. Ask around on any forum and people will always tell you to learn to use RAT's and keyloggers. To be honest I wouldn't recommend doing that straight away. I would advise to learn the basic terminologies of hacking (see section 6) and try to get an idea of exactly what everything means. It's really important to understand stuff before you go downloading random hacking programs from the Internet. It you don't know how to use them, or if they are viruses, you only have yourself to blame. SECTION 6 - Basic terminology As I mentioned in the previous section, it is important to have a decent amount of knowledge about hacking before you can start. So I've taken the liberty of typing up a list of common terminologies you should know. Common terminologies: Ddos - Distributed denial of service attack. This is where a website is flooded with packets of data from multiple sources and the server basically overloads. Ddos attacks are often confused with Dos attacks. Dos - Denial of service attack. This is where a site is flooded with packets of data from a single source. A Dos isn't as effective as a ddos, but it is a lot easier, as you can Dos straight from cmd. 404 Error - The error you are given when a site is down. If you have attacked a site and don't see this, your attack wasn't successful. cmd - Command prompt. This is basically MS-Dos, except it's now just a program with some commands rather than an OS. Cmd can be used to perform tasks using commands. .bat - Batch file extension. This is the file type which is opened in cmd. Most .bat's that you will see online will be malicious. Some are good though. RAT - Remote Administration Tool. RAT's are the most commonly used tools by beginner hackers. RAT's are favored because they are easy to use and they perform many functions. They also allow control over of the infected computer, which makes them very popular. Slave - A user which has been infected with your keylogger/RAT. Keylogger - A program which logs the keystrokes of a computer. These are usually the first things that beginner hackers learn to use. They have a lot of functions but they aren't as good as RAT's. Crypter - A program used to change the hash sum of a malicious program so that it is undetectable by anti-virus programs. FUD - Fully UnDetectable. A program which is FUD cannot be detected by ANY anti-virus program. UD - UnDetectable. A program which is UD is mostly undetectable but can be detected by some anti-virus programs. JDB - Java Driveby. A fake site which contains a java applet. This java applet is used to download and execute (run) a certain program. The victim as to click the 'allow plugin to run' button to start the applet. Silent Java Driveby - A java driveby that's downloads and executes a file without the user seeing any pop-ups. These are more effective than normal java driveby's as they are less suspicious. Direct link - The direct download link to a certain file. When you download a file from a site (e.g. Mediafire), you are given a download link which redirects you to a page with a download button. However a direct link is a link which leads directly to the file. There is no download button, the download starts straight away. FTP - File Transfer Protocol. An FTP server is a server used to store and send files. OS - Operating system vb - Microsoft Visual Basic. This is a coding language used to make a lot of programs. .NET - Microsoft .NET framework. This is another coding language made by Microsoft. It is used to create programs. C/C+/C++/C# - Commonly use coding languages. They are often used to code games. IP address - The address used to identify your network while on the Internet. Every computer has a different IP address, and therefore every IP address is unique. VPN - Virtual Private Network. This is a network you can connect to on a computer. It will give you anonymity while online. A VPN will hide your IP address by tricking sites and programs into thinking you are somewhere you are not. Proxy - A proxy redirects web traffic through a virtual tunnel to another IP address. A proxy is like a VPN but only tricks websites, not the whole computer. That may seem like a lot of things to remember, but it's not that much considering those are just the basics. Don't let that put you off learning though, once you start to learn one thing, another will follow and so on so forth. Keylogging Keylogging is one of the most basic things in hacking. I explained what a keylogger is in section 6. Downloading a good, free keylogger isn't that hard to do. Just search around HackForums and you will find one in about 30 seconds. I would recommend using SysLogger as it is free and really easy to use. It has many features and allows for the logs to be sent via Email or an FTP server. SysLogger has a really nice interface, [/hide]
-
The pangu9 jailbreak has caused many command line tools to not work, and instead you will get error Killed: 9 Here is how to fix this simple error: [hide] ldid -S `which <command>` CREDITS: http://iphonedevwiki.net/index.php/Updating_extensions_for_iOS_9#Killed:_9 [/hide]
-
[hide] Step 1: Open this link by Safari browser: http://ios.hipstore.mobi/ Step 2: Tap HiPStore iOS 7 – 8 – 9 on Pop Up or scroll to end of page and tap iOS 7,8,9 to install HiPStore Step 3: Tap Install, and back out. It will take about 5 – 10 minutes. Step 4: Once the HiPStore is done open it up to search and choose your app you want to install. Enjoy!!! IF YOUR DEVICE CAN’T OPEN HiPSTORE AND ONLY DISPLAY THIS NOTIFICATION: Just follow these steps! Step 1: On your device, go to Setting > General > Profile Step 2: Choose Zume Software Technology Company Limited Step 3: Choose TRUST “Zume Software Technology Company Limited“ Step 4: Choose Trust [/hide] AND THAT IS IT ENJOY
-
Why do I need this" You may ask. The answer is: Binaries are encrypted on iOS, so in order to have full access to them (and hack them) you need to crack it. Rasticrac does this for us with ease. There are other cracking tools as well, I`m gonna stick with this one, it works flawlessly on my device (iOS 8.4). What you need: - Jailbroken iOS device - MobileTerminal or iOS Terminal from BigBoss repo - Rasticrac - I use 3.2.9 from Appcake repo - Game you want to crack. [hide] How you do it: First get a game you want to crack from iTunes. I`m gonna crack KKH. Open up terminal and log in with superuser (default log in - Username: su Password: alpine) and type Quote CODE: SELECT ALL Rasticrack -m You will get your installed app`s binary names listed. I`m cracking Kim Kardashian Hollywood so i type in "d" and press return. After you press return, just wait until the process finishes. DONE. When its done, just connect your iOS Device to your pc, use any tools (iTools, iFunbox, or WinSCP for in case you SSH) and pull the IPA from /var/root/Documents/Cracked/ and save it to your PC. I use 7-Zip to open it - go into Payload/Kardashian.app and look for the binary file which in my case Kardashian. [/hide] Congratz, you cracked your first iOS app and found the Binary you looked for. Credits: Killerdon(Infinite HAck)
-
Requirements: Theos Ifile Flex/Class Dump of the App Terminal A brain Infection Instructions: [hide] Step 1: Beginning making our tweak First Type the code below in Terminal $THEOS/bin/nic.pl Select Tweak Project Name: Infection Hack (Is the name of the hack) Package Name: com.nexgenios.infectionhack (If you are submitting it a certain repo this is where you would put the repo's name. Author/Maintainer Name: BlackHippy (Your Name) MobileSubstrate Bundle filter: com.fungames.infectionrelaunched(This is going to be in the App's info.plist file) List of applications you want to terminate: - (just put a - dash) Next go to the location of you hack and open the Control File Package: com.nexgenios.infectionhack (This show already be set, but this is you package name) Name: Infection Hack (This should be already set, but this is the Name that will show up in cydia) Depends: mobilesubstrate (This should be already set, but this is what your hack depends on to run) Architecture: iphoneos-arm (This is the type of the package. DO NOT CHANGE THIS) Description: 1. 9999 cash on every dna you get, 2. Infection rate is high, 3. Lethality rate is high. (This is the description of you hack that will show up in cydia) Maintainer: BlackHippy ( Your Name) Author: BlackHippy (Your Name) Section: iHacks ( This is the section it will show under in Cydia) Step 2: Looking for features to hack Go to the location where you saved you class dumps. Search for DNAWallet.h and open it. Search for(below) and keep note of where it is because we will go back to it later. -(int)pointsToBeEarned); Next, search for DiseaseTrait.h and open it. Search for (below) and keep note of where it is because we will go back to it later. -(float)lethality; Last, search for GameStage.h and open it. Search for (below) and keep note of where it is because we will go back to it later. -(float)maxinfectivity; Step 3: Building our tweak Lets open our Tweak.xm file. //-(int)pointsToBeEarned; %hook DNAWallet (You have to hook every header) -(int)pointsToBeEarned (The function we are hacking) { return 9999; (This is the new value we are going to get from the hack) } %end (You end the header if another hack is in a different header) //-(float)lethality; %hook DiseaseTrait (Since this a different header we have to hook it again) -(float)lethality (The function we are hacking) { return 100; (This is the new value we are going to get from the hack) } %end (Ends our headers so we can go to a different one) //-(float)maxInfectivity; %hook GameStage (Since this a different header we have to hook it again) -(float)maxInfectivity { return 999; (This is the new value we are going to get from the hack) } %end (Ends our headers) Step 4: Compiling our hack Open terminal and cd into your folder(ex./var/mobile/infectionhack/) To comply it to see if you have any errors type make. If you don't have any errors type make package to make a deb. [/hide]
-
[hide] http://iosddl.net/b1b45c3f53234e51/String_Hacking_Tutorial_1.pdf [/hide]
-
If you issues with aiming/esp doesn’t fixed in the last update, do this some simple tricks. 1. Delete all your Tweakss for so2 in your Cydia/Sileo, reboot SpringBoard. 2. Download “Apps Manager” through your Cydia/Sileo. 3. Use Apps Manager to wipe data in So2. If you doesn’t have A-Bypass, don’t enter the game yet. 4. Download last updated deb file from and install it through filza/sileo/Cydia/smt. Finally, you can use Tweak without any issues.
-
Hi guys, so what i will be doing is coming out with some tutorials on hacking in my free time just something to give back to the community, as I was in this situation once when I was struggling to learn how to hack back in icheats. Without further delay, here is one of many series of tutorials... Things needed: -IDA PRO (I am using IDA PRO v. 6.4 demo) -Hex Editor (HxD in my case) -Tap Tap Revenge Tour Premium v. 2.0 -Some basic knowledge on ASM/ARM Now, once all the items are possessed we shall begin our hacking endeavor... [hide]First load up the binary into IDA PRO by simply dragging and dropping the binary into the IDA PRO icon Next, choose ARM as the processor type for the binary. Click OK and when prompted as to whether or not you want to change it, click OK as well When the binary is finished loading (in the bottom left, there will be a text saying idle), we can now begin hacking our game The functions window stores all of the game's functions, such as score, health, etc. In our case, we want to try and hack score, so let us search score by hitting ctrl+f within the functions window to search through the functions Now that we have found the functions that contain the string score, we must now find the correct function for our actual game score. Scroll down until you see the function -[TTScore setScore:] and double click on it Now comes the tricky/hard part, we must interpret the code. This is where ASM and ARM are needed for hacking in IDA PRO. For a rough overview, ASM deals with commands such as SUBS, LDR, STR, etc. whereas ARM deals mostly with registers such as R1, R2, R3, etc. In this case we can interpret the code as follows: MOV R1, #(_OBJC_IVAR_$_TTScore._score - 0x52588) ; int _score;<---Score function is loaded ADD R1, PC ; int _score; LDR R1, [R1] ; int _score;<---our score that we have is loaded into R1 STR R2, [R0,R1]<---the new score is stored into the R2 register BX LR<---ends the score function What we have here is a generic way of storing certain information, such as setCash, setAmmo, etc. In this case, since our score is stored (STR) in R2, we can make ourselves have a higher score simply by changing the register R2 to a register holding a higher value, in most cases R7. Highlight the STR R2, [R0,R1] function and then click on Hex-View A Once we land in the hex view, we can see the hex value of the function STR R2, [R0.R1] which is 42 50. To change the score so we have a maximum value, all we have to do is change the function to a STR R7, [R0,R1] which has a hex value of 47 52. We can not do this in IDA, but that is where our hex editor comes in handy. Note the hex address in the bottom left of the screen. Now drag and drop the binary file into your hex editor. Remember the hex address we were supposed to keep note of? Now it is needed. In the hex editor, go to the hex address you kept note of. In HxD, you would go to Search->Goto and then paste the file offset Now we land in our function, the same one in IDA PRO. Now to hack the game, all we have to do is change 42 50 into 47 50 for maximum score. Save the file, place it in the TapTapTourPaid.app folder and there you go. Hope you have enjoyed this simple tutorial, I will try and produce more tutorials in the future so be on the lookout. [/hide] Credits: STERLING ARCHER
-
TUT How to mod/unlock achievements on GameCenter and OpenFeint
Y-T-E-R-B-Y posted a topic in Tutorials
Hello and welcome to my tutorial on how to mod/unlock your GameCenter and OpenFeint achievements for the iPhone, iPod Touch and iPad! We will be using a tweak from Cydia called Overachiever. First let's clear out some things: Your iDevice needs to be jailbrokenIt does not matter which generation your iPhone, iPod Touch or iPad is, it just needs to be running iOS 4.2 or higherObviously you will need to have a GameCenter account to unlock achievements on GameCenter and a OpenFeint account to unlock achievements on OpenFeintThe tweak we will be using called Overachiever will unlock all your achievements at once and it will be impossible to revert it afterwards!So now that is done we can get into the actual tutorial on how to get it and secondly how to use it! . [hide] Step 1 - Downloading Overachiever Open up Cydia and let it load up fully. Once it's properly loaded up you can go ahead and move over to the search bar. You won't have to add any new sources as our tweak is on the BigBoss repo. Simply type in Overachiever and download it. Step 2 - Using Overachiever You might have noticed by now that Overachiever doesn't provide you with an icon on the homescreen, everything you need to do is just within the Settings app. So lets go and open up settings. Navigate to Overachiever and you will see a list with all your applications. In the list are also apps which don't come GameCenter or OpenFeint achievements like Asphalt 7 on my screenshot. You can just ignore these since they won't do anything anyways. For the purposes of showing how this tweak works I will be using a game called Angry Birds Rio HD, but obviously you can use any game/app you want. It is kinda straight forward. I had completed this game before I used GameCenter and now that I do use GameCenter the achievements that come with the game are not put on my account. As you can see from that screenshot I have none of the 65 achievements unlocked. Let's go back to the settings and slide the OFF switch to ON for Angry Birds Rio HD. Straight after that kill the process for your app in multitasking by pressing the homebutton twice and tapping the little stop sign on your app. Once you have done that you can just open your app again and all the achievements will start poping up on your screen! [/hide] Credits: All credit goes to Ingmar Stein for creating this wonderful tweak! -
I`m not very familiar with mshook since i mostly use code inject but in a few cases it can come handy.What we do here is hooking into a class in objective-c classes and overwrite it with our code.I have released some tweaks for apps (not games) using mshook to unlock paid content, make things free, etc... but you can also hack games with it (very rarely in my opinion or i just didn`t look good enough :P) and make unlimited money for example or even 1 hit kill. Basically anything that is stored in classes instead of binary.[hide] [hide]First we need to dump the classes, i prefer FLEX 3 (i`ll post tutorial later). Find a class we can hook into. (I`ll come up with some random class names, don`t take it as reference)Found one called "PlayerData" Relevant methods i found in PlayerData:-(int) Gold-(long long) Gem-(double) ATK-(float) DEF-(id) HP-(bool) isCooldown-(void) AtkSpeed-(void) WalkSpeed:(int)Alright, lets make our code. Create a project in THEOS. ($THEOS/bin/nic.pl - in case you didnt remember) Start with hooking into the class: PlayerData, open up tweak.xm, delete everything. %hook PlayerData -(int)Gold{ return 133337; } -(long long) Gem{ return 133337; } -(double) ATK{ return 133337; } // as you can see those three returned the same way, return value as integer. -(float) DEF { return 133337.7f; } // floating value need to end .nf -(id) HP { return [NSNumber numberWithInteger:133337]; } //id can be whatever you want. You can return a value, boolean even a string. Very important to call the correct NSClass to hack it correctly. -(bool) isCooldown { return FALSE; } // simple boolean logic, return TRUE or FALSE -(void) AtkSpeed{ //voids without arguments can`t be edited -(void) WalkSpeed:(int)arg1 { arg1 = 133337; } //Voids with arguments can be hacked. You need to name the argument for w/e you want and add a value to it. You can also return id and bool. -(void)isCooldown:(bool)arg2 { arg2 = FALSE; } -(void)HP:(id)arg3 { arg3 = [NSNumber numberWithInteger:133337]; } Thats pretty much it. Compile the tweak and we are done.[/hide] [/hide]Credits:Killerdon(Infinite Hacks)
-
TEXT: [hide] This tutorial will guide you on how to hack iOS apps using MobileSubstrate. Requirements - THEOS installed (http://iphonedevwiki.net/index.php/Theos/Setup/iOS#Installing_Theos_and_it.27s_dependencies) - class-dump installed (Cydia) - Ramboat cracked IPA (https://www.dropbox.com/s/g2c3untzk81glas/Ramboat-v1.0.12-NitroxicDemon-%28Clutch-1.4.7%29.ipa?dl=0) - MobileTerminal (Cydia) - iFile (Cydia) So go ahead and take the app's binary and place it somewhere convenient, like in /var/mobile Then open up MobileTerminal and type class-dump Ramboat -H -o headers Ramboat is the name of the binary, -o headers means the output folder of the dumped headers into a folder called headers Now once you have done that, look through the header files and look for something to hack inside them. Don't forget to hook onto that header if you want to hack functions inside it. %hook HEADERNAME When you are done hacking functions inside it, end it use %end Types of functions: int (short for integer) is a whole number. An example of hacking an int: - (int)maxAmmo { return 99999; } Instead of writing 99999, you can simply just write INT_MAX. This is the highest value for an integer. So it will be like this: - (int)maxAmmo { return INT_MAX; } BOOL (short for BOOLEAN) is a variable that can only have a true or false value. An example of hacking a BOOL - (BOOL)isLocked { return FALSE; } Another example: - (BOOL)isJailbroken { return FALSE; } A float is a floating-point number and has a decimal place,they are used when more precision is needed. Example: - (float)getSpeed { return 999.0f; } You can't really hack a void, unless it has an int, bool, float, or id with it. An example: - (void)setPokerChips:(int)fp8 { %orig(fp8); fp8=999999999; } An example without fp8: -(void)setPokerChips:(int)Amount { %orig(999999999); } Hacking an ID If you want to hack an ID and make it return an integer, this is what you can do: - (id)nextUpgradePrice { return [NSNumber numberWithInt:0]; } To compile the tweak, open up MobileTerminal and type cd /path to your project In my case, it's cd /var/mobile/ramboathack then type make package It will make the .deb for you, don't forget to sign in as root first Type in root or su then press enter Then for pass alpine [/hide] If you have any errors, post them over at the Support and Feedback section http://www.iosmods.com/index.php?/forum/16-support-and-feedback/
-
Choose a game you want to hack. Well you can take 5 methods to hack it according to me [hide] 1)gameguardian/gamegem by changing the value of currency etc. 2)gamegem by enabling the speed and changing the the time and upgrade and power ups 3)going to ifile and searching for plist and somewhere u can find the exploit 4) this is not so important but works in few game like fit the fat,but city go to setting change your day to 2 days ahead and get unlimited gold . 5) locailiap store the most easiest and commonly used [/hide] After hacking the game 6) 6. Now go to Filza or ifile and navigate to var/mobile/Containers/Data/Application 7)Choose the documents and library folder and click on more then click on Create ZIP 8)after doing this install one tweak called safari uploader or just upload to cloud drive (I recommend safari uploader then go to any uploading site and upload the zip file their U have finished creating a save game enjoy Credits : @@Naeem
-
This tutorial will show you how to use Slices to create and manage multiple "slices" for an app. You can use this for apps such as Kik, having multiple profiles, Instagram, SnapChat, etc. Requirements: Slices from this repo [hide] repo.biteyourapple.net [/hide] Getting Started: [hide] Go ahead and install slices from the repo mentioned above Then go ahead and enable it and enable the Show New Slice Option Now go on the Applications tab and look for an app you want to enable slices for. I will be using Snapchat as an example. Press the Create Slice button and create a slice. This is the default slice, name it to whatever you want. I named mines to Default. Now go ahead and click on the Create Slice button again, and name it to whatever. I named mines to Other Account. Also on the top, under GENERAL, make sure Ask on Touch is enabled. Now exit out of settings and go to the application you enabled slices for, tap on it and you should see something like this: It's prompting you on which slice you want to use, you will also notice New Slice on the bottom, this will allow you to create another slice without going into settings and creating it from there. [/hide]