forked from ctf-wiki/ctf-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
161 lines (153 loc) · 4.7 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# Project Information
site_name: CTF Tools
site_description: CTF 军火库
site_author: CTF Wiki Team
site_url: https://ctf-wiki.github.io/ctf-tools/
# Repository
repo_name: 'ctf-wiki/ctf-tools'
repo_url: 'https://github.com/ctf-wiki/ctf-tools'
edit_uri: 'blob/master/docs/'
# Copyright
copyright: 'Copyright © 2016 - 2018 CTF Wiki Team'
# Contents
pages:
# - CTF Tools:
# - Getting started 开始使用: index.md
# - Collections 工具合集: collections.md
# - Environment 环境配置: environment.md
# - Misc 杂项: misc.md
# - Crypto 密码学: crypto.md
# - Reverse 逆向工程: reverse.md
# - Pwn 二进制漏洞挖掘: pwn.md
# - Web 网站应用: web.md
# - Papers 会议: papers.md
# - Web Tools:
# - Basic Tools:
# - Wireshark: web_tools/wireshark.md
# - Burp Suite: web_tools/burpsuite.md
# - Fiddler: web_tools/fiddle.md
- Binary Core Tools:
# - File Structure:
# - 010 Editor: binary_core_tools/file_structure/010editor.md
# - Debugger:
# - IDA: binary_core_tools/debugger/ida.md
- Instrumentation:
- Intel pin: binary_core_tools/instrumentation/intel_pin.md
- Virtualization:
- qemu:
- qemu 介绍: binary_core_tools/virtualization/qemu/qemu-introduction.md
- qemu 安装与调试: binary_core_tools/virtualization/qemu/qemu-install-and-debug.md
- qemu 细节: binary_core_tools/virtualization/qemu/qemu-internals.md
# - Windows Binary:
# - Disassembler and Decomplier:
# - IDA: windows_binary_related/disassembler_and_decomplier/ida.md
# - Radare2/Cutter: windows_binary_related/disassembler_and_decomplier/radare2_and_cutter.md
# - Hopper: windows_binary_related/disassembler_and_decomplier/hopper.md
# - Debugger:
# - OllyDbg: windows_binary_related/debugger/ollydbg.md
# - WinDbg: windows_binary_related/debugger/windbg.md
# - x32/x64 Debugger: windows_binary_related/debugger/x32_x64_debugger.md
# - Immunity Debugger: windows_binary_related/debugger/immunity_debugger.md
# - Cheat Engine: windows_binary_related/debugger/cheat_engine.md
# - PE工具类:
# - ExeInfo: windows_binary_related/PE工具类/exeinfo.md
# - PEiD: windows_binary_related/PE工具类/importrec.md
# - DIE:
# - ImportREC: unfinished.md
# - Lord PE: unfinished.md
# - Stud_PE: unfinished.md
# - .NET类:
# - dnSpy: unfinished.md
# - de4dot: unfinished.md
# - 系统工具:
# - procexp: unfinished.md
# - procmon: unfinished.md
# - Linux Binary:
# - Basic Tools:
# - gdb, 以及各种插件: unfinished.md
# - pwntools: unfinished.md
# - linux-inject: unfinished.md
# - Android:
# - 开发:
# - Android Studio: unfinished.md
# - DDMS: unfinished.md
# - 基本工具:
# - Android 逆向助手/Android Crack Tool: unfinished.md
# - 反编译:
# - jadx: unfinished.md
# - GDA: unfinished.md
# - jeb: unfinished.md
# - 调试:
# - Android Studio 调试 Smali: unfinished.md
# - IDA 调试 So: unfinished.md
# - 脱壳工具:
# - ZjDroid: unfinished.md
# - 插桩: unfinished.md
# - Hook:
# - Xposed: unfinished.md
# - Frida: unfinished.md
# - Crypto:
# - 核心工具:
# - pycrypto: unfinished.md
# - sage: unfinished.md
# - 古典密码:
# - JPK: unfinished.md
# - 现代密码:
# - RSA related: unfinished.md
# - 整数分解, primefac, factordb, yafu: unfinished.md
# - python 库, gmpy/gmpy2: unfinished.md
# - openssl: unfinished.md
# - 开源工具:
# - fireeye/flare-vm: unfinished.md
# - hasherezade/libopconv: unfinished.md
# - ARM:
# - VisUAL: unfinished.md
# Theme
theme:
name: 'material'
language: 'zh'
palette:
primary: 'white'
accent: 'red'
logo:
icon: 'gavel'
favicon: '_static/img/favicon.png'
feature:
tabs: true
font:
text: 'Fira Sans'
code: 'Fira Mono'
# Customization
extra:
search:
language: 'jp'
extra_javascript:
- '_static/js/extra.js'
- 'https://cdn.bootcss.com/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_CHTML'
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- def_list
- footnotes
- meta
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde