ada1016
ViP Pro-
Posts
103 -
Joined
-
Last visited
Everything posted by ada1016
-
Mod Menu Hack [x64] Valiant Force v1.27.0 +7 Cheats [High Damage + More]
ada1016 replied to Joka's topic in Free Jailbreak Cheats
crashed when trying to insert _Equipment_get_Attack_m171674799, EXC_BAD_INSTRUCTION (SIGILL) iOS 9.3.3 iPhone 6 any hint? or anyone got a smoothly running platform? Exception Type: EXC_BAD_INSTRUCTION (SIGILL) Exception Codes: 0x0000000000000001, 0x0000000008a9bc04 Triggered by Thread: 0 Filtered syslog: None found Thread 0 name: Dispatch queue: com.apple.main-thread Thread 0 Crashed: 0 valiantforce 0x0000000100ca0414 0x100090000 + 12649492 1 valiantforce 0x0000000100c39174 0x100090000 + 12226932 2 valiantforce 0x0000000100cf63bc 0x100090000 + 13001660 3 valiantforce 0x0000000100b70f90 0x100090000 + 11407248 4 valiantforce 0x0000000100b7e238 0x100090000 + 11461176 5 valiantforce 0x0000000100b07534 0x100090000 + 10974516 6 valiantforce 0x0000000100b0d400 0x100090000 + 10998784 7 valiantforce 0x0000000100b09494 0x100090000 + 10982548 8 valiantforce 0x0000000100e89760 0x100090000 + 14653280 9 valiantforce 0x0000000101b22aa4 0x100090000 + 27863716 10 valiantforce 0x00000001024407a4 0x100090000 + 37423012 11 valiantforce 0x0000000101d586f0 0x100090000 + 30181104 12 valiantforce 0x0000000101d586a8 0x100090000 + 30181032 -
The youtube, as you indicated, is not for newbie, but still thanks. Quick question 1. Are you debugging the IPA application totally on Windows? 2. Are you using some sort of iOS simulator on Win? Please can you give some guidance on that aspect? had been looking for debugging/running IPA totally on Windows platform. Appreciated.
-
OK
-
Android Tutorial HOW TO DECRYPT C-SHARP FILE QUICK WITH HEX WORKSHOP!
ada1016 replied to Infamous-Ash's topic in Android Tutorials
ok -
Android Tutorial HOW TO HACK SOME ONLINE GAME USING CHARLES PROXY
ada1016 replied to Infamous-Ash's topic in Android Tutorials
thank you -
great, another advance topic that I had been looked for
-
wow.. finally get to see some advance topic
-
Tutorial [PDF] IDA PRO Code Injection Tutorial
ada1016 replied to NitroxicDemon's topic in Tutorials
thank you -
looking forwared
-
cannot wait to learn
-
With great content of this website, I am able to do more, and got some tiny result, today, please allow me to ask something in a little bit advance IDA section __text:009791B4 ; =============== S U B R O U T I N E ======================================= __text:009791B4 __text:009791B4 ; Attributes: bp-based frame __text:009791B4 __text:009791B4 _Unit_get_GarrisonAttack_m3286393770 ; DATA XREF: __const:02694614o my tweak.xm on the specific function. float (*orig_GarrisonAttack)(void *self); static float GarrisonAttack(void *self) { NSLog(@"[tweak] --- >>> original attack %f",orig_GarrisonAttack(self)); if(ishookEnabled(@"attack")){ return 999999; } else { return orig_GarrisonAttack(self); } } at ctr% MSHookFunction(MSFindSymbol(NULL, "_Unit_get_GarrisonAttack_m3286393770"),(void*)GarrisonAttack, (void**)&orig_GarrisonAttack); My questions 1. How do I know its return type from IDA? using float and work is purely by luck, I don't know, maybe int will also work? 2. can I print the original result of the function? like I want to know what is the value of _Unit_get_GarrisonAttack_m3286393770, can I just NSlog orig_GarrisonAttack(self)? 3. cont with 2, I did try to do this and nothing show up, perhaps I code it wrong? NSLog(@"[tweak] --- >>> original attack %f",orig_GarrisonAttack(self)); 4. Lastly (sorry), is it possible to return the number base on the original method's result? (don't want to get god power as it looked so easy to get caught) e.g. take return value and x10 as new value static float GarrisonAttack(void *self) { return orig_GarrisonAttack(self)*10; } really appreciate in advance
-
DIY Hack How to get Serial Key for ANY Software!
ada1016 replied to ___Aaki___'s topic in DIY Cheats
checking... no IDA 6.95.. -
Help/Support preference_bundle_modern example please?
ada1016 replied to ada1016's topic in Help & Support
thanks for reading my question, I tried the mshook patch template you pointed and immediate meet 'UIAlertView' is deprecated error, do you got updated template or new way to it? $ ~/theos/bin/nic.pl NIC 2.0 - New Instance Creator ------------------------------ [1.] iOSGods CSCI Patcher v2.2 [2.] iOSGods MSHook Patcher v1.1 [3.] iOSGods Patcher v1.2 [4.] iphone/activator_event [5.] iphone/application_modern [6.] iphone/cydget [7.] iphone/flipswitch_switch [8.] iphone/framework [9.] iphone/ios7_notification_center_widget [10.] iphone/library [11.] iphone/notification_center_widget [12.] iphone/preference_bundle_modern [13.] iphone/tool [14.] iphone/tweak [15.] iphone/xpc_service Choose a Template (required): 2 Project Name (required): mshookpatch Package Name [com.yourcompany.mshookpatch]: com.ap.mshookpatch Author/Maintainer Name [U-AzureAD\STEVENJIANG]: Sj [iOSGods MSHook Patcher v1.1] MobileSubstrate Bundle filter [com.apple.springboard]: com.diandian.valantforce [iOSGods MSHook Patcher v1.1] List of applications to terminate upon installation (space-separated, '-' for none) [SpringBoard]: - Instantiating iOSGods MSHook Patcher v1.1 in mshookpatch/... Done. AzureAD+STEVENJIANG@DESKTOP-T14QN27 ~ $ cd mshookpatch/ AzureAD+STEVENJIANG@DESKTOP-T14QN27 ~/mshookpatch $ make package > Making all for tweak mshookpatch… ==> Preprocessing Tweak.xm… ==> Compiling Tweak.xm (armv7)… Tweak.xm:97:468: error: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Werror,-Wdeprecated-declarations] ...AppDelegate* _LOGOS_SELF_CONST, SEL, UIAlertView *, NSInteger); ^ /home/STEVENJIANG/theos/sdks/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:26:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ Tweak.xm:78:1: error: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Werror,-Wdeprecated-declarations] UIAlertView *igcredits = [[UIAlertView alloc] initWithTitle:@"mshookpatch Cheats" ^ /home/STEVENJIANG/theos/sdks/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:26:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ Tweak.xm:78:28: error: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Werror,-Wdeprecated-declarations] UIAlertView *igcredits = [[UIAlertView alloc] initWithTitle:@"mshookpatch Cheats" ^ /home/STEVENJIANG/theos/sdks/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:26:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ Tweak.xm:89:171: error: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Werror,-Wdeprecated-declarations] ...AppDelegate* _LOGOS_SELF_CONST __unused self, SEL __unused _cmd, UIAlertView * alertView, NSInteger buttonIndex) { ^ /home/STEVENJIANG/theos/sdks/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:26:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ Tweak.xm:100:535: error: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Werror,-Wdeprecated-declarations] ..._typeEncoding = '@'; i += 1; _typeEncoding = ':'; i += 1; memcpy(_typeEncoding + i, @encode(UIAlertView *), strl... ^ /home/STEVENJIANG/theos/sdks/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:26:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ Tweak.xm:100:566: error: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Werror,-Wdeprecated-declarations] ...+= 1; _typeEncoding = ':'; i += 1; memcpy(_typeEncoding + i, @encode(UIAlertView *), strlen(@encode(UIAlertView *))... ^ /home/STEVENJIANG/theos/sdks/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:26:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ Tweak.xm:100:604: error: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Werror,-Wdeprecated-declarations] ...1; memcpy(_typeEncoding + i, @encode(UIAlertView *), strlen(@encode(UIAlertView *))); i += strlen(@encode(UIAlertView ... ^ /home/STEVENJIANG/theos/sdks/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:26:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ 7 errors generated. make[3]: *** [/home/STEVENJIANG/theos/makefiles/instance/rules.mk:295: /home/STEVENJIANG/mshookpatch/.theos/obj/debug/armv7/Tweak.xm.265df578.o] Error 1 make[2]: *** [/home/STEVENJIANG/theos/makefiles/instance/library.mk:32: /home/STEVENJIANG/mshookpatch/.theos/obj/debug/armv7/mshookpatch.dylib] Error 2 make[1]: *** [/home/STEVENJIANG/theos/makefiles/instance/library.mk:24: internal-library-all_] Error 2 make: *** [/home/STEVENJIANG/theos/makefiles/master/rules.mk:90: mshookpatch.all.tweak.variables] Error 2 AzureAD+STEVENJIANG@DESKTOP-T14QN27 ~/mshookpatch -
cannot wait to take a look
-
The latest THEOS (post 2017, April) no longer has preference bundle template? Instead, it is preference_bundle_modern Can I have some love on how to use this new one? At least it does not have .mm file that existing tutorial mentioned, or is there a template just for preference bundle? NIC 2.0 - New Instance Creator ------------------------------ [1.] iphone/activator_event [2.] iphone/application_modern [3.] iphone/cydget [4.] iphone/flipswitch_switch [5.] iphone/framework [6.] iphone/ios7_notification_center_widget [7.] iphone/library [8.] iphone/notification_center_widget [9.] iphone/preference_bundle_modern [10.] iphone/tool [11.] iphone/tweak [12.] iphone/xpc_service Choose a Template (required): 9
-
thanks for sharing
-
let me take a look
-
let's learn
-
I will answer myself so if anyone meet similar questions like I do, you can get some lights here. Still million appreciation to @arthurdapaz and @DiDA. Could not done this without your TuT and guide Q: NSLog, where to read and how? A: Install ondeviceconsole on Cydia, SSH in and run command Q: So how the code goes that make it works? #import <APMenu.h> #import <CoreFoundation/CoreFoundation.h> #import <substrate.h> #import <Foundation/Foundation.h> float (*orig_func)(void *self); float new_func(void *self) { float newValue = [mm getFloat:@"k05SimpleUiSlider"]; if (newValue) return newValue; else return orig_func(self); } %ctor { mm = [APMenu sharedInstance]; mp = [MemoryPatcher sharedInstance]; NSDictionary *hacks = @{ @"k05SimpleUiSlider":@{ @"type": @"modslider", @"typecfg": @{ @"minimumValue":@0, @"maximumValue":@99999 }, @"desc": @"God Power", @"label": @"Normal UI Slider" }, }; [mm init:hacks openAfter: 1 width: 260 maxVisibleToggles: 5 theme: rgb(0xbef7d9) title: @"MY GAME HACK" credits: @"Hack by ada1016. Thanks to DiDA n' shmoo for inspiration <3" creditsURL: nil gesture: APGestureThreeFingerTap onFirstLaunch:^{ [mm listenChanges:^(id sender) { if ([mm ismodtext:sender]) { UIKeyTextField *textField = (UIKeyTextField*) sender; NSString *key = textField.featureKey; float value = textField.text.floatValue; NSLog(@"Value of modtext %@: %f", key, value); } if ([mm ismodslider:sender]) { UIKeySlider *slider = (UIKeySlider*) sender; NSString *key = slider.featureKey; float value = slider.value; NSLog(@"Value of modslider %@: %f", key, value); } if ([mm ismodswitcher:sender]) { UIViewSwitcher *switcher = (UIViewSwitcher*) sender; NSString *key = switcher.featureKey; BOOL value = switcher.isOn; NSLog(@"Value of modslider %@: %d", key, value); } }]; MSHookFunction(MSFindSymbol(NULL,"_Equipment_get_Attack_m171674799"), (void*)new_func, (void**)&orig_func); NSLog(@"Initialized"); }]; }