-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmkdocs.yml
More file actions
105 lines (95 loc) · 2.74 KB
/
mkdocs.yml
File metadata and controls
105 lines (95 loc) · 2.74 KB
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
site_name: CUC CTF-Wiki
repo_name: 'CUC CTF-Wiki'
repo_url: 'https://github.com/cuccs/ctf-wiki'
edit_uri: 'blob/master/docs/'
nav:
- 首页:
- 主页: index.md
- 关于本项目: intro.md
- F.A.Q: FAQ.md
- MISC:
- 简介: MISC/intro.md
- 信息搜集 && 编码: MISC/MISC-2/MISC-2.md
- 数字取证 && 隐写分析: MISC/MISC-1/数字取证_隐写分析.md
- CRYPTO:
- 简介: CRYPTO/intro.md
- 古典密码、对称加密、非对称加密: CRYPTO/第三周-Crypto/Crypto.md
- WEB:
- 简介: WEB/intro.md
- XSS: WEB/WEB-1/XSS(跨站点脚本攻击).md
- PHP audit: WEB/WEB-2/Web PHP audit.md
- SQL Injection: WEB/WEB-3/index.md
- PWN:
- 简介: PWN/intro.md
- C语言前置基础(基础篇): PWN/前置基础/C语言基础.md
- C语言前置基础(进阶篇): PWN/前置基础/C语言进阶.md
- Linux前置基础及工具: PWN/前置基础/Linux基础及工具.md
- 格式化字符串漏洞: PWN/格式化字符串漏洞/格式化字符串漏洞综合训练.md
- 栈溢出: PWN/栈溢出/栈溢出.md
- 整数溢出: PWN/整数溢出漏洞/整数溢出.md
- REVERSE:
- 简介: REVERSE/intro.md
- 集训安排:
- 2020秋季集训: training/2020Autumn/2020AutumnOutline.md
- 2022秋季集训: training/2022Autumn/秋季培训大纲.md
- 2025春季集训: training/2025Spring/README.md
- 2025秋季集训: training/2025Autumn/README.md
## Theme
theme:
name: 'material'
language: 'zh'
palette:
primary: 'white'
accent: 'red'
include_search_page: true
search_index_only: true
favicon: 'favicon.ico'
logo: images/logo.jpg
feature:
tabs: true
font:
text: 'Fira Sans'
code: 'Fira Mono'
# Customization
extra:
search:
language: 'zh'
pagetime: 'on'
manifest: 'manifest.webmanifest'
githash: ''
extra_javascript:
- '_static/js/extra.js?v=16'
- 'https://cdnjs.loli.net/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML'
extra_css:
- '_static/css/extra.css?v=12'
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
linenums: true
- def_list
- footnotes
- meta
- toc:
permalink: true
- pymdownx.arithmatex
- 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.progressbar
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: math
class: arithmatex
format: !!python/name:pymdownx.arithmatex.fence_mathjax_format
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde