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

    • [ GrandChase TW] 永恆冒險 Cheats v1.91.2 +3
      Modded/Hacked App: 永恆冒險 By HaoPlay Limited
      Bundle ID: tw.txwy.ios.grandchase
      iTunes Store Link: https://apps.apple.com/tw/app/%E6%B0%B8%E6%81%86%E5%86%92%E9%9A%AA/id1434266148?uo=4


      Hack Features:
      - Multiply Attack
      - Multiply Defense
      - Instant Skills
      - Weak Enemies


      ViP Non-Jailbroken Hack: https://iosgods.com/topic/167594-grandchase-tw-%E6%B0%B8%E6%81%86%E5%86%92%E9%9A%AA-v1744-jailed-cheats-2/


      iOS Hack Download Link: https://iosgods.com/topic/144913-grandchase-tw-%E6%B0%B8%E6%81%86%E5%86%92%E9%9A%AA-cheats-v1812-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 150 replies
    • [Grandchase KR] 그랜드체이스 Cheats v1.92.3 +3
      Modded/Hacked App: 그랜드체이스 By KOG co., Ltd
      Bundle ID: com.kakaogames.grdchase
      iTunes Store Link: https://apps.apple.com/kr/app/%EA%B7%B8%EB%9E%9C%EB%93%9C%EC%B2%B4%EC%9D%B4%EC%8A%A4/id1312734855?uo=4

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - Multiply Attack
      - Multiply Defense
      - Instant Skills

       

      Non-Jailbroken Hack: https://iosgods.com/topic/106254-grandchase-kr-%EA%B7%B8%EB%9E%9C%EB%93%9C%EC%B2%B4%EC%9D%B4%EC%8A%A4-v1872-weak-enemies-more/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/132809-grandchase-kr-%EA%B7%B8%EB%9E%9C%EB%93%9C%EC%B2%B4%EC%9D%B4%EC%8A%A4-cheats-v1882-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 145 replies
    • Groove Journey v5.0.0 Jailed Mod +1
      Modded/Hacked App: Groove Journey By Somtochukwu Mbala
      Bundle ID: com.kaipha.groovejourney
      iTunes Store Link: https://apps.apple.com/us/app/groove-journey/id6736345547?uo=4


      Hack Features:
      - PREMIUM


      iOS Hack Download IPA Link: https://iosgods.com/topic/190862-groove-journey-v311-jailed-mod-1/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 107 replies
    • MARVEL Contest of Champions v51.1.1 +11++ Amazing Cheats!
      Modded/Hacked App: MARVEL Contest of Champions By Kabam
      Bundle ID: com.kabam.marvelbattle
      iTunes Link: https://itunes.apple.com/us/app/marvel-contest-of-champions/id896112560?mt=8&uo=4&at=1010lce4


      Hack Features
      - Enemy/AI Doesn't Attack
      - Special Attack/Skill Always Available
      - No Knockbacks When Hit
      - No Knockdowns When Hit
      - Enemy Doesn't Block
      - Auto Win - Whoever Attacks first, loses. Disable AI Doesn't Attack for this to work.
      - One Hit Kill / High Damage - Linked. Attack first or use with Enemy Doesn't Attack.

      Non-Jailbroken version of this hack: https://iosgods.com/topic/44075-marvel-contest-of-champions-v1311-2-cheats-for-jailed-devices/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 3,510 replies
    • Caveman Life v1.0.2 Cheat Menu [+5 Cheats]
      Modded/Hacked App: Caveman Life By 24 HIT Riga SIA
      Bundle ID: com.prehistoric.dude
      iTunes Store Link: https://apps.apple.com/us/app/caveman-life/id6739502478?uo=4


       

      🤩 Hack Features

      - Cheat Menu (Enable and hold setting button until cheat menu appear. Password is : 2424)
       
        • Haha
        • Like
      • 4 replies
    • Caveman Life v1.0.2 Cheat Menu [+5 Jailed Cheats]
      Modded/Hacked App: Caveman Life By 24 HIT Riga SIA
      Bundle ID: com.prehistoric.dude
      iTunes Store Link: https://apps.apple.com/us/app/caveman-life/id6739502478?uo=4



      🤩 Hack Features

      - Cheat Menu (Enable and hold setting button until cheat menu appear. Password is : 2424)

       
        • Informative
        • Thanks
        • Like
      • 2 replies
    • Pal Go: Tower Defense TD v0.3.90 [+7 Cheats]
      Modded/Hacked App: Pal Go: Tower Defense TD By Playwind Ltd
      Bundle ID: com.playwindgames.freedefender
      iTunes Store Link: https://apps.apple.com/us/app/pal-go-tower-defense-td/id6479316663?uo=4


       

      🚀 Hack Features

      - [VIP] Freeze Currency (Currency will not decrease when used)

      - [VIP] Currency Always Enough (Buy even when you don't have enough currency)

      - [Free] Higher Recruit Energy (Gives 500 Recruit Energy Every Wave)

      - [Free] Always Can Drag Hero

      - [Free] Skip Ads

      - [Free] No Attack Cooldown

      - [Free] Global Speed Multiplier (Enable Inside Battle)

       

      Warning


      Do not use on main account. There is a chance of ban. Not responsible for any bans.

       


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      🤖 Modded Android APK(s): https://iosgods.com/forum/68-android-section/
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 56 replies
    • Pal Go: Tower Defense TD v0.3.90 [+7 Jailed Cheats]
      Modded/Hacked App: Pal Go: Tower Defense TD By Playwind Ltd
      Bundle ID: com.playwindgames.freedefender
      iTunes Store Link: https://apps.apple.com/us/app/pal-go-tower-defense-td/id6479316663?uo=4


       

      Hack Features

      - [VIP] Freeze Currency (Currency will not decrease when used)

      - [VIP] Currency Always Enough (Buy even when you don't have enough currency)

      - [Free] Higher Recruit Energy (Gives 500 Recruit Energy Every Wave)

      - [Free] Always Can Drag Hero

      - [Free] Skip Ads

      - [Free] No Attack Cooldown

      - [Free] Global Speed Multiplier (Enable Inside Battle)

       

      Warning


      Do not use on main account. There is a chance of ban. Not responsible for any bans.

       

      Jailbreak required iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 81 replies
    • Scolopendra v1.0.1 Debug Menu [+4 Jailed Cheats]
      Modded/Hacked App: Scolopendra By 24 HIT Riga SIA
      Bundle ID: com.game.scolopendra
      iTunes Store Link: https://apps.apple.com/us/app/scolopendra/id6742407695?uo=4



      🤩 Hack Features

      - Debug Menu (Enable and Debug Menu Will Appear)

        • Like
      • 2 replies
    • Puzzles & Cats v1.3.0 [+5 Jailed Cheats]
      Modded/Hacked App: Puzzles & Cats By Kwalee Ltd
      Bundle ID: com.kwalee.puzzlesandcatsnew
      iTunes Store Link: https://apps.apple.com/us/app/puzzles-cats/id6738574871?uo=4

       

      🤩 Hack Features

      - Free Store (Everything inside Shop. Enable and Buy)
      - Auto Win (Enable and make move)
      - Never Die
      - Infinite Heart
      - Always Can Afford (Gold, Diamond, Character Upgrade)
      • 5 replies
    • Puzzles & Cats v1.3.0 [+5 Cheats]
      Modded/Hacked App: Puzzles & Cats By Kwalee Ltd
      Bundle ID: com.kwalee.puzzlesandcatsnew
      iTunes Store Link: https://apps.apple.com/us/app/puzzles-cats/id6738574871?uo=4



      🤩 Hack Features

      - Free Store (Everything inside Shop. Enable and Buy)
      - Auto Win (Enable and make move)
      - Never Die
      - Infinite Heart
      - Always Can Afford (Gold, Diamond, Character Upgrade)

      • 2 replies
    • Little Defenders v1.2.11 [+2 Jailed Cheats]
      Modded/Hacked App: Little Defenders By 羡龄 甄
      Bundle ID: com.sisheshidu.guardian
      App Store Link: https://apps.apple.com/us/app/little-defenders/id6740069144?uo=4



      🤩 Hack Features

      - Never Die
      - Add Coin (Inside Battle)
        • Like
      • 3 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