This commit is contained in:
firmianay 2017-08-12 00:37:06 +08:00
parent d034ab3f83
commit 27ed5d6872
5 changed files with 21 additions and 12 deletions

View File

@ -11,25 +11,30 @@
##### 目录结构 ##### 目录结构
``` ```
. .
.
├── CONTRIBUTION.md ├── CONTRIBUTION.md
├── doc ├── doc
│   ├── 1.1_ctf.md │   ├── 1.1_ctf.md
│   └── 6_appendix.md
├── LICENSE ├── LICENSE
├── pic ├── pic
│   ├── 1.3_byte_order.png │   ├── 1.3_byte_order.png
│   └── 5.2_pin_arch.png
├── README.md ├── README.md
── src ── src
├── Crypto │   ├── Others
├── Misc │   │   ├── 1.5.7_stack.c
├── Pwn │   │   └── 5.2_pin.c
── Reverse │   └── Reverse
│   ├── flag_pwnablekr │   ├── 5.2_baleful
├── Web │   └── xxd_crackme
└── Others └── SUMMARY.md
``` ```
- `LICENSE`:贡献协议。 - `LICENSE`:贡献协议。
- `README.md`:自述文件。 - `README.md`:自述文件。
- `CONTRIBUTION.md`:合作与贡献的相关内容。 - `CONTRIBUTION.md`:合作与贡献的相关内容。
- `SUMMARY.md`gitbook 目录结构。
- `doc`:该文件夹包含书全部内容的 Markdown 文件。(文字) - `doc`:该文件夹包含书全部内容的 Markdown 文件。(文字)
- `pic`:该文件夹包含所有 Markdown 中引用的所有图片文件。(图片) - `pic`:该文件夹包含所有 Markdown 中引用的所有图片文件。(图片)
- `src`:该文件夹包含书中示例和练习的二进制文件或源代码,分专题保存。(代码) - `src`:该文件夹包含书中示例和练习的二进制文件或源代码,分专题保存。(代码)

View File

@ -2,7 +2,7 @@
- [一、基础知识篇](doc/1_basic.md) - [一、基础知识篇](doc/1_basic.md)
- [1.1 ctf 介绍](doc/1.1_ctf.md) - [1.1 ctf 介绍](doc/1.1_ctf.md)
- [1.2 提问的智慧](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way) - [1.2 提问的智慧](doc/1.2_smart_ask.md)
- [1.3 Linux 基础](doc/1.3_linux_basic.md) - [1.3 Linux 基础](doc/1.3_linux_basic.md)
- [1.4 Web 安全基础](doc/1.4_web_basic.md) - [1.4 Web 安全基础](doc/1.4_web_basic.md)
- [1.5 逆向工程基础](doc/1.5_reverse_basic.md) - [1.5 逆向工程基础](doc/1.5_reverse_basic.md)
@ -50,7 +50,7 @@
- [6.2 更多 Windows 工具](doc/6.2_wintools.md) - [6.2 更多 Windows 工具](doc/6.2_wintools.md)
- [6.3 博客、文章和书籍](doc/6.3_books&blogs.md) - [6.3 博客、文章和书籍](doc/6.3_books&blogs.md)
- [6.4 习题 write-up](doc/6.4_writeup.md) - [6.4 习题 write-up](doc/6.4_writeup.md)
- [6.5 Linux x86-64 系统调用表](http://blog.rchapman.org/posts/Linux_System_Call_Table_for_x86_64/) - [6.5 Linux x86-64 系统调用表](doc/6.5_syscall.md)
合作和贡献 合作和贡献

View File

@ -3,7 +3,7 @@
* [简介](README.md) * [简介](README.md)
* [一、基础知识篇](doc/1_basic.md) * [一、基础知识篇](doc/1_basic.md)
* [1.1 ctf 介绍](doc/1.1_ctf.md) * [1.1 ctf 介绍](doc/1.1_ctf.md)
* [1.2 提问的智慧](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way) * [1.2 提问的智慧](doc/1.2_smart_ask.md)
* [1.3 Linux 基础](doc/1.3_linux_basic.md) * [1.3 Linux 基础](doc/1.3_linux_basic.md)
* [1.4 Web 安全基础](doc/1.4_web_basic.md) * [1.4 Web 安全基础](doc/1.4_web_basic.md)
* [1.5 逆向工程基础](doc/1.5_reverse_basic.md) * [1.5 逆向工程基础](doc/1.5_reverse_basic.md)
@ -46,4 +46,4 @@
* [6.2 更多 Windows 工具](doc/6.2_wintools.md) * [6.2 更多 Windows 工具](doc/6.2_wintools.md)
* [6.3 博客、文章和书籍](doc/6.3_books&blogs.md) * [6.3 博客、文章和书籍](doc/6.3_books&blogs.md)
* [6.4 习题 write*up](doc/6.4_writeup.md) * [6.4 习题 write*up](doc/6.4_writeup.md)
* [6.5 Linux x86*64 系统调用表](http://blog.rchapman.org/posts/Linux_System_Call_Table_for_x86_64/) * [6.5 Linux x86-64 系统调用表](doc/6.5_syscall.md)

2
doc/1.2_smart_ask.md Normal file
View File

@ -0,0 +1,2 @@
# 提问的智慧
https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way

2
doc/6.5_syscall.md Normal file
View File

@ -0,0 +1,2 @@
# Linux x86-64 系统调用表
http://blog.rchapman.org/posts/Linux_System_Call_Table_for_x86_64/