Jump to content

Marvel: Contest of Champions 5.1.1 problems


miseaujeu

3 posts in this topic

Recommended Posts

I'm still something of a newb -- but I've been working on Marvel: Contest of Champions since build 92185.   With the release of 98333 and 99500 everything seems to have changed but I'm wondering if I'm not properly unpacking/cracking, etc. 

 

Hardware: iPhone 5.  Jailbroken iOS 8.4(12H143).

                 Win7 PC

 

Previous Steps:

1. Install App from AppStore

2. Use Clutch ( Your version of Clutch is up to date! Clutch 1.4.7 )

3a. Transfer to desktop using WinSCP and begin IDA ( v6.1 ) disassembly

3b. Grab /User/Documents/Cracked/Champions-v92185.ipa and install using IPA Installer

4. Using Putty terminal move to directory /private/var/mobile/Containers/Bundle/Application/ and execute

find . -name "marvelbattle"

5. Use class-dump to export headers and functions

 class-dump -H /private/var/mobile/Containers/Bundle/Application/560B2DAF-8AC6-4CE5-9FD6-9EBB9270D659/marvelbattle.app/marvelbattle -o /var/mobile/OUTPUT_Marvel/

6. Move to the output directory with all the headers and functions : /var/mobile/OUTPUT_Marvel/ and use GREP to find useful stuff:

grep -i "search term" *.*

7. Fire up GDB in Putty and open Marvel: Contest of Champions on phone.

att marvelbattle

display/i $pc
display $r0
display $r1
display $r2
display $r3
display $r4
c

8. Use IDA to poke around and see what is interesting.  For example:

b m_QuestSummary_GetPercentCompelete
b plt_QuestProgression_GetTotalPoints

0x00677150 in m_QuestSummary_GetPercentCompelete ()
6: $r4 = 354180160
5: $r3 = 1110881504
4: $r2 = 84215400
3: $r1 = 16
2: $r0 = 1
1: x/i $pc  0x677150:  00 00 50 e3                   cmp        r0, #0  ; 0x0

The problem is that this no longer works with releases 98333 and 99500.  The IDA disassembly is very different with many more Sub_XXX and gdb export functions shows many <Redacted>

0x2757d0c4  <redacted>
0x2757d0f0  <redacted>
0x2757d1b8  <redacted>
0x2757d248  <redacted>
0x2757d2dc  <redacted>
0x2757d2ec  NSGetUncaughtExceptionHandler
0x2757d2f8  NSSetUncaughtExceptionHandler
0x2757d304  <redacted>

When I attach to the application with gdb it now starts like this :

(gdb) att marv
Attaching to process 1380.
Reading symbols for shared libraries . done
unable to read unknown load command 0x80000028
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
unable to read unknown load command 0x80000028
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
Reading symbols for shared libraries ............................................................................................................
.................................................................................................................................................
........................

warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/
Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/flexAssembly.o" - no debug information available for "flexAssembly.s".
{and so on...}

breaking at memory watchpoints results in many references to _mh_execute_header.  I've only really found a few references such as:

 

"_mh_execute_header is a known symbol/address that it uses as a base to calculate an offset when it has no better information." – Phillip Mills Nov 20 '12 at 14:08

 

I've since tried rasticrac ( v3.2.5 ) with the same results.  Clutch2 ( RC4 ) produces an executable that crashes.

 

Any suggestions / recommendations on how to proceed would be most appreciated.

 

-Miseaujeu

Link to comment
https://iosgods.com/topic/20151-marvel-contest-of-champions-511-problems/
Share on other sites

 

have you waited till you get to the end?

The end of gdb loading the entire file?   Yes, here is the export of loading a Clutch-ed version of marvelbattle in gdb:

gdb marvelbattle
warning: unrecognized host cpusubtype 11, defaulting to host==armv7.
/usr/bin/gdb: line 136: file: command not found
/usr/bin/gdb: line 171: file: command not found
GNU gdb 6.3.50-20050815 (Apple version gdb-1708 + reverse.put.as patches v0.4) (Mon Apr 16 00:53:47 UTC 2012)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "arm-apple-darwin"...unable to read unknown load command 0x80000028
Reading symbols for shared libraries . done
unable to read unknown load command 0x80000028

(gdb) start
Function "main" not defined.
Make breakpoint pending on future shared library load? (y or [n]) y
Breakpoint 1 (main) pending.
Starting program: /private/var/mobile/Containers/Bundle/Application/C819D780-4CF5-4D0E-88F2-20EE6DD8BD76/marvelbattle.app/marvelbattle
Reading symbols for shared libraries + done
unable to read unknown load command 0x80000028
Reading symbols for shared libraries +............................................................................................................................................................................................................................................................................... done

Reading symbols for shared libraries . done
2015-11-16 14:52:30.806 marvelbattle[840:10654] -> registered mono modules 0x20a6230

Program received signal SIGABRT, Aborted.
0x36264df0 in __pthread_kill ()
(gdb) c
Continuing.

Program terminated with signal SIGABRT, Aborted.
The program no longer exists.
(gdb)

Could this have to do with the message on GitHub forum?

 

NinjaLikesCheez released this on Nov 6, 2014· 69 commits to master since this release

1.4.7-git3 has been removed as it has a bug with dumping

 

-M

If I instead start the application and then attach gdb to the already running app here is the output:

gdb
warning: unrecognized host cpusubtype 11, defaulting to host==armv7.
GNU gdb 6.3.50-20050815 (Apple version gdb-1708 + reverse.put.as patches v0.4) (Mon Apr 16 00:53:47 UTC 2012)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "arm-apple-darwin".
(gdb) att marvelbattle
Attaching to process 857.
Reading symbols for shared libraries . done
unable to read unknown load command 0x80000028
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
Reading symbols for shared libraries .....................................................................................................................................................................................................................................................................................
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/flexAssembly.o" - no debug information available for "flexAssembly.s".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/NSCollection+Serializable.o" - no debug information available for "NSCollection+Serializable.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLMethodObjC.o" - no debug information available for "FLMethodObjC.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLClassDetective.o" - no debug information available for "FLClassDetective.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLManager.o" - no debug information available for "FLManager.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FYMachOReader.o" - no debug information available for "FYMachOReader.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLXOverrider+Hooks.o" - no debug information available for "FLXOverrider+Hooks.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FYPatchList.o" - no debug information available for "FYPatchList.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLMachOImage.o" - no debug information available for "FLMachOImage.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/hookImplementations.o" - no debug information available for "hookImplementations.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLXOverrider+Arguments.o" - no debug information available for "FLXOverrider+Arguments.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/PSYObjCSupport.o" - no debug information available for "PSYObjCSupport.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLMethodParameterOverride.o" - no debug information available for "FLMethodParameterOverride.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLPatchManager.o" - no debug information available for "FLPatchManager.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLMethodManager.o" - no debug information available for "FLMethodManager.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLMethodParameter.o" - no debug information available for "FLMethodParameter.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/ExtractionHandler.o" - no debug information available for "ExtractionHandler.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FYExceptionHandler.o" - no debug information available for "FYExceptionHandler.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FYImage.o" - no debug information available for "FYImage.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLXHooks.o" - no debug information available for "FLXHooks.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLMethodC.o" - no debug information available for "FLMethodC.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLXLegacyHook.o" - no debug information available for "FLXLegacyHook.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLParameterType.o" - no debug information available for "FLParameterType.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLMessagingCenterClient.o" - no debug information available for "FLMessagingCenterClient.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLParameterOverride.o" - no debug information available for "FLParameterOverride.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLClassParser.o" - no debug information available for "FLClassParser.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/main.o" - no debug information available for "main.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLOnlineErrorReporter.o" - no debug information available for "FLOnlineErrorReporter.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FYClass.o" - no debug information available for "FYClass.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLPatch.o" - no debug information available for "FLPatch.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FYPatch.o" - no debug information available for "FYPatch.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLUnitOverride.o" - no debug information available for "FLUnitOverride.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLImplementation.o" - no debug information available for "FLImplementation.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FYUnit.o" - no debug information available for "FYUnit.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLMachOImageManager.o" - no debug information available for "FLMachOImageManager.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLMethod.o" - no debug information available for "FLMethod.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLParameterValue.o" - no debug information available for "FLParameterValue.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLMessagingCenter.o" - no debug information available for "FLMessagingCenter.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLXOverrider.o" - no debug information available for "FLXOverrider.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLHook.o" - no debug information available for "FLHook.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLTypeEncoding.o" - no debug information available for "FLTypeEncoding.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLXOverrider+Registers.o" - no debug information available for "FLXOverrider+Registers.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLExtractionManager.o" - no debug information available for "FLExtractionManager.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLClass.o" - no debug information available for "FLClass.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLUnit.o" - no debug information available for "FLUnit.m".
warning: Could not find object file "/Users/macbook/Library/Developer/Xcode/DerivedData/Flex-exwhiisuvihoekagpdjpwgxwhyrx/Build/Intermediates/Flex.build/Debug-iphoneos/Flex.build/Objects-normal/armv7/FLCDetective.o" - no debug information available for "FLCDetective.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(JBKCurrentApplication.o)" - no debug information available for "JBKCurrentApplication.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(JBKLegacy.o)" - no debug information available for "JBKLegacy.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(FYIconCache.o)" - no debug information available for "FYIconCache.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(FYApplication.o)" - no debug information available for "FYApplication.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(FYApplicationList.o)" - no debug information available for "FYApplicationList.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(JBKLog.o)" - no debug information available for "JBKLog.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(FYIcon.o)" - no debug information available for "FYIcon.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(JBKMessagingCenter.o)" - no debug information available for "JBKMessagingCenter.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(UIImage+JBKit.o)" - no debug information available for "UIImage+JBKit.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(FYImageCache.o)" - no debug information available for "FYImageCache.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(FYUIImage.o)" - no debug information available for "FYUIImage.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(JBKFileManager.o)" - no debug information available for "JBKFileManager.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(NSFileManager+JBKit.o)" - no debug information available for "NSFileManager+JBKit.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(JCKError.o)" - no debug information available for "JCKError.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(JCKApplication.o)" - no debug information available for "JCKApplication.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(JCKErrorManager.o)" - no debug information available for "JCKErrorManager.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(JCKDevice.o)" - no debug information available for "JCKDevice.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(NSArray+JCKit.o)" - no debug information available for "NSArray+JCKit.m".
warning: Could not find object file "/Users/macbook/Dev/Projects/Flex-2-Release/xcodeBuild/tweak/libJBKit-noUI.a(NSObject+JCKit.o)" - no debug information available for "NSObject+JCKit.m".
warning: Could not find object file "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a(arclite.o)" - no debug information available for "arclite.mm".
......warning: Could not find object file "/Users/Lunatik/Source/xCon/build/obj/beta_debug/source/Tweak.xm.888cc8ce.o" - no debug information available for "Tweak.xm.mm".
warning: Could not find object file "/Users/Lunatik/Source/xCon/build/obj/beta_debug/source/Judge.xm.888cc8ce.o" - no debug information available for "Judge.xm.mm".

..................... done
unable to read unknown load command 0x80000028
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
bfd_mach_o_scan: unknown architecture 0x100000c/0x0
`/usr/lib/librocketbootstrap.dylib' has changed; re-reading symbols.
`/Library/MobileSubstrate/DynamicLibraries/zeppelin_uikit.dylib' has changed; re-reading symbols.
Reading symbols for shared libraries + done
0x36251474 in mach_msg_trap ()
(gdb) c
Continuing.

Archived

This topic is now archived and is closed to further replies.

  • Our picks

    • (Legen Clover Japan) れじぇくろ! ~レジェンド・クローバー~ v3.6.0 +1 Cheat
      Modded/Hacked App: れじぇくろ! ~レジェンド・クローバー~ By EXNOA LLC
      Bundle ID: com.dmm.games.legeclo
      iTunes Store Link: https://apps.apple.com/jp/app/%E3%82%8C%E3%81%98%E3%81%87%E3%81%8F%E3%82%8D-%E3%83%AC%E3%82%B8%E3%82%A7%E3%83%B3%E3%83%89-%E3%82%AF%E3%83%AD%E3%83%BC%E3%83%90%E3%83%BC/id1536354906?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Instant Win


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please 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:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Thanks
        • Like
      • 23 replies
    • (Legend Clover Japan) れじぇくろ! ~レジェンド・クローバー~ v3.6.0 +1 Cheat
      Modded/Hacked App: れじぇくろ! ~レジェンド・クローバー~ By EXNOA LLC
      Bundle ID: com.dmm.games.legeclo
      iTunes Store Link: https://apps.apple.com/jp/app/%E3%82%8C%E3%81%98%E3%81%87%E3%81%8F%E3%82%8D-%E3%83%AC%E3%82%B8%E3%82%A7%E3%83%B3%E3%83%89-%E3%82%AF%E3%83%AD%E3%83%BC%E3%83%90%E3%83%BC/id1536354906?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Instant Win


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers 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, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Thanks
        • Winner
        • Like
      • 53 replies
    • Hero Hero Clicker - Idle Game v132 +2 Jailed Cheats
      Modded/Hacked App: Hero Hero Clicker - Idle Game By HNRQ FAITTA LTDA
      Bundle ID: com.babystone.heroheroclicker
      iTunes Store Link: https://apps.apple.com/us/app/hero-hero-clicker-idle-game/id6474022305?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Damage Multiplier
      - Free IAP


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please 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:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Agree
        • Thanks
        • Winner
        • Like
      • 32 replies
    • Hero Hero Clicker - Idle Game v132 +2 Cheats
      Modded/Hacked App: Hero Hero Clicker - Idle Game By HNRQ FAITTA LTDA
      Bundle ID: com.babystone.heroheroclicker
      iTunes Store Link: https://apps.apple.com/us/app/hero-hero-clicker-idle-game/id6474022305?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Damage Multiplier
      - Free IAP


      Non-Jailbroken & No Jailbreak required hack(s): 


      iOS Hack Download Link:

      Hidden Content

      Download Hack








      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers 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, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 34 replies
    • Otherworld Legends v2.7.0 +11 Jailed Cheats
      Modded/Hacked App: Otherworld Legends By ChillyRoom
      Bundle ID: com.chillyroom.otherworld
      iTunes Store Link: https://apps.apple.com/us/app/otherworld-legends/id1439772060?uo=4&at=1010lce4

       

      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly/Cydia Impactor or alternatives.
      - A Computer Running Windows/Mac/Linux.


      Hack Features:
      - Player AttackSpeed
      - Enemy Attack Speed
      - Always Full Health
      - No Skill CD
      - Dumb AI


      Jailbreak required hack(s): 


      iOS Hack Download Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer.
      STEP 3: Download Sideloadly and install it.
      STEP 4: Open/Run Sideloadly on your computer then connect your iOS Device and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login & then your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will now need to go to Settings -> General -> Profiles & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: For free Apple Developer accounts you will need to repeat this process every 7 days. Using a disposable Apple ID for this process is suggested but not required. Jailbroken iDevices can also use Sideloadly to install the IPA with AppSync. Filza & IPA Installer (or alternatives) from Cydia also work. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find 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:
      - @Amuyea


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 153 replies
    • DC Heroes & Villains: Match 3 v2.9.3 +5 Jailed Cheats
      Modded/Hacked App: DC Heroes & Villains By Ludia
      Bundle ID: com.ludia.dc2021
      iTunes Store Link: https://apps.apple.com/ph/app/dc-heroes-villains/id1498981975?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/Mac/Linux with iTunes installed.


      Hack Features:
      - Damage Multiplier
      - Defense Multiplier
      - Always Win
      - Disable Enemies Attack
      - Auto Win


      Jailbreak required hack(s): 


      iOS Hack Download Link:

      Hidden Content
      React or reply to this topic to see the <a href='https://iosgods.com/topic/3762-info-how-to-unlockview-the-hidden-content-on-iosgods/?do=findComment&comment=78119'>hidden content & download link</a>.








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login & then your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: For free Apple Developer accounts, you will need to repeat this process every 7 days. Using a disposable Apple ID for this process is suggested but not required. Jailbroken iDevices can also use Sideloadly to install the IPA with AppSync. Filza & IPA Installer (or alternatives) from Cydia also work. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find 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:
      - Zahir


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 64 replies
    • F Class Adventurer: AFK RPG v1.77.00 +3 Jailed Cheats
      Modded/Hacked App: F Class Adventurer: AFK RPG By EK GAMES
      Bundle ID: net.ekgames.fclasshero
      iTunes Store Link: https://apps.apple.com/us/app/f-class-adventurer-afk-rpg/id6444598021?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Damage Multiplier
      - Never Die
      - Reward Multiplier


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please 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:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 77 replies
    • DC Heroes & Villains: Match 3 v2.9.3 +5 Cheats
      Modded/Hacked App: DC Heroes & Villains: Match 3 By Jam City, Inc.
      Bundle ID: com.ludia.dc2021
      iTunes Store Link: https://apps.apple.com/us/app/dc-heroes-villains-match-3/id1498981975?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Damage Multiplier
      - Defense Multiplier


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers 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, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 126 replies
    • F Class Adventurer: AFK RPG v1.77.00 +3 Cheats
      Modded/Hacked App: F Class Adventurer By EK GAMES
      Bundle ID: net.ekgames.fclasshero
      iTunes Store Link: https://apps.apple.com/us/app/f-class-adventurer/id6444598021?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Damage Multiplier
      - God Mode


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers 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, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 397 replies
    • ‎Otherworld Legends v2.7.0 +11 Cheats
      Modded/Hacked App: Otherworld Legends By ChillyRoom Inc.
      Bundle ID: com.chillyroom.otherworld
      iTunes Store Link: https://apps.apple.com/us/app/otherworld-legends/id1439772060?uo=4


      Hack Features:
      - one hit kill
      - god mode
      - no skill cd
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 577 replies
    • Power Rangers Mighty Force v1.3.0 +1 Jailed Cheat
      Modded/Hacked App: Power Rangers Mighty Force By East Side Games Inc
      Bundle ID: com.eastsidegames.powerrangers
      iTunes Store Link: https://apps.apple.com/us/app/power-rangers-mighty-force/id6444350926?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Unlimited Currencies → Spend/Gain


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please 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:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Agree
        • Like
      • 12 replies
    • Age of Magic: Turn Based RPG v2.29.0 +2 Jailed Cheats
      Modded/Hacked App: Age of Magic: Turn Based RPG By Playkot Ltd
      Bundle ID: com.playkot.ageofmagic
      iTunes Store Link: https://apps.apple.com/us/app/age-of-magic-turn-based-rpg/id1175370741?uo=4

      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Cydia Impactor.
      - A Computer Running Windows/Mac/Linux.


      Hack Features:
      - Damage Multiplier
      - Never Die


      Jailbreak required hack(s): 

       


      iOS Hack Download Link:

      Hidden Content
      Reply to this topic to see the <a href='https://iosgods.com/topic/3762-info-how-to-unlockview-the-hidden-content-on-iosgods/?do=findComment&comment=78119'>hidden content & download link</a>.








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer.
      STEP 3: Download Cydia Impactor and extract the archive.
      STEP 4: Open/Run Cydia Impactor on your computer then connect your iOS Device and wait until your device name shows up on Cydia Impactor.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Cydia Impactor application.
      STEP 6: You will now be asked to enter your iTunes/Apple ID email login & then your password. Go ahead and enter the required information..
      STEP 7: Wait for Cydia Impactor to finish sideloading/installing the hacked IPA.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will now need to go to Settings -> General -> Profiles & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: For free Apple Developer accounts you will need to repeat this process every 7 days. Using a disposable Apple ID for this process is suggested but not required. Jailbroken iDevices can skip using Cydia Impactor and just install the IPA mod with AppSync & IPA Installer (or alternatives) from Cydia. If you have any questions or problems, read our Cydia Impactor topic and if you don't find 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:
      - Laxus
      - gogigogi1


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 372 replies
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines