-
Posts
1,324 -
Joined
-
Last visited
Everything posted by bR34Kr
-
Is there an admin wifi at your school which is available to teachers/principal? If there is try aircracking it.
-
I did this with an untouched binary and the address does not exist. It gives me 0x637474 when I calculate but the smallest address is 0x100004A60. The raw address given by lldb is 0x100703474 so I go there and it's a BL. EDIT: This happened with the plain arm64 binary.
-
If this ever gets released in the Non VIP section, you won't like and neither won't anyone because there's going to be too much downloads and it will definitely break the game.
-
I'm not sure to do this because I already removed ASLR and it's armv7 thinned. Should I just restart the whole thing with an ARM64 with ASLR binary and follow your steps?
-
Should I also change the 5408BE and the 5408C2 ? Because I changed what you told me + the LDR and it does not work.
-
Help/Support How do I export from IDA as an iOS binary to use?
bR34Kr replied to bR34Kr's topic in Help & Support
It saves as .id2 .til .nam .id1 and .id0. What am I doing wrong? -
Help/Support How do I export from IDA as an iOS binary to use?
bR34Kr replied to bR34Kr's topic in Help & Support
So I take the .i64? Doesn't seem right to me. -
Help/Support How do I export from IDA as an iOS binary to use?
bR34Kr posted a topic in Help & Support
Noob question. -
Mama Hawk By Computer Lunch v1.01com.computerlunchllc.mamahawkRequires: iOS 8.0 or later.Price: FreeUpdated: 2018-02-22T06:06:59ZiTunes URL: https://itunes.apple.com/us/app/mama-hawk/id1287171334?mt=8&uo=4&at=1010lce4 Hack Requirements: - Jailbroken or Non-Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iMazing / iFunBox or any other file managers for iOS. Hack Features: -Indinite Coins -Every skin unlocked -Max level Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/ Modded Android APK(s): https://iosgods.com/forum/68-android-section/ For more fun, check out the Club(s): https://iosgods.com/clubs/ Hack Download Link: [Hidden Content] Installation Instructions: STEP 1: Open the app, play it for a bit then close it from multitasking/app switcher. STEP 2: Download the modded file(s) from the download link above. STEP 3: Unzip if necessary then copy & paste the files/folders to: For users on iOS 7, iOS 8.3 and lower: /User Applications/AppName using iFunBox or /var/mobile/Applications/AppName using iFile/Filza. Jailbroken or Non-Jailbroken iOS 8 and lower, Jailbroken iOS 9, iOS 10 and higher users: /User Applications/AppName using iFunBox or /var/mobile/Containers/Data/Application/AppName using iFile/Filza. Non-Jailbroken iOS 8.3, 9.0, 10.0, 11.0 and higher need to follow this tutorial: How to Apply Save Game Cheats on Latest iOS Versions! STEP 4: Overwrite the old files with the new hacked ones then open the app. NOTE: It is highly suggested that you backup your original app files before replacing them with these modified ones. If you have any questions or problems, read our Frequently Asked Questions topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues. Credits: - @bbReakMe Cheat Video/Screenshots:
-
A tweak where it creates commands to hack with. Similar to my Baseball Boy hack. Made this for beginners.
-
Yes but with a backup. And it saves useless questions about how to use Filza.
-
What is what? Thanks. I'll read that; It should help me.
-
No because it's the Documents folder. If you don't put it it'll get the first app's Documents folder.
-
Thanks.
-
Hello! You will learn how to recreate the Baseball boy hack I created using Shell scripting! This can work on any other game that supports this. -Requirements A jailbreak MTerminal (or use SSH; If MTerminal does not work, install an SSH app from the App Store and OpenSSH to then SSH to root@localhost:22) Filza/iFile/Any file manager -Tutorial So first off, create a new folder in where your hack will be. In that folder make 2 folders; DEBIAN and var. In var create a new folder called mobile and in that create a new folder called BaseBallBoyHack and in that create 2 folders called Backup and Hacked. Done with the folders and now you need to get the files. So in Filza (or anything else) head to /var/mobile/Containers/Data/Application and find Baseball Boy. In that directory you should have a Documents folder. This folder is where most of save game cheats are applied. Note: Note that some games that dont have a Documents directory may have it in /var/mobile/Containers/Bundle/Application/yourGameName/yourGameName.app/Data/Raw So back in your Documents folder you should have 4 files which we will hack: bouncinessLevel speedLevel strengthLevel offline earningLevel What you need to do now is to go in Baseball Boy, remember one of your levels and convert it to hexadecimal. (Search it on Google) Then go back in any of the 4 files, edit the hex where is your level and repeat until 4 of them are hacked. When the four of them are hacked, copy the four files over to the Hacked directory you made. TIME FOR SCRIPTING Back in BASEBALLBOYHACKFOLDER/var/mobile you need to create 3 files. hack.sh - restore.sh - backup.sh (You can merge backup.sh with hack.sh if you want. Just write the commands on top of it.) hack.sh In hack.sh start off by typing: #!/bin/sh Then we want to know the UUID of BaseBall Boy which is unknown. So type in: The echo command will print what's after the command to the console. The read command will ask for input and since we put UUID, it will store the inputted UUID to a variable called UUID. Got it? So let's continue. Next we need to take our hacked files and move them to BaseBall Boy. Type in: The cp command copies the first input (file) to the 2nd input (directory). So we copy the hacked game files to the BaseBall Boy saves. We also put the "offline earningsLevel" in apostrophes because it has a space in the name. That's it for the hack.sh! backup.sh This one will copy the data from your game to /Backup. Start off with the same old: This will get the UUID from the game. Next is the copying. So type in: Notice how we switched the first and second inputs of cp. This is because we want the files from the game itself and not the hack. This is it for the backup. This code written above can be merged with hack.sh by putting it over the hack commands. UNDER THE #!/bin/sh OR ELSE IT WILL NOT WORK! restore.sh Remember to write #!/bin/sh at the beginning! So now we want to restore our saved game back. It's as simple as the other ones! So write: This is to store the UUID as a variable. Then type: So this will overwrite the hacked data by taking the data from backup and overwriting. This is it for scripting, not for the hack. SETUP FOR THE HACK TO WORK So you want that hack on iOSGods or for yourself? Well we need to set the permissions on each file to Owner: Read, Write and Execute. Leave the rest alone. Also, why is there a DEBIAN folder? Well go in there and make a new file called control and put this inside of it: This will make the packaging as .deb work. Now select DEBIAN folder and var folder at the same time and select Create DEB. (In Filza, I don't know for others) There you have it! A .deb with a Shell Hack! If it says packaging failed, add a few returns after Homepage in control -Credits - @bbReakMe Have fun!
-
So I saw a whole bunch of tutorials on IDA and can't figure out my problem. LLDB Told me my address is 0x5408b4 And my register read told me it stored it at r0 So I go there and it looks like this: The r0 store is before which should be on the same line right?
-
I'd like a signature with my name on it with a touch of sassy memes to it. Basically coder style mixed with meme style.
-
I have my cracked binary that I removed aslr and thinned. I used ldid -s on it and replaced the one from the real app with it and it crashes when I open the game.
-
But it will crash for arm64.
-
Solved Rules of survival(Non jailbroken)
bR34Kr replied to Adi2k18's topic in Filled iOS App Requests
I wouldn't want to see one in the Free Jailbreak section. Would break the game. -
I found my IDA Adress for my game : 0x1006fb474 So I go to __text:00000001006fb474 and see nothing from the register read command. And in the register read I don't find my changed value. My binary has aslr and is not thinned for it to work with arm64.
-
Thank you!
-
I recently posted a help topic and someone told me to hack the ARM64 portion but I don't know how to only hack that part. Do I need to load the ARM64 in IDA?