首页
社区
课程
招聘
[求助]ios 12.2注入系统进程,导致进程挂掉
发表于: 2020-11-11 15:43 18208

[求助]ios 12.2注入系统进程,导致进程挂掉

2020-11-11 15:43
18208

uint64_t call_remote(mach_port_t task_port, void* fptr, int n_params, ...)

{

    if (n_params > MAX_REMOTE_ARGS || n_params < 0){

        NSLog(@"unsupported number of arguments to remote function (%d)\n", n_params);

        return 0;

    }

    

    kern_return_t err;

    

    uint64_t remote_stack_base = 0;

    uint64_t remote_stack_size = 4*1024*1024;

    

    remote_stack_base = remote_alloc(task_port, remote_stack_size);

    

    uint64_t remote_stack_middle = remote_stack_base + (remote_stack_size/2);

    

    // create a new thread in the target

    // just using the mach thread API doesn't initialize the pthread thread-local-storage

    // which means that stuff which relies on that will crash

    // we can sort-of make that work by calling _pthread_set_self(NULL) in the target process

    // which will give the newly created thread the same TLS region as the main thread

    

    

    _STRUCT_ARM_THREAD_STATE64 thread_state = {{0}};

    mach_msg_type_number_t thread_stateCnt = sizeof(thread_state)/4;

    

    // we'll start the thread running and call _pthread_set_self first:

    thread_state.__sp = remote_stack_middle;

    thread_state.__pc = (uint64_t)_pthread_set_self;

    

    // set these up to put us into a predictable state we can monitor for:

    uint64_t loop_lr = find_blr_x19_gadget();

    thread_state.__x[19] = loop_lr;

    thread_state.__lr = loop_lr;

    

    // set the argument to NULL:

    thread_state.__x[0] = 0;

    

    mach_port_t thread_port = MACH_PORT_NULL;

    

    err = thread_create_running(task_port, ARM_THREAD_STATE64, (thread_state_t)&thread_state, thread_stateCnt, &thread_port);

    if (err != KERN_SUCCESS){

        NSLog(@"error creating thread in child: %s\n", mach_error_string(err));

        return 0;

    }

    // NSLog(@"new thread running in child: %x\n", thread_port);

    

    // wait for it to hit the loop:

    while(1){

        // monitor the thread until we see it's in the infinite loop indicating it's done:

        err = thread_get_state(thread_port, ARM_THREAD_STATE64, (thread_state_t)&thread_state, &thread_stateCnt);

        if (err != KERN_SUCCESS){

            NSLog(@"error getting thread state: %s\n", mach_error_string(err));

            return 0;

        }

        

        if (thread_state.__pc == loop_lr && thread_state.__x[19] == loop_lr){

            // thread has returned from the target function

            break;

        }

    }


以上代码thread_create_running执行后被注入的进程会挂掉。

日志打印如下:


[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 50
能力值: ( LV1,RANK:0 )
在线值:
发帖
回帖
粉丝
2
你这个看的是coolstar的inject criticald代码吧,我最近也在研究ios13上面注入到launchd进程,
我逆向了odyssey越狱的注入工具,  最新的他不是用的pthread_set_self了, 而是用的pthread_create_from_mach_thread, 之前那个我测试也是有问题的各种崩溃。而且对于线程结束返回也不再用loop的方式了, 而是设置一个无效的lr, 然后捕获异常端口。  

不介意的话可以加我的越狱研究群703156427
2021-1-9 04:19
0
游客
登录 | 注册 方可回帖
返回
//