AloneMonkey / MonkeyDev

CaptainHook Tweak、Logos Tweak and Command-line Tool、Patch iOS Apps, Without Jailbreak.
GNU General Public License v3.0
6.46k stars 1.16k forks source link

logos twaek deb installation crashes #347

Open CHJ1906 opened 11 months ago

CHJ1906 commented 11 months ago

I use the Logos tweak plugin for Hook, After the app installs the deb, it will crash directly without any error But when I run directly through Xcode directly on the phone, xcode will appear these errors `

0 0x00000001039a5d7c in ARCLiteload() at /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot2/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-76/source/arclite.mm:1740`

`

1 0x00000001afb02660 in load_images ()

37 0x0000000102f0d038 in _dyld_start ()

`

control

Package: com.test1.hook
Name: Demo Hook
Depends: mobilesubstrate
Architecture: iphoneos-arm
Description: Hook the viewDidLoad method in _TtC9Hooktest14ViewController class
Maintainer: yyy Name
Author: yyyy Name
Section: Tweaks
Version: 1.0

The original code is using swift After the hopper comes out, the target func is as follows

/* @class _TtC9Hooktest14ViewController */

-(void)buttonforhook:(void *)arg2 {
    [self retain];
    Swift._bridgeAnyObjectToAny();
    r0 = sub_1000076c0(0x100011a40);
    r0 = swift_allocObject(r0, 0x40, 0x7);
    r8 = *type metadata for Swift.String;
    *(int128_t *)(r0 + 0x10) = *0x100009b40;
    *(r0 + 0x38) = r8;
    *(int128_t *)(r0 + 0x20) = 0x2073692073696854;
    *(int128_t *)(r0 + 0x28) = 0xef6b6f6f68206f6e;
    Swift.print();
    swift_release(r19);
    sub_1000076fc(&stack[-64]);
    [r20 release];
    return;
}

hook.xm

#import <UIKit/UIKit.h>

%hook _TtC9Hooktest14ViewController

-(void)buttonforhook:(void *)arg2 {

    NSLog(@"Hook成功");
    %orig;
}
%end

target phone iphone11pro ios 14.6 JB unc0ver Can someone help me please