Xcode集成O-LLVM

获取O-LLVM源码

$ git clone -b llvm-4.0 https://github.com/obfuscator-llvm/obfuscator.git
$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=Release ../obfuscator/
$ make -j7

要在Xcode中使用O-LLVM,必须要编写一个Xcode插件。

首先

$ cd /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/
$ sudo cp -r Clang\ LLVM\ 1.0.xcplugin/ Obfuscator.xcplugin
$ cd Obfuscator.xcplugin/Contents/
$ sudo plutil -convert xml1 Info.plist
$ sudo vim Info.plist

更改

com.apple.compilers.clang -> com.apple.compilers.obfuscator
Clang LLVM 1.0 Compiler Xcode Plug-in -> Obfuscator Xcode Plug-in

不懂vim操作的同学请自行百度。

然后:

$ sudo plutil -convert binary1 Info.plist
$ cd Resources/
$ sudo mv Clang\ LLVM\ 1.0.xcspec Obfuscator.xcspec
$ sudo vim Obfuscator.xcspec

更改:

Description
Apple LLVM 8.0 compiler -> Obfuscator 4.0 compiler
ExecPath
clang -> /path/to/obfuscator_bin/clang
Identifier
com.apple.compilers.llvm.clang.1_0 -> com.apple.compilers.llvm.obfuscator.4_0
Name
Apple LLVM 8.0 -> Obfuscator 4.0
Vendor
Apple -> HEIG-VD
Version
7.0 -> 4.0

然后:

$ cd English.lproj/
$ sudo mv Apple\ LLVM\ 5.1.strings "Obfuscator 3.4.strings"
$ sudo plutil -convert xml1 Obfuscator\ 3.4.strings
$ sudo vim Obfuscator\ 3.4.strings 

更改:

Description
Apple LLVM 8.0 compiler -> Obfuscator 4.0 compiler
Name
Apple LLVM 8.0 -> Obfuscator 4.0
Vendor
Apple -> HEIG-VD
Version
7.0 -> 4.0

然后:

$ sudo plutil -convert binary1 Obfuscator\ 3.4.strings

完成以上操作后重启Xcode,然后随便打开一个project,在Build Settings中更换新的编译器:

Xcode集成O-LLVM_第1张图片
image.png

将默认的编译器选项更换成Obfuscator 4.0(当然,根据你们git-clone下来的版本为准)。

然后
我们可以添加你想要的混淆方式的标志

Xcode集成O-LLVM_第2张图片
image.png

目前O-LLVM提供的方式有三种,分别是
指令替换 -mllvm -sub
控制流伪造 -mllvm -bcf
控制流平展 -mllvm -fla

具体的替换模式请查阅官方WIKI

你可能感兴趣的:(Xcode集成O-LLVM)