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

    • Lost Sword v1.3.1 +1 Jailed Cheat [ Auto Win ]
      Modded/Hacked App: Lost Sword By Wemade Connect Co., Ltd.
      Bundle ID: com.wemadeconnect.ios.lostdgl
      App Store Link: https://apps.apple.com/us/app/lost-sword/id6482099823?uo=4

       
       

      🤩 Hack Features

      - Auto Win
        • Winner
        • Like
      • 6 replies
    • Lost Sword v1.3.1 +1 Cheat [ Auto Win ]
      Modded/Hacked App: Lost Sword By Wemade Connect Co., Ltd.
      Bundle ID: com.wemadeconnect.ios.lostdgl
      App Store Link: https://apps.apple.com/us/app/lost-sword/id6482099823?uo=4

       


      🤩 Hack Features

      - Auto Win
        • Thanks
        • Winner
      • 3 replies
    • Legend of Avatar v1.3.3 +3 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Legend of Avatar By billionairegames
      Bundle ID: com.billionairegames.serares
      App Store Link: https://apps.apple.com/us/app/legend-of-avatar/id6746192853?uo=4

       
       

      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
        • Informative
        • Agree
        • Winner
        • Like
      • 23 replies
    • Legend of Avatar v1.3.3 +3 Cheats [ Damage & Defence ]
      Modded/Hacked App: Legend of Avatar By billionairegames
      Bundle ID: com.billionairegames.serares
      App Store Link: https://apps.apple.com/us/app/legend-of-avatar/id6746192853?uo=4

       
       

      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
        • Agree
        • Thanks
        • Winner
        • Like
      • 16 replies
    • Grimguard Tactics: Fantasy RPG v1.16.5 +3 Jailed Cheats [ Auto Win ]
      Modded/Hacked App: Grimguard Tactics: Fantasy RPG By Outerdawn Limited
      Bundle ID: com.outerdawn.grimguard
      iTunes Store Link: https://apps.apple.com/us/app/grimguard-tactics-fantasy-rpg/id1496893856?uo=4


      Hack Features:
      - Auto Win
      - Unlimited Daily Rewards
      - No Stamina Cost


      Jailbreak required hack(s): [Mod Menu Hack] Grimguard Tactics: Fantasy RPG v1.1.10 +3 Cheats [ Auto Win ] - ViP Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Agree
        • Like
      • 130 replies
    • Grimguard Tactics: Fantasy RPG v1.16.5 +3 Cheats [ Auto Win ]
      Modded/Hacked App: Grimguard Tactics: Fantasy RPG By Outerdawn Limited
      Bundle ID: com.outerdawn.grimguard
      iTunes Store Link: https://apps.apple.com/us/app/grimguard-tactics-fantasy-rpg/id1496893856?uo=4


      Hack Features:
      - Auto Win
      - Unlimited Daily Rewards
      - No Stamina Cost


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Grimguard Tactics: Fantasy RPG v1.1.10 +3 Jailed Cheats [ Auto Win ] - ViP Non-Jailbroken Hacks & Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Agree
        • Thanks
        • Winner
        • Like
      • 110 replies
    • Earn to Die Rogue v1.15.185 +15 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Earn to Die Rogue By Not Doppler Pty Limited
      Bundle ID: com.notdoppler.earntodierogue
      iTunes Store Link: https://apps.apple.com/us/app/earn-to-die-rogue/id1564024870?uo=4


      Hack Features:
      - Unlimited Cash
      - Unlimited Gold
      - Unlimited Skill Tree Tokens


      Jailbreak required hack(s): [Mod Menu Hack] Earn to Die Rogue v1.00.96 +2 Cheats [ Unlimited Currencies ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 283 replies
    • Earn to Die Rogue v1.15.185 +15 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Earn to Die Rogue By Not Doppler Pty Limited
      Bundle ID: com.notdoppler.earntodierogue
      iTunes Store Link: https://apps.apple.com/us/app/earn-to-die-rogue/id1564024870?uo=4


      Hack Features:
      - Unlimited Cash
      - Unlimited Gold
      - Unlimited Skill Tree Tokens


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Earn to Die Rogue v1.00.96 +2 Jailed Cheats [ Unlimited Currencies ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 165 replies
    • Candy Critters: Idle Merge v1.2.6 +3++ Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Candy Critters: Idle Merge By PlaySide Studios PTY LTD
      Bundle ID: com.playsidestudios.candycritters
      App Store Link: https://apps.apple.com/us/app/candy-critters-idle-merge/id6480020380?uo=4

       


      🤩 Hack Features

      - Unlimited Currencies -> Will increase instead of decrease.
      - All Cards Unlocked
      - No Card Upgrade Cost
      - Free In-App Purchases
        • Thanks
        • Like
      • 10 replies
    • Candy Critters: Idle Merge v1.2.6 +3++ Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Candy Critters: Idle Merge By PlaySide Studios PTY LTD
      Bundle ID: com.playsidestudios.candycritters
      App Store Link: https://apps.apple.com/us/app/candy-critters-idle-merge/id6480020380?uo=4

       


      🤩 Hack Features

      - Unlimited Currencies -> Will increase instead of decrease.
      - All Cards Unlocked
      - No Card Upgrade Cost
      - Free In-App Purchases
        • Like
      • 6 replies
    • Shadow War: Idle RPG Survival v1.0.58 +2 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Shadow War: Idle RPG Survival By Pitado Viet Nam JSC
      Bundle ID: com.shadow.war.legend.slime.idle.rpg.survival.game
      iTunes Store Link: https://apps.apple.com/us/app/shadow-war-idle-rpg-survival/id6475706072?uo=4


      Hack Features:
      - Unlimited Currencies -> Will increase instead of decrease.
      - God Mode


      Jailbreak required hack(s): [Mod Menu Hack] Shadow War: Idle RPG Survival v1.0.11 +2 Cheats [ Unlimited Currencies ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 90 replies
    • Shadow War: Idle RPG Survival v1.0.58 +2 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Shadow War: Idle RPG Survival By Pitado Viet Nam JSC
      Bundle ID: com.shadow.war.legend.slime.idle.rpg.survival.game
      iTunes Store Link: https://apps.apple.com/us/app/shadow-war-idle-rpg-survival/id6475706072?uo=4


      Hack Features:
      - Unlimited Currencies -> Will increase instead of decrease.
      - God Mode


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Shadow War: Idle RPG Survival v1.0.11 +2 Jailed Cheats [ Unlimited Currencies ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 95 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