Jump to content

3 posts in this topic

Recommended Posts

Posted

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

Posted

 

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.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Our picks

    • Survivor Kingdoms v3.48 [ +11 Jailed ] Easy Win
      Modded/Hacked App: Survivor Kingdoms By Gamee Joint Stock Company
      Bundle ID: com.gamee.kingdoms.survivor.io
      iTunes Store Link: https://apps.apple.com/us/app/survivor-kingdoms/id6444824577?uo=4

       

      🚀 Hack Features

      - IAP Free [ Buy Anything ]

      - Health

      - Damage

      - Skill CD Slow

      - Skill CD Fast [ Maybe Game Slow ]

      - Skill Size Big

      - Shooting Speed Fast

      - Movement Speed

      - Auto Revive Unlimited [ Never Die ]

      - Ultimate Power CD

      - Avatar & Frame 


      🍏 Jailbreak iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/
      • 79 replies
    • Survivor Kingdoms v3.48 [ +11 Cheats ] Easy Win
      Modded/Hacked App: Survivor Kingdoms By Gamee Joint Stock Company
      Bundle ID: com.gamee.kingdoms.survivor.io
      iTunes Store Link: https://apps.apple.com/us/app/survivor-kingdoms/id6444824577?uo=4


      Hack Features:
      - IAP Free [ Buy Anything ]

      - Health

      - Damage

      - Skill CD Slow

      - Skill CD Fast [ Maybe Game Slow ]

      - Skill Size Big

      - Shooting Speed Fast

      - Movement Speed

      - Auto Revive Unlimited [ Never Die ]

      - Ultimate Power CD

      - Avatar & Frame 


      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/
      • 64 replies
    • Archer Hunter - Adventure Game v2.35.506 [ +7 APK MOD ] Currency Max
      Mod APK Game Name: Archer Hunter - Adventure Game
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=co.imba.archero&hl=en

      🤩 Hack Features

      - ViP Card Active
      - ViP Claim Unlimited / Daily Gems
      - ADS NO / Rewards Free
      - Unlimited Gems
      - Unlimited Coins
      - HP / Check Status
      - ATK / Check Status
      • 0 replies
    • Tiny Dungeon Warriors v0.1.126 [ +9 APK MOD ] Currency Max
      Mod APK Game Name: Tiny Dungeon Warriors
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.badmonkee.wdlp&hl=en

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Coins
      - Unlimited Books
      - Unlimited Food / Unlimited Trop Easy To Win
      - Skill Learn Cost 0
      - Food UP Cost 0
      - Base UP Cost 0
      - Unlimited Battle Items
      - DMG / Linked / Unlimited Trop Easy To Win
      • 0 replies
    • (18+) Eros Raiders v1.2.65 +2 Cheats
      Mod APK Game Name: Eros Raiders By EroLabs
      Rooted Device: Not Required.
      Google Play Store Link: https://18game.ero-labs.club/game.html?id=132

       

      🤩 Hack Features

      - Damage Multiplier
      - Defense Muliplier

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      Download Modded APK







       

      📖 Android Installation Instructions

      STEP 1: Download the modded APK file from the link above using your preferred Android browser or download manager.
      STEP 2: Once the download is complete, open your file manager and locate the downloaded .apk file (usually in the Downloads folder).
      STEP 3: Tap the APK file, then select Install. If prompted, enable Install from Unknown Sources in your device settings.
      STEP 3A: If the mod includes an OBB file, extract it if it’s inside an archive. Then move the folder to: /Android/obb/
      STEP 3B: If the mod includes a DATA file, extract it if it’s archived. Then move the folder to: /Android/data/
      STEP 4: Once installed, open the game and toggle your desired cheats & features through the APK mod menu. Enjoy!

       

      NOTE: If you have any questions or issues, read our Frequently Asked Questions topic. If you still need help, post your issue below and we’ll assist you as soon as possible. If the mod works for you, please share your feedback to help other members!

       

      🙌 Credits

      - AlyssaX64

       

      📷 Cheat Video/Screenshots

      N/A

       

       iOS & iPadOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.
      • 0 replies
    • Super Hero Ready! v1.0 [ +3 APK MOD ] Currency Max
      Mod APK Game Name: Super Hero Ready
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.RonixGames.Super.Hero.Ready&hl=en

      🤩 Hack Features

      - Unlimited Gems / Use Then Get
      - Unlimited Coins / Use Then Get
      - Unlimited Skill Token / Use Then Get
      • 0 replies
    • Zombie Blast - Link Match v3.4.16 [ +3 Cheats ] Auto Win
      Modded/Hacked App: Zombie Blast - Link Match By SNG Bilisim Yazilim Danismanlik ve Pazarlama Dis Ticaret Ltd. Sti.
      Bundle ID: com.sngict.zblast
      App Store Link: https://apps.apple.com/us/app/zombie-blast-link-match/id1549172917?uo=4

      🤩 Hack Features

      - Auto Win
      - Hero HP Max
      - Hero ATK Max
      • 2 replies
    • Zombie Blast - Link Match v3.4.16 [ +3 Jailed ] Auto Win
      Modded/Hacked App: Zombie Blast - Link Match By SNG Bilisim Yazilim Danismanlik ve Pazarlama Dis Ticaret Ltd. Sti.
      Bundle ID: com.sngict.zblast
      App Store Link: https://apps.apple.com/us/app/zombie-blast-link-match/id1549172917?uo=4

      🤩 Hack Features

      - Auto Win
      - Hero HP Max
      - Hero ATK Max
      • 1 reply
    • Star Rising: Basketball v1.5.8 [ +2 APK MOD ] Unlimited Gems
      Mod APK Game Name: Star Rising: Basketball
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.basketball.nba.star.sport&hl=en

      🤩 Hack Features

      - ADS NO
      - Unlimited Gems 
      • 0 replies
    • Saddlebag Survival v1.6.0 [ +5 APK MOD ] Battle Coin
      Mod APK Game Name: Saddlebag Survival
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.gameloops.saddlebagsurvival&hl=en

      🤩 Hack Features

      - Currency / No Need
      - Resources / No Need
      - Unlimited Battle Coins / Use To Get
      - DMG 1
      - DMG 2
      • 0 replies
    • Almost a Hero — Idle RPG V5.8.7 [ +13 APK MOD ] Auto Win
      Mod APK Game Name: Almost a Hero — Idle RPG
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.beesquare.almostahero&hl=en

      🤩 Hack Features

      - ALL Currency Unlimited / Disable After Hack
      - All Resources Unlimited / Disable After Hack
      - Unlimited Merchant Items / Gold - Auto Tap etc.
      - Auto Win 
      - Stage Skipper 
      - Wave Skipper 
      - Enemy Skipper 
      Hero Status
      - ATK MAX
      - HP MAX
      - ATK SPEED
      - LvL UP DMG HP Faster Increase 
      Enemy Status
      - ATK 0
      - HP 0
      • 0 replies
    • iSurvivor: Epic Shoot ‘Em Up v1.1.1 [ +15 APK MOD ] Currency Max
      Mod APK Game Name: iSurvivor: Epic Shoot ‘Em Up
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.Gcenter.i.Survivor.Epic.SHMUP&hl=en

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Gold
      - Unlimited Ancient Coin
      - Unlimited Stars
      - Unlimited Booster HP
      - Unlimited Booster EXP
      - Unlimited Booster DMG
      - Unlimited Gold Loot
      - Zone Unlock Cost 0
      - Zone Rewards / Claim Unlimited
      - Hero Unlocked
      - Pet Unlocked
      - Base DMG
      - Spirit DMG / Just Check Status
      - Hero Status / HP DMG - Just Change
      • 0 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