博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios命令开发环境
阅读量:6524 次
发布时间:2019-06-24

本文共 929 字,大约阅读时间需要 3 分钟。

1.写测试代码。

#include
#include
int main(int argc,char* argv[]){ printf("testios\n"); return 1;}

2.编译。

xcrun -sdk iphoneos clang -arch arm64 main.c -o testhook
3.签名我这里直接用自己的(做逆向时不要用自己的防被吊销)
file testhook
$testhook: Mach-O 64-bit executable arm64
4.查找证书。

haidragondeMacBook-Air:~ haidragon$ file testhook testhook: Mach-O 64-bit executable arm64haidragondeMacBook-Air:~ haidragon$ security find-identity -v -p codesigning  1) 3EBAD7EE1C26691217CF3D1E4485E6C44D15E52A "xxxxxxxxxxxxxxxxx"  2) E6EBDA70B2F2FD24AC69657B4ACE009E17C66BFB "xxxxxxxxxxxxxxxxx"     2 valid identities foundhaidragondeMacBook-Air:~ haidragon$ codesign --force --verify --verbose --sign  "xxxxxxxxxxxxxxxxx" ./testhook

ios命令开发环境

5.端口转发。
iproxy 4567 22
发到手机上 ssh -p 4567 root@127.0.0.1
修改成777 运行。

iPhone:/var root# chmod 777 ./testhook iPhone:/var root# ./testhook testiosiPhone:/var root#

转载于:https://blog.51cto.com/haidragon/2398212

你可能感兴趣的文章
hello SDL
查看>>
CodeForces Round 300 我是煞笔!
查看>>
linux(allInOne) linuxCommands
查看>>
Spring MVC 数据回显
查看>>
rem 响应 js函数
查看>>
Python实现二叉树的前序、中序、后序、层次遍历
查看>>
隐藏tabbar的方法,self.hidesBottomBarWhenPushed
查看>>
Beyond Compare比较图片怎么修改背景颜色
查看>>
Beyond Compare表格比较详解
查看>>
Ubuntu环境下安装nodejs和npm
查看>>
gcc 编译错误之Clock skew detected
查看>>
HTML4,HTML5,XHTML 之间有什么区别?
查看>>
世界是数字的1
查看>>
JAVA hashmap详解
查看>>
虚拟机联网
查看>>
深入IOS多线程 GCD(一)
查看>>
cgroup之cpu关键参数
查看>>
web项目目录结构
查看>>
1、SpringBoot+Mybatis整合------简单CRUD的实现
查看>>
方法装饰器(Decorator)
查看>>