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

    • DEAD TARGET: FPS Zombie Games v6.154.0 [ +10 Cheats ] Currency Max
      Modded/Hacked App: DEAD TARGET: FPS Zombie Games By VNG SINGAPORE PTE LTD
      Bundle ID: com.vng.g6.a.zombie
      iTunes Store Link: https://apps.apple.com/us/app/dead-target-fps-zombie-games/id901793885?uo=4
       

      Hack Features

      - Unlimited Gold
      - Unlimited Cash

      - Unlimited Diamonds
      - Unlimited Grenades
      - Unlimited MedKits
      - Unlimited Ammo
      - One Hit Kill
      - God Mode
      - High Accuracy

      - ADS NO
        • Agree
        • Winner
        • Like
      • 20 replies
    • DEAD TARGET: FPS Zombie Games v6.154.0 [ +10 Jailed ] Currency Max
      Modded/Hacked App: DEAD TARGET: FPS Zombie Games By VNG SINGAPORE PTE LTD
      Bundle ID: com.vng.g6.a.zombie
      iTunes Store Link: https://apps.apple.com/us/app/dead-target-fps-zombie-games/id901793885?uo=4
       

      Hack Features

      - Unlimited Gold
      - Unlimited Cash

      - Unlimited Diamonds
      - Unlimited Grenades
      - Unlimited MedKits
      - Unlimited Ammo
      - One Hit Kill
      - God Mode
      - High Accuracy

      - ADS NO
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 33 replies
    • Alien Survivor: Survival Arena v1.39.1 [ +7 Cheats ] Currency Max
      Modded/Hacked App: Alien Survivor: Survival Arena By IMPONILOX LIMITED
      Bundle ID: world.playme.x
      iTunes Store Link: https://apps.apple.com/us/app/alien-survivor-survival-arena/id1669761844?uo=4
       

      🚀 Hack Features

      - ADS NO [ Rewards Free ]

      - Gems [ Achievements Rewards Only One Get ]

      - Energy [ Just Buy ]

      - HP [ Just Equip & Unequip ]

      - ATK [ Just Equip & Unequip ]

      - DEF [ Just Equip & Unequip ]

      - Skill CD [ First Get Then Use ]


      🍏 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
        • Haha
        • Winner
        • Like
      • 17 replies
    • Alien Survivor: Survival Arena v1.39.1 [ +7 Jailed ] Currency Max
      Modded/Hacked App: Alien Survivor: Survival Arena By IMPONILOX LIMITED
      Bundle ID: world.playme.x
      iTunes Store Link: https://apps.apple.com/us/app/alien-survivor-survival-arena/id1669761844?uo=4


      🚀 Hack Features

      - ADS NO [ Rewards Free ]

      - Gems [ Achievements Rewards Only One Get ]

      - Energy [ Just Buy ]

      - HP [ Just Equip & Unequip ]

      - ATK [ Just Equip & Unequip ]

      - DEF [ Just Equip & Unequip ]

      - Skill CD [ First Get Then Use ]


      🍏 Jailbreak iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 30 replies
    • Piggy Kingdom - Match 3 Games v2.1.9 [ +6 Cheats ] Currency Max
      Modded/Hacked App: Piggy Kingdom - Match 3 Games By OLLEYO PTE. LTD.
      Bundle ID: com.olleyo.piggy.match
      iTunes Store Link: https://apps.apple.com/us/app/piggy-kingdom-match-3-games/id1635337354?uo=4


      🚀 Hack Features

      - Coins

      - Lives

      - Build Coins

      - Moves

      - Booster

      - Color Move Only [ Without Matching Move Anywhere ]


      🍏 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/
        • Like
      • 16 replies
    • Piggy Kingdom - Match 3 Games v2.1.9 [ +6 Jailed ] Currency Max
      Modded/Hacked App: Piggy Kingdom - Match 3 Games By OLLEYO PTE. LTD.
      Bundle ID: com.olleyo.piggy.match
      iTunes Store Link: https://apps.apple.com/us/app/piggy-kingdom-match-3-games/id1635337354?uo=4


      🚀 Hack Features

      - Coins

      - Lives

      - Build Coins

      - Moves

      - Booster

      - Color Move Only [ Without Matching Move Anywhere ]


      🍏 Jailbreak iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Informative
        • Like
      • 20 replies
    • Zombastic: Time to Survive v1.12.2 [ +1+++ Jailed ] Currency Max
      Modded/Hacked App: Zombastic: Time to Survive By Playmotional Limited
      Bundle ID: com.playmotional.survival
      iTunes Store Link: https://apps.apple.com/us/app/zombastic-time-to-survive/id6475173073?uo=4


      Hack Features:
      - Currency & Resources Unlimited [ Disable When Playing ] 





      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      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
      • 47 replies
    • Zombastic: Time to Survive v1.12.2 [ +1+++ Cheats ] Currency Max
      Modded/Hacked App: Zombastic: Time to Survive By Playmotional Limited
      Bundle ID: com.playmotional.survival
      iTunes Store Link: https://apps.apple.com/us/app/zombastic-time-to-survive/id6475173073?uo=4


      Hack Features:
      - Currency & Resources Unlimited [ Disable When Playing ] 





      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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 47 replies
    • Galaxiga - Classic 80s Arcade v10.90 [ +7 Jailed ] Energy Max
      Modded/Hacked App: Galaxiga - Classic 80s Arcade By ONESOFT GLOBAL PTE. LTD.
      Bundle ID: com.os.space.force.galaxy.alien
      iTunes Store Link: https://apps.apple.com/us/app/galaxiga-classic-80s-arcade/id1519367184?uo=4


      Hack Features:

      - Premium Pass [ Rewards Only ]

      - Energy Unlimited [ Linked Premium Pass ]

      - Plane Unlocked [ Tire 1 Tire 2 ] 

      - Drone Unlocked [ Tire 1 Tire 2 ]

      - Stone Unlocked [ Tire 1 Tire 2 ] 

      - Unlock Gem Cost 0 [ Plane Drone Stone ]

      - Easy Kill [ Only SP - No PVP ] 

      - Win PvP Select Higher Rank [ Plane Drone Stone ] Easy To Win PvP NO Bannnn


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Agree
        • Winner
        • Like
      • 48 replies
    • Galaxiga - Classic 80s Arcade v10.90 [ +7 Cheats ] Energy Max
      Modded/Hacked App: Galaxiga - Classic 80s Arcade By ONESOFT GLOBAL PTE. LTD.
      Bundle ID: com.os.space.force.galaxy.alien
      iTunes Store Link: https://apps.apple.com/us/app/galaxiga-classic-80s-arcade/id1519367184?uo=4


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


      Hack Features:
      - Premium Pass [ Rewards Only ]

      - Energy Unlimited [ Linked Premium Pass ]

      - Plane Unlocked [ Tire 1 Tire 2 ] 

      - Drone Unlocked [ Tire 1 Tire 2 ]

      - Stone Unlocked [ Tire 1 Tire 2 ] 

      - Unlock Gem Cost 0 [ Plane Drone Stone ] Maybe Effect PvP 

      - Easy Kill [ Only SP - No PVP ] 

      - Win PvP Select Higher Rank [ Plane Drone Stone ]

      Not3:- Don't Abuse The Hack Incase Banned Lower Chances Maybe


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


      iOS Hack Download Link:

      Hidden Content

      Download Hack
        • Informative
        • Agree
        • Haha
        • Winner
        • Like
      • 79 replies
    • Galaxy Attack: Alien Shooter v5.12.13 [ +30++ Cheats ] Currency Max
      Modded/Hacked App: Galaxy Attack: Alien Shooter By DINO GAME LIMITED
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?uo=4
       

      🚀 Hack Features

      - ADS NO [ Rewards Free ]

      - Gems [ Linked With Battle Pass ]

      - Gold [ Linked With Battle Pass ]

      - Chest [ Linked With Battle Pass ]

      - Monthly Card Normal

      - Monthly Card Super

      - Monthly Card Premium

      - Energy NO Need [ When 0 Play Unlimited ]

      - Evolve Stone

      - Unlimited Ship [ Select Any Ship Before The Battle ]

      - Drone Ticket

      - Terminator Point

      - Tech Point

      - Overload Ball

      - Matrix Max

      - Golden Revive Max

      - Revive Unlimited

      - Campain Revive Cost Gold [ Earn With Gold ]

      - Gems Revive  [Earn With Gems ]

      - Endless Revive Cost Gold [Earn With Gold ]

      - Talent Upgrade Cost  [Earn With Gold ]

      - Battle Pass Premium Active

      - BP Free [ Claim Unlimited ]

      - BP Premium [ Claim Unlimited ]

      - BP Free Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - BP Premium Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - Bullet Max

      - Life Max

      - Damage

      Warning 


      Don"t Abuse The Hack In Case Banned Any Data Lose I'M Not Responsible  

       

      🍏 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
        • Winner
        • Like
      • 77 replies
    • Galaxy Attack: Alien Shooter v5.12.13 [ +30++ Jailed ] Currency Max
      Modded/Hacked App: Galaxy Attack: Alien Shooter By DINO GAME LIMITED
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?uo=4

       

       

      🔧 Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      🚀 Hack Features

      - ADS NO [ Rewards Free ]

      - Gems [ Linked With Battle Pass ]

      - Gold [ Linked With Battle Pass ]

      - Chest [ Linked With Battle Pass ]

      - Monthly Card Normal

      - Monthly Card Super

      - Monthly Card Premium

      - Energy NO Need [ When 0 Play Unlimited ]

      - Evolve Stone

      - Unlimited Ship [ Select Any Ship Before The Battle ]

      - Drone Ticket

      - Terminator Point

      - Tech Point

      - Overload Ball

      - Matrix Max

      - Golden Revive Max

      - Revive Unlimited

      - Campain Revive Cost Gold [ Earn With Gold ]

      - Gems Revive  [Earn With Gems ]

      - Endless Revive Cost Gold [Earn With Gold ]

      - Talent Upgrade Cost  [Earn With Gold ]

      - Battle Pass Premium Active

      - BP Free [ Claim Unlimited ]

      - BP Premium [ Claim Unlimited ]

      - BP Free Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - BP Premium Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - Bullet Max

      - Life Max

      - Damage

      Warning 


      Don"t Abuse The Hack In Case Banned Any Data Lose I'M Not Responsible 


      🍏 Jailbreak iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/

       

      📥 iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 61 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