iOS Reverse - (2) Theos introduction, installation and usage
1.Introduction
Theos is a jailbreak development tool written and shared on GitHub by a friend, Dustin Howett (@DHowett). Compared with other jailbreak development tools, Theos’ greatest feature is simplicity: It’s simple to download, install, compile and publish; the built-in Logos syntax is simple to understand. It greatly reduces our work besides coding.
Additionally, iOSOpenDev, which runs as a plugin of Xcode is another frequently used tool in jailbreak development, developers who are familiar with Xcode may feel more interested in this tool, which is more integrated than Theos. But, reverse engineering deals with low-level knowledge a lot, most of the work can’t be done automatically by tools, it’d be better for you to get used to a less integrated environment. Therefore I strongly recommend Theos, when you use it to finish one practice after another, you will definitely gain a deeper understanding of iOS reverse engineering.
2.Install and configure Theos
2.1 Install Xcode and Command Line Tools
Most iOS developers have already installed Xcode, which contains Command Line Tools. For those who don’t have Xcode yet, please download it from Mac AppStore for free. If two or more Xcodes have been installed already, one Xcode should be specified as “active” by “xcode- select”, Theos will use this Xcode by default. For example, if 3 Xcodes have been installed on your Mac, namely Xcode1.app, Xcode2.app and Xcode3.app, and you want to specify Xcode3 as active, please use the following command:
1 | snakeninnys-MacBook:~ snakeninny$ sudo xcode-select -s /Applications/Xcode3.app/Contents/Developer |
2.2 Download Theos
Download Theos from GitHub using the following commands:
1 | snakeninnysiMac:~ snakeninny$ export THEOS=/opt/theos |
2.3 Configure ldid
ldid is a tool to sign iOS executables; it replaces codesign from Xcode in jailbreak
development. Download it from http://joedj.net/ldid to “/opt/theos/bin/”, then grant it execute permission using the following command:
1 | snakeninnysiMac:~ snakeninny$ sudo chmod 777 /opt/theos/bin/ldid |
2.4 Configure CydiaSubstrate
First run the auto-config script in Theos:
1 | snakeninnysiMac:~ snakeninny$ sudo /opt/theos/bin/bootstrap.sh substrate Password: |
Here we’ll meet a bug that Theos cannot generate a working libsubstrate.dylib, which requires our manual fixes. Piece of cake: first search and install CydiaSubstrate in Cydia, as shown in figure below.
Then copy “/Library/Frameworks/CydiaSubstrate.framework/CydiaSubstrate” on iOS to somewhere on OSX such as the desktop using iFunBox or scp. Rename it libsubstrate.dylib and copy it to “/opt/theos/lib/libsubstrate.dylib” to replace the invalid file.
2.5 Configure dpkg-deb
The standard installation package format in jailbreak development is deb, which can be
manipulated by dpkg-deb. Theos uses dpkg-deb to pack projects to debs. Download dm.pl from
https://raw.githubusercontent.com/DHowett/dm.pl/master/dm.pl, rename it dpkg-deb and move it to “/opt/theos/bin/”, then grant it execute permission using the following command:
1 | snakeninnysiMac:~ snakeninny$ sudo chmod 777 /opt/theos/bin/dpkg-deb |
2.6 Configure Theos NIC templates
It is convenient for us to create various Theos projects because Theos NIC templates have 5
different Theos project templates. You can also get 5 extra templates from https://github.com/DHowett/theos-nic-templates/archive/master.zip and put the 5 extracted .tar files under “/opt/theos/templates/iphone/”. Some default values of NIC can be customized, please refer to http://iphonedevwiki.net/index.php/NIC#How_to_set_default_values.
There are extra 5 templates here. https://github.com/DHowett/theos-nic-templates/archive/master.zip
Copy the extra 5 templates to /opt/theos/templates/iphone/
3. The use of theos
3.1 Create Theos project
Change Theos’ working directory to whatever you want (like mine is “/User/VictorZhang/Documents/iOS/Projects/theos/”), and then enter /opt/theos/bin/nic.pl
to start NIC (New Instance Creator), as follows:
3.2 A simple theos project
That is t will alert and UIAlertView when every launching; Here we select nineth template
1 | 1) Chose “9” to create a tweak project: |
After these 5 simple steps, a folder named iosregreetings is created in the current directory, which contains the tweak project we just created.
Then effect 1
3.3 Modify Makefile file
The project files, frameworks and libraries are all specified in Makefile, making the whole compile process automatic. The Makefile of iOSREGreetings is shown as follows:
1 | export THEOS_DEVICE_IP = 10.18.136.168 ## The specifies IP's device will be installed this project |
3.4 Modify Tweak.xm file
1 | %hook SpringBoard |
Tweak.xm file is written by Logos language. Full Explanation of Logos http://iphonedevwiki.net/index.php/Logos?spm=5176.100239.blogcont60056.5.JsFRmA
The commonly usage as shown below
1 | %hook Indicates that what class name you want to hook ,with ending of %end |
3.5 Modify control file
1 | Package: com.victor.iosregreetings |
The control file contains the basis of infomations of deb package manager, including: Package Identifier, Project Name, Depends, Version, Architecture, Description, Author and Homepage etc.
3.6 Make, package and install
1 | cd iOSReGreetings/ |
make package install
is a combination command of make
, make package
and make install
While installing , the Terminal will ask for twice SSH password, don’t worry, it’s normal conditions.
When installed completely, iPhone will launch automatically.
NOTE THAT: Do not unlock your iPhone, just press home button once so that the screen will light, and you’ll see the figure as shown below.
And then , unlock your iPhone, open Cydian, you’ll see the iOSREGreetings app as shown in figure below.
3.7 clean command
make clean # It will clean the current directory’s packaged files
rm .deb # It will remove the current directory’s .deb packages