BIGBON 发表于 2019-10-13 07:25:00

iOS逆向之theos的使用

一、Theos是一个越狱开发工具包,是iOS逆向开发的开发工具。

步骤:

1、安装签名工具ldid

(1)先安装brew

```
$ /usr/bin/ruby -e "$(curl -fsSL
      https://raw.githubusercontent.com/Homebrew/install/master/install)"
```

(2)利用brew安装ldid
$ brew install ldid

2、修改环境变量

(1)编辑用户的配置文件

$ vim ~/.bash_profile .bash_profie 2

(2)在.bash_profile文件后面加入一下2行

```
      export THEOS=~/theos
      export PATH=$THEOS/bin:$PATH
```

(3)让.bash_profile配置的环境变量立即生效

.bash_profiel $ source ~/.bash_profile

3、下载theos

建议在$theos目录下载代码

```
$ git clone --recursive https://github.com/theos/theos.git $THEOS
```

4、新建tweak项目



5、简单的demo演示:



6、编译-打包-安装

(1)编译

​       make

(2) 打包成deb

​       make package

(3)安装(默认会自动重启SpringBoard)

​       make install

将图片全部清除



页: [1]
查看完整版本: iOS逆向之theos的使用