CTF-All-In-One/doc/5.2.1_pin.md

473 lines
18 KiB
Markdown
Raw Normal View History

2018-03-24 18:51:04 +07:00
# 5.2.1 Pin 动态二进制插桩
2017-08-07 22:01:04 +07:00
- [插桩技术](#插桩技术)
2017-08-07 23:59:39 +07:00
- [Pin 简介](#pin-简介)
- [Pin 的基本用法](#pin-的基本用法)
- [Pintool 示例分析](#pintool-示例分析)
- [Pintool 编写](#pintool-编写)
- [Pin 在 CTF 中的应用](#pin-在-ctf-中的应用)
2017-08-16 23:05:33 +07:00
- [扩展Triton](#扩展triton)
2017-08-07 22:01:04 +07:00
## 插桩技术
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
插桩技术是将额外的代码注入程序中以收集运行时的信息,可分为两种:
源代码插桩Source Code Instrumentation(SCI)):额外代码注入到程序源代码中。
示例:
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
```c
// 原始程序
void sci() {
int num = 0;
for (int i=0; i<100; ++i) {
num += 1;
if (i == 50) {
break;
}
}
printf("%d", num);
}
```
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
```c
// 插桩后的程序
char inst[5];
void sci() {
int num = 0;
inst[0] = 1;
for (int i=0; i<100; ++i) {
num += 1;
inst[1] = 1;
if (i == 50) {
inst[2] = 1;
break;
}
inst[3] = 1;
}
printf("%d", num);
inst[4] = 1;
}
```
二进制插桩Binary Instrumentation(BI)):额外代码注入到二进制可执行文件中。
2018-08-05 16:43:10 +07:00
- 静态二进制插桩:在程序执行前插入额外的代码和数据,生成一个永久改变的可执行文件。
- 动态二进制插桩:在程序运行时实时地插入额外代码和数据,对可执行文件没有任何永久改变。
2017-08-07 22:01:04 +07:00
以上面的函数 `sci` 生成的汇编为例:
原始汇编代码
2018-08-05 16:43:10 +07:00
```text
2017-08-07 22:01:04 +07:00
sci:
2018-08-05 16:43:10 +07:00
pushl %ebp
movl %esp, %ebp
pushl %ebx
subl $20, %esp
call __x86.get_pc_thunk.ax
addl $_GLOBAL_OFFSET_TABLE_, %eax
movl $0, -16(%ebp)
movl $0, -12(%ebp)
jmp .L2
2017-08-07 22:01:04 +07:00
```
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
- 插入指令计数代码
2018-08-05 16:43:10 +07:00
```text
2017-08-07 22:01:04 +07:00
sci:
counter++;
2018-08-05 16:43:10 +07:00
pushl %ebp
2017-08-07 22:01:04 +07:00
counter++;
2018-08-05 16:43:10 +07:00
movl %esp, %ebp
2017-08-07 22:01:04 +07:00
counter++;
2018-08-05 16:43:10 +07:00
pushl %ebx
2017-08-07 22:01:04 +07:00
counter++;
2018-08-05 16:43:10 +07:00
subl $20, %esp
2017-08-07 22:01:04 +07:00
counter++;
2018-08-05 16:43:10 +07:00
call __x86.get_pc_thunk.ax
2017-08-07 22:01:04 +07:00
counter++;
2018-08-05 16:43:10 +07:00
addl $_GLOBAL_OFFSET_TABLE_, %eax
2017-08-07 22:01:04 +07:00
counter++;
2018-08-05 16:43:10 +07:00
movl $0, -16(%ebp)
2017-08-07 22:01:04 +07:00
counter++;
2018-08-05 16:43:10 +07:00
movl $0, -12(%ebp)
2017-08-07 22:01:04 +07:00
counter++;
2018-08-05 16:43:10 +07:00
jmp .L2
2017-08-07 22:01:04 +07:00
```
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
- 插入指令跟踪代码
2018-08-05 16:43:10 +07:00
```text
2017-08-07 22:01:04 +07:00
sci:
Print(ip)
2018-08-05 16:43:10 +07:00
pushl %ebp
2017-08-07 22:01:04 +07:00
Print(ip)
2018-08-05 16:43:10 +07:00
movl %esp, %ebp
2017-08-07 22:01:04 +07:00
Print(ip)
2018-08-05 16:43:10 +07:00
pushl %ebx
2017-08-07 22:01:04 +07:00
Print(ip)
2018-08-05 16:43:10 +07:00
subl $20, %esp
2017-08-07 22:01:04 +07:00
Print(ip)
2018-08-05 16:43:10 +07:00
call __x86.get_pc_thunk.ax
2017-08-07 22:01:04 +07:00
Print(ip)
2018-08-05 16:43:10 +07:00
addl $_GLOBAL_OFFSET_TABLE_, %eax
2017-08-07 22:01:04 +07:00
Print(ip)
2018-08-05 16:43:10 +07:00
movl $0, -16(%ebp)
2017-08-07 22:01:04 +07:00
Print(ip)
2018-08-05 16:43:10 +07:00
movl $0, -12(%ebp)
2017-08-07 22:01:04 +07:00
Print(ip)
2018-08-05 16:43:10 +07:00
jmp .L
2017-08-07 22:01:04 +07:00
```
## Pin 简介
2018-08-05 16:43:10 +07:00
2017-08-08 22:25:51 +07:00
Pin 是 Intel 公司研发的一个动态二进制插桩框架,可以在二进制程序运行过程中插入各种函数,以监控程序每一步的执行。[官网](https://software.intel.com/en-us/articles/pin-a-dynamic-binary-instrumentation-tool)(目前有 2.x 和 3.x 两个版本2.x 不能在 Linux 内核 4.x 及以上版本上运行,这里我们选择 3.x
2017-08-07 22:01:04 +07:00
2018-04-12 21:16:00 +07:00
Pin 具有以下优点:
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
- 易用
- 使用动态插桩,不需要源代码、不需要重新编译和链接。
- 可扩展
- 提供了丰富的 API可以使用 C/C++ 编写插桩工具(被叫做 Pintools
- 多平台
- 支持 x86、x86-64、Itanium、Xscale
- Windows、Linux、OSX、Android
- 鲁棒性
- 支持插桩现实世界中的应用:数据库、浏览器等
- 支持插桩多线程应用
- 支持信号量
- 高效
- 在指令代码层面实现编译优化
## Pin 的基本结构和原理
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
Pin 是一个闭源的框架,由 Pin 和 Pintool 组成。Pin 内部提供 API用户使用 API 编写可以由 Pin 调用的动态链接库形式的插件,称为 Pintool。
2018-08-05 16:43:10 +07:00
![img](../pic/5.2_pin_arch.png)
2017-08-07 22:01:04 +07:00
由图可以看出Pin 由进程级的虚拟机、代码缓存和提供给用户的插桩检测 API 组成。Pin 虚拟机包括 JIT(Just-In-Time) 编译器、模拟执行单元和代码调度三部分,其中核心部分为 JIT 编译器。当 Pin 将待插桩程序加载并获得控制权之后在调度器的协调下JIT 编译器负责对二进制文件中的指令进行插桩,动态编译后的代码即包含用户定义的插桩代码。编译后的代码保存在代码缓存中,经调度后交付运行。
程序运行时Pin 会拦截可执行代码的第一条指令并为后续指令序列生成新的代码新代码的生成即按照用户定义的插桩规则在原始指令的前后加入用户代码通过这些代码可以抛出运行时的各种信息。然后将控制权交给新生成的指令序列并在虚拟机中运行。当程序进入到新的分支时Pin 重新获得控制权并为新分支的指令序列生成新的代码。
2017-08-07 23:59:39 +07:00
通常插桩需要的两个组件都在 Pintool 中:
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
- 插桩代码Instrumentation code
- 在什么位置插入插桩代码
- 分析代码Analysis code
- 在选定的位置要执行的代码
Pintool 采用向 Pin 注册插桩回调函数的方式对每一个被插桩的代码段Pin 调用相应的插桩回调函数,观察需要产生的代码,检查它的静态属性,并决定是否需要以及插入分析函数的位置。分析函数会得到插桩函数传入的寄存器状态、内存读写地址、指令对象、指令类型等参数。
2017-08-07 23:59:39 +07:00
- **Instrumentation routines**:仅当事件第一次发生时被调用
- **Analysis routines**:某对象每次被访问时都调用
- **Callbacks**:无论何时当特定事件发生时都调用
2017-08-07 22:01:04 +07:00
2017-08-07 23:59:39 +07:00
## Pin 的基本用法
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
在 Pin 解压后的目录下,编译一个 Pintool首先在 `source/tools/` 目录中创建文件夹 `MyPintools`,将 `mypintool.cpp` 复制到 `source/tools/MyPintools` 目录下,然后 `make`
2018-08-05 16:43:10 +07:00
```text
2017-08-07 22:01:04 +07:00
$ cp mypintools.cpp source/tools/MyPintools
$ cd source/tools/MyPintools
```
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
对于 32 位架构,使用 `TARGET=ia32`
2018-08-05 16:43:10 +07:00
```text
2017-08-08 22:25:51 +07:00
[MyPintools]$ make obj-ia32/mypintool.so TARGET=ia32
2017-08-07 22:01:04 +07:00
```
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
对于 64 位架构,使用 `TARGET=intel64`
2018-08-05 16:43:10 +07:00
```text
2017-08-08 22:25:51 +07:00
[MyPintools]$ make obj-intel64/mypintool.so TARGET=intel64
2017-08-07 22:01:04 +07:00
```
启动并插桩一个应用程序:
2018-08-05 16:43:10 +07:00
```text
2017-08-08 22:25:51 +07:00
[MyPintools]$ ../../../pin -t obj-intel64/mypintools.so -- application
2017-08-07 22:01:04 +07:00
```
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
其中 `pin` 是插桩引擎,由 Pin 的开发者提供;`pintool.so` 是插桩工具,由用户自己编写并编译。
绑定并插桩一个正在运行的程序:
2018-08-05 16:43:10 +07:00
```text
2017-08-08 22:25:51 +07:00
[MyPintools]$ ../../../pin -t obj-intel64/mypintools.so -pid 1234
2017-08-07 22:01:04 +07:00
```
## Pintool 示例分析
2018-08-05 16:43:10 +07:00
2017-08-08 22:25:51 +07:00
Pin 提供了一些 Pintool 的示例,下面我们分析一下用户手册中介绍的指令计数工具,可以在 `source/tools/ManualExamples/inscount0.cpp` 中找到。
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
```c
#include <iostream>
#include <fstream>
#include "pin.H"
ofstream OutFile;
// The running count of instructions is kept here
// make it static to help the compiler optimize docount
static UINT64 icount = 0;
// This function is called before every instruction is executed
VOID docount() { icount++; }
// Pin calls this function every time a new instruction is encountered
VOID Instruction(INS ins, VOID *v)
{
// Insert a call to docount before every instruction, no arguments are passed
INS_InsertCall(ins, IPOINT_BEFORE, (AFUNPTR)docount, IARG_END);
}
KNOB<string> KnobOutputFile(KNOB_MODE_WRITEONCE, "pintool",
"o", "inscount.out", "specify output file name");
// This function is called when the application exits
VOID Fini(INT32 code, VOID *v)
{
// Write to a file since cout and cerr maybe closed by the application
OutFile.setf(ios::showbase);
OutFile << "Count " << icount << endl;
OutFile.close();
}
/* ===================================================================== */
/* Print Help Message */
/* ===================================================================== */
INT32 Usage()
{
cerr << "This tool counts the number of dynamic instructions executed" << endl;
cerr << endl << KNOB_BASE::StringKnobSummary() << endl;
return -1;
}
/* ===================================================================== */
/* Main */
/* ===================================================================== */
/* argc, argv are the entire command line: pin -t <toolname> -- ... */
/* ===================================================================== */
int main(int argc, char * argv[])
{
// Initialize pin
if (PIN_Init(argc, argv)) return Usage();
OutFile.open(KnobOutputFile.Value().c_str());
// Register Instruction to be called to instrument instructions
INS_AddInstrumentFunction(Instruction, 0);
// Register Fini to be called when the application exits
PIN_AddFiniFunction(Fini, 0);
// Start the program, never returns
PIN_StartProgram();
return 0;
}
```
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
执行流程如下:
2018-08-05 16:43:10 +07:00
2017-08-07 22:01:04 +07:00
- 在主函数 `main` 中:
- 初始化 `PIN_Init()`,注册指令粒度的回调函数 `INS_AddInstrumentFunction(Instruction, 0)`,被注册插桩函数名为 `Instruction`
- 注册完成函数(常用于最后输出结果)
- 启动 Pin 执行
- 在每条指令之前(`IPOINT_BEFORE`)执行分析函数 `docount()`,功能是对全局变量递增计数。
- 执行完成函数 `Fini()`,输出计数结果到文件。
2017-11-23 13:44:22 +07:00
由于我当前使用的系统和内核版本过新Pin 暂时还未支持,使用时需要加上 `-ifeellucky` 参数(在最新的 pin 3.5 中似乎不需要这个参数了),`-o` 参数将运行结果输出到文件。运行程序:
2018-08-05 16:43:10 +07:00
```text
2017-08-08 22:25:51 +07:00
[ManualExamples]$ uname -a
Linux manjaro 4.11.5-1-ARCH #1 SMP PREEMPT Wed Jun 14 16:19:27 CEST 2017 x86_64 GNU/Linux
[ManualExamples]$ ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount0.log -- /bin/ls
[ManualExamples]$ cat inscount0.log
Count 528090
```
2018-04-29 21:21:55 +07:00
其它一些自带插件及功能如下:
| 插件名 | 功能 |
| -- | --- |
| inscount | 统计执行的指令数量,输出到 inscount.out 文件 |
| itrace | 记录执行指令的 eip |
| malloctrace | 记录 malloc 和 free 的调用情况 |
| pinatrace | 记录读写内存的位置和值 |
| proccount | 统计 Procedure 的信息,包括名称、镜像、地址、指令数 |
| w_malloctrace | 记录 RtlAllocateHeap 的调用情况 |
2017-08-07 22:01:04 +07:00
## Pintool 编写
2018-08-05 16:43:10 +07:00
### main 函数的编写
2017-08-07 23:59:39 +07:00
Pintool 的入口为 `main` 函数,通常需要完成下面的功能:
2018-08-05 16:43:10 +07:00
2017-08-07 23:59:39 +07:00
- 初始化 Pin 系统环境:
- `BOOL LEVEL_PINCLIENT::PIN_Init(INT32 argc, CHAR** argv)`
- 初始化符号表(如果需要调用程序符号信息,通常是指令粒度以上):
- `VOID LEVEL_PINCLIENT::PIN_InitSymbols()`
- 初始化同步变量:
- Pin 提供了自己的锁和线程管理 API 给 Pintool 使用。当 Pintool 对多线程程序进行二进制检测,需要用到全局变量时,需要利用 Pin 提供的锁Lock机制使得全局变量的访问互斥。编写时在全局变量中声明锁变量并在 `main` 函数中对锁进行初始化:`VOID LEVEL_BASE::InitLock(PIN_LOCK *lock)`。在插桩函数和分析函数中,锁的使用方式如下,应注意在全局变量使用完毕后释放锁,避免死锁的发生:
2018-08-05 16:43:10 +07:00
```text
2017-08-07 23:59:39 +07:00
GetLock(&thread_lock, threadid);
// 访问全局变量
ReleaseLock(&thread_lock);
```
2018-08-05 16:43:10 +07:00
2017-08-07 23:59:39 +07:00
- 注册不同粒度的回调函数:
- TRACE轨迹粒度
2018-04-29 21:21:55 +07:00
- TRACE 表示一个单入口、多出口的指令序列的数据结构。Pin 将 TRACE 分为若干基本块 BBLBasic Block一个 BLL 是一个单入口、单出口的指令序列。TRACE 在指令发生跳转时进行插入,进一步进行基本块分析,常用于记录程序执行序列。注册 TRACE 粒度插桩函数原型为:
2018-08-05 16:43:10 +07:00
```text
2017-08-07 23:59:39 +07:00
TRACE_AddInstrumentFunction(TRACE_INSTRUMENT_CALLBACK fun, VOID *val)
```
- IMG镜像粒度
- IMG 表示整个被加载进内存的二进制可执行模块(如可执行文件、动态链接库等)类型的数据结构。每次被插桩进程在执行过程中加载了镜像类型文件时,就会被当做 IMG 类型处理。注册插桩 IMG 粒度加载和卸载的函数原型:
2018-08-05 16:43:10 +07:00
```text
2017-08-07 23:59:39 +07:00
IMG_AddInstrumentFunction(IMAGECALLBACK fun, VOID *v)
IMG_AddUnloadFunction(IMAGECALLBACK fun, VOID *v)
```
- RTN例程粒度
2018-04-29 21:21:55 +07:00
- RTN 代表了由面向过程程序语言编译器产生的函数例成过程。Pin 使用符号表来查找例程,即需要插入的位置,需要调用内置的初始化表函数 `PIN_InitSymbols()`。必须使用 `PIN_InitSymbols` 使得符号表信息可用。插桩 RTN 粒度函数原型:
2018-08-05 16:43:10 +07:00
```text
2017-08-07 23:59:39 +07:00
RTN_AddInstrumentFunction(RTN_INSTRUMENT_CALLBACK fun, VOID *val)
```
- INS指令粒度
2018-04-29 21:21:55 +07:00
- INS 代表一条指令对应的数据结构INS 是最小的粒度。INS 的代码插桩是在指令执行前、后插入附加代码,会导致程序执行缓慢。插桩 INS 粒度函数原型:
2018-08-05 16:43:10 +07:00
```text
2017-08-07 23:59:39 +07:00
INS_AddInstrumentFunction(INS_INSTRUMENT_CALLBACK fun, VOID *val)
```
- 注册结束回调函数
- 插桩程序运行结束时,可以调用结束函数来释放不再使用的资源,输出统计结果等。注册结束回调函数:
2018-08-05 16:43:10 +07:00
```text
2017-08-07 23:59:39 +07:00
VOID PIN_AddFiniFunction(FINI_CALLBACK fun, VOID *val)
```
2018-08-05 16:43:10 +07:00
2017-08-07 23:59:39 +07:00
- 启动 Pin 虚拟机进行插桩:
- 最后调用 `VOID PIN_StartProgram()` 启动程序的运行。
2018-08-05 16:43:10 +07:00
### 插桩、分析函数的编写
2017-08-07 23:59:39 +07:00
`main` 函数中注册插桩回调函数后Pin 虚拟机将在运行过程中对该种粒度的插桩函数对象选择性的进行插桩。所谓选择性,就是根据被插桩对象的性质和条件,选择性的提取或修改程序执行过程中的信息。
各种粒度的插桩函数:
2018-08-05 16:43:10 +07:00
2017-08-07 23:59:39 +07:00
- **INS**
- `VOID LEVEL_PINCLIENT::INS_InsertCall(INS ins, IPOINT action, AFUNPTR funptr, ...)`
- **RTN**
- `VOID LEVEL_PINCLIENT::RTN_InsertCall(RTN rtn, IPOINT action, AFUNPTR funptr, ...)`
- **TRACE**
- `VOID LEVEL_PINCLIENT::TRACE_InsertCall(TRACE trace, IPOINT action, AFUNPTR funptr, ...)`
- **BBL**
- `VOID LEVEL_PINCLIENT::BBL_InsertCall(BBL bbl, IPOINT action, AFUNPTR funptr, ...)`
其中 `funptr` 为用户自定义的分析函数,函数参数与 `...` 参数列表传入的参数个数相同,参数列表以 `IARG_END` 标记结束。
2017-08-07 22:01:04 +07:00
## Pin 在 CTF 中的应用
2018-08-05 16:43:10 +07:00
2017-08-08 22:25:51 +07:00
由于程序具有循环、分支等结构,每次运行时执行的指令数量不一定相同,于是我们可是使用 Pin 来统计执行指令的数量,从而对程序进行分析。特别是对一些使用特殊指令集和虚拟机,或者运用了反调试等技术的程序来说,相对于静态分析去死磕,动态插桩技术是一个比较好的选择。
2018-04-29 21:21:55 +07:00
我们先举一个例子,[源码](../src/others/5.2_pin/passwd.c)如下:
2018-08-05 16:43:10 +07:00
2017-08-08 22:25:51 +07:00
```c
#include<stdio.h>
#include<string.h>
void main() {
2017-11-21 16:11:08 +07:00
char pwd[] = "abc123";
char str[128];
int flag = 1;
scanf("%s", str);
for (int i=0; i<=strlen(pwd); i++) {
if (pwd[i]!=str[i] || str[i]=='\0'&&pwd[i]!='\0' || str[i]!='\0'&&pwd[i]=='\0') {
flag = 0;
}
}
if (flag==0) {
printf("Bad!\n");
} else {
printf("Good!\n");
}
2017-08-08 22:25:51 +07:00
}
```
2018-08-05 16:43:10 +07:00
2017-08-08 22:25:51 +07:00
这段代码要求用户输入密码,然后逐字符进行判断。
使用前面分析的指令计数的 inscount0 Pintool我们先测试下密码的长度
2018-08-05 16:43:10 +07:00
```text
2017-08-08 22:25:51 +07:00
[ManualExamples]$ echo x | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152667
[ManualExamples]$ echo xx | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152688
[ManualExamples]$ echo xxx | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152709
[ManualExamples]$ echo xxxx | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152730
[ManualExamples]$ echo xxxxx | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152751
[ManualExamples]$ echo xxxxxx | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152772
[ManualExamples]$ echo xxxxxxx | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152779
```
2018-08-05 16:43:10 +07:00
2017-08-08 22:25:51 +07:00
我们输入的密码位数从 1 到 7可以看到输入位数为 6 位或更少时,计数值之差都是 21而输入 7 位密码时,差值仅为 7不等于 21。于是我们知道程序密码为 6 位。接下来我们更改密码的第一位:
2018-08-05 16:43:10 +07:00
```text
2017-08-08 22:25:51 +07:00
[ManualExamples]$ echo axxxxx | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152786
[ManualExamples]$ echo bxxxxx | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152772
[ManualExamples]$ echo cxxxxx | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152772
[ManualExamples]$ echo dxxxxx | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152772
```
2018-08-05 16:43:10 +07:00
2017-08-08 22:25:51 +07:00
很明显,程序密码第一位是 `a`,接着尝试第二位:
2018-08-05 16:43:10 +07:00
```text
2017-08-08 22:25:51 +07:00
[ManualExamples]$ echo aaxxxx | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152786
[ManualExamples]$ echo abxxxx | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152800
[ManualExamples]$ echo acxxxx | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152786
[ManualExamples]$ echo adxxxx | ../../../pin -ifeellucky -t obj-intel64/inscount0.so -o inscount.out -- ~/a.out ; cat inscount.out
Bad!
Count 152786
```
2018-08-05 16:43:10 +07:00
2017-08-08 22:25:51 +07:00
第二位是 `b`,同时我们还可以发现,每一位正确与错误的指令计数之差均为 14。同理我们就可以暴力破解出密码但这种暴力破解方式大大减少了次数提高了效率。破解脚本可查看参考资料。
2018-08-05 16:43:10 +07:00
### 参考资料
2017-08-08 23:09:42 +07:00
- [A binary analysis, count me if you can](http://shell-storm.org/blog/A-binary-analysis-count-me-if-you-can/)
- [pintool2](https://github.com/sebastiendamaye/pintool2)
2017-11-23 13:44:22 +07:00
- [Pin 3.5 User Guide](https://software.intel.com/sites/landingpage/pintool/docs/97503/Pin/html/)
2017-08-08 22:25:51 +07:00
2017-08-16 23:05:33 +07:00
## 扩展Triton
2018-08-05 16:43:10 +07:00
2017-08-16 23:05:33 +07:00
Triton 是一个二进制执行框架,其具有两个重要的优点,一是可以使用 Python 调用 Pin二是支持符号执行。[官网](https://triton.quarkslab.com/)