-
Posts
4,939 -
Joined
-
Last visited
Everything posted by Ted2
-
Hacked App: Bike Race Pro & Bike Race TFG iTunes Link: Bike Race Pro: https://itunes.apple.com/us/app/bike-race-pro/id510461370?mt=8&uo=4 Bike Race Free: https://itunes.apple.com/us/app/bike-race-free-by-top-free/id510461758?mt=8&uo=4 Bundle ID: com.topfreegames.bikeracepaid/ & com.topfreegames.bikeracefree Hack Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools / AnyTrans / iExplorer / DiskAid or any other file managers for iOS. - Cydia Substrate (from Cydia). Hack Features: - Unlocks every bike, also tourney bikes. - if you're not jailbroken, take a look at this: https://iosgods.com/topic/19383-bike-race-pro-bikeracetfg-all-bikes-hack/page-1 NOTE: You can't use the tourney bikes in tourneys it self, since this is server sided. Hack Download Link: [Hidden Content] Installation Instructions:Step 1: Download the file from the link above.Step 2: Copy the file over to your iDevice using any file managers mentioned above or skip this step if you're downloading from your iDevice.Step 3: Using iFile or Filza, browse to where you saved the downloaded deb file and tap on it.Step 4: Once you tap on the file, you will then need to press on "Installer" or 'Install' from the options on your screen.Step 5: Let iFile / Filza finish the installation.Step 6: Once the installation is finished, open the app and enjoy the hack! - if you're not jailbroken, take a look at this: https://iosgods.com/topic/19383-bike-race-pro-bikeracetfg-all-bikes-hack/page-1 Credits: @Ted2 Hack Video/Screenshots: Enjoy!
- 50 replies
-
- 353
-
-
-
-
-
-
-
Help/Support Code Injection doesn't work, except credit popup.
Ted2 replied to Ted2's topic in Help & Support
haha alright, thanks DiDa, you're my hero -
Help/Support Code Injection doesn't work, except credit popup.
Ted2 replied to Ted2's topic in Help & Support
Lol I feel so stupid sometimes.. It was switched off -.- Works now. Why 381c7047 though? -
Help/Support Code Injection doesn't work, except credit popup.
Ted2 replied to Ted2's topic in Help & Support
ehmm, it still doesn't work.. I've defenitly thinned it this time -
Help/Support Code Injection doesn't work, except credit popup.
Ted2 replied to Ted2's topic in Help & Support
I did thin the binary to armv7 using shmoo's tutorial about 'How to perform a Binary patch' edit: you're right.. I redownloaded because otherwise it would've loaded my hacks still into it. Sh*t man, lol sorry.. I feel so stupidd My bad & thankyou for helping -
Help/Support Code Injection doesn't work, except credit popup.
Ted2 posted a topic in Help & Support
Heyyy it's me again.. I used this tutorial also: https://www.dropbox.com/s/y3rcskg8uigt5lm/IDA PRO Code Inject Tutorial.pdf?dl=0 I'm kind of practicing to work with IDA on Pou, So I figured out how to hack some functions by editing the binary using a hex editor. Now I wanted to try to make a code injection tweak out of it. The function is: ; Coins - (int)have __text:0003EBD4 ; Attributes: bp-based frame __text:0003EBD4 __text:0003EBD4 ; int __cdecl -[Coins have](struct Coins *self, SEL) __text:0003EBD4 __Coins_have_ ; DATA XREF: __objc_const:0045C890o __text:0003EBD4 PUSH {R4-R7,LR} __text:0003EBD6 ADD R7, SP, #0xC __text:0003EBD8 MOV R4, R0 __text:0003EBDA MOV R0, #(_OBJC_IVAR_$_Coins.given - 0x3EBEA) ; int given; __text:0003EBE2 MOVW R1, #:lower16:(selRef_collected - 0x3EBF0) well the function is longer, but in the hex editor I changed ; Coins - (int)have __text:0003EBD4 ; Attributes: bp-based frame __text:0003EBD4 __text:0003EBD4 ; int __cdecl -[Coins have](struct Coins *self, SEL) __text:0003EBD4 __Coins_have_ ; DATA XREF: __objc_const:0045C890o __text:0003EBD4 PUSH {R4-R7,LR} __text:0003EBD6 ADD R7, SP, #0xC TO: ; Coins - (int)have __text:0003EBD4 ; Attributes: bp-based frame __text:0003EBD4 __text:0003EBD4 ; int __cdecl -[Coins have](struct Coins *self, SEL) __text:0003EBD4 __Coins_have_ ; DATA XREF: __objc_const:0045C890o __text:0003EBD4 MOV R0,R7 __text:0003EBD6 BX LR This worked. So the HEX Offsets I need are 0003ebd4 & 0003ebd6 Right? So what I did in my tweak.xm was: %ctor { if(GetPrefBool(@"key1")) { writeData(0x3ebd4, 0x38467047); writeData(0x3ebd6, 0x7047); } else { } It had no effect, however I got the credit popup which is automaticly added in the tweak.xm So after that I tried this, which didn't make sense to me since the BX LR had another hex adress %ctor { if(GetPrefBool(@"key1")) { writeData(0x3ebd4, 0x38467047); } else { } } but this didn't work either.. It doesn't make any sense I try this on Pou, since this can be hooked too, but for me it's just practicing & playing around lol Someone knows what the problem can be? Am I doing something wrong? Thankyou in advance! -
Help/Support How to make a int version return false in IDA?
Ted2 replied to Ted2's topic in Help & Support
Thanks guys -
hi, So I got this function: Coins - (int)cheated __text:0003F99C __text:0003F99C ; int __cdecl -[Coins cheated](struct Coins *self, SEL) __text:0003F99C __Coins_cheated_ __text:0003F99C MOV R1, #(_OBJC_IVAR_$_Coins.cheated - 0x3F9A8) ; int cheated; __text:0003F9A4 ADD R1, PC ; int cheated; __text:0003F9A6 LDR R1, [R1] ; int cheated; __text:0003F9A8 LDR R0, [R0,R1] __text:0003F9AA BX LR Iknow I could MSHook this, but I wanna practice IDA.. So.. how would I return the int to 0? I've no idea which one I have to change.. I thought the first MOV to MOV R1, #0 but I don't think it worked.. help would be great!
-
you'll have to search for functions
-
Patcher Hack Farm Heroes Saga Cheats v2.32.9 +2
Ted2 replied to Laxus 's topic in Free Jailbreak Cheats
Thanks mate Link is dead bro -
Probably google play DRM. not sure if they encoded their game totally but you can try thi search in all smali files (using 'find in files') for: public boolean allowAccess () then Do this: const v0, 0x1 return v0 Big chance it can be DRM 101 too. this is harder to bypass. And can't tell this in steps lol. download Lucky patcher & see if it says that there is a google play verification. You can try the program 'AntiLVL too, this bypasses lots of DRM protection included Google Play Verification
-
Awesome
-
ohhh, like that.
-
what do you mean by animation?
-
I think for everyone it's locked. cause it's not working anymore or another reasong
-
Nice hax
-
my bad
-
doesn't this work
