This commit is contained in:
firmianay 2017-08-17 00:05:33 +08:00
parent bb403d3303
commit be37996a10
4 changed files with 17 additions and 0 deletions

View File

@ -34,6 +34,10 @@
- [3.1 Reverse](doc/3.1_reverse.md)
- [3.2 Crypto](doc/3.2_crypto.md)
- [3.3 Pwn](doc/3.3_pwn.md)
- [3.3.1 格式化字符串漏洞](doc/3.3.1_format_string.md)
- [3.3.2 整数溢出](doc/3.3.2_integer_overflow.md)
- [3.3.3 栈溢出](doc/3.3.3_stack_overflow.md)
- [3.3.4 堆溢出](doc/3.3.4_heap_overflow.md)
- [3.4 Web](doc/3.4_web.md)
- [3.5 Misc](doc/3.5_misc.md)
- [3.6 Mobile](doc/3.6_mobile.md)

View File

@ -33,6 +33,10 @@
* [3.1 Reverse](doc/3.1_reverse.md)
* [3.2 Crypto](doc/3.2_crypto.md)
* [3.3 Pwn](doc/3.3_pwn.md)
* [3.3.1 格式化字符串漏洞](doc/3.3.1_format_string.md)
* [3.3.2 整数溢出](doc/3.3.2_integer_overflow.md)
* [3.3.3 栈溢出](doc/3.3.3_stack_overflow.md)
* [3.3.4 堆溢出](doc/3.3.4_heap_overflow.md)
* [3.4 Web](doc/3.4_web.md)
* [3.5 Misc](doc/3.5_misc.md)
* [3.6 Mobile](doc/3.6_mobile.md)

View File

@ -3,6 +3,10 @@
- [3.1 Reverse](3.1_reverse.md)
- [3.2 Crypto](3.2_crypto.md)
- [3.3 Pwn](3.3_pwn.md)
- [3.3.1 格式化字符串漏洞](3.3.1_format_string.md)
- [3.3.2 整数溢出](3.3.2_integer_overflow.md)
- [3.3.3 栈溢出](3.3.3_stack_overflow.md)
- [3.3.4 堆溢出](3.3.4_heap_overflow.md)
- [3.4 Web](3.4_web.md)
- [3.5 Misc](3.5_misc.md)
- [3.6 Mobile](3.6_mobile.md)

View File

@ -6,6 +6,7 @@
- [Pintool 示例分析](#pintool-示例分析)
- [Pintool 编写](#pintool-编写)
- [Pin 在 CTF 中的应用](#pin-在-ctf-中的应用)
- [扩展Triton](#扩展triton)
## 插桩技术
@ -422,3 +423,7 @@ Count 152786
- [Reverse 400 - Hack You 2014](../src/Reverse/5.2_reverse_400)
- [wyvern 500 - CSAW CTF 2015](../src/Reverse/5.2_wyvern_500)
- [rev100 - th3jackers CTF 2015](../src/Reverse/5.2_th3jackers_100)
## 扩展Triton
Triton 是一个二进制执行框架,其具有两个重要的优点,一是可以使用 Python 调用 Pin二是支持符号执行。[官网](https://triton.quarkslab.com/)