-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
204 lines (190 loc) · 7.97 KB
/
mkdocs.yml
File metadata and controls
204 lines (190 loc) · 7.97 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
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
site_name: QLNU-Sec 学习笔记
site_url: http://note.qlnu-sec.cn/
site_author: QLNU-Sec-Team
repo_name: QLNU-Sec-Team/note
repo_url: https://github.com/QLNU-Sec-Team/note/
edit_uri: tree/main/docs
copyright: Made by © 2025 <a href="https://github.com/QLNU-Sec-Team" target="_blank" rel="noopener">QLNU-Sec-Team</a>
theme:
name: material
language: zh
search_index_only: true
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue grey
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
primary: black
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
features:
#- navigation.instant # 点击内部链接时,不用全部刷新页面
- navigation.tracking # 在url中使用标题定位锚点
- navigation.tabs # 顶部显示导航顶层nav(也就是第一个节点)
- navigation.tabs.sticky # 滚动是隐藏顶部nav,需要配合navigation.tabs使用
- navigation.sections # nav节点缩进
- navigation.expand # 不折叠左侧nav节点
- navigation.indexes # 指定节点index pages ,跟instant不兼容
#- toc.integrate # 右侧生产目录
#- toc.integrate #导航集成
- navigation.top # 一键回顶部x
- header.autohide
- search.share # 搜索分享
- search.suggest # 搜索建议
- search.highlight #搜索高亮
- content.tabs # 折叠文本
- content.action.edit
- content.action.view
icon:
edit: material/pencil
favicon: images/qlnu_sec_icon.png
logo: images/qlnu_sec_icon.png
font:
text: Noto Sans
code: Source Code Pro
plugins:
- search
- heti
# disable_serve: false
- git-revision-date-localized:
type: datetime
timezone: Asia/Shanghai
locale: zh
enable_creation_date: true
# - neoteroi.contribs
- rss:
feeds_filenames:
rss_created: rss.xml
- git-authors
- statistics
- macros:
module_name: docs/macros
j2_block_start_string: '[[%'
j2_block_end_string: '%]]'
j2_variable_start_string: '[['
j2_variable_end_string: ']]'
# 扩展
markdown_extensions:
- admonition
- abbr
- attr_list
- def_list
- tables
- md_in_html
- meta
- pymdownx.inlinehilite
- pymdownx.caret #下划线
- pymdownx.keys
- pymdownx.mark #文本高亮
- pymdownx.tilde #删除线
- pymdownx.critic
- pymdownx.details
- pymdownx.snippets
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.arithmatex:
generic: true
# # 自定义css
# extra_css:
# - css/neoteroi-mkdocs.css
# - 'https://cdn.staticaly.com/gh/codeslive/cdn@main/css/imageszoom.css' #图片放大css
# #- '//cdn.staticaly.com/gh/codeslive/images-pages@main/cdn/css/custom.css'
# #- '//cdn.staticaly.com/gh/codeslive/images-pages@main/cdn/css/simplelightbox.min.css' #图片放大css
# # 自定义js
extra_javascript:
# - 'https://cdn.staticaly.com/gh/codeslive/cdn@main/js/busuanzi.pure.mini.js' # 网站访问统计
- 'https://cdn.statically.io/gh/stevewithington/imagezoomjs/master/dist/imagezoom.min.js' # 图片放大js
#- '//cdn.staticaly.com/gh/codeslive/cdn@main/js/jquery-3.2.1.min.js'
#- '//cdn.staticaly.com/gh/codeslive/cdn@main/js/simplelightbox.min.js' #图片放大js
#- '//cdn.staticaly.com/gh/codeslive/cdn@main/js/custom.js'
- js/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# 设置
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/QLNU-Sec-Team
name: github
- icon: fontawesome/solid/rss
link: /rss.xml
name: RSS
analytics:
provider: google
property: G-2734SL9W6Y
# 文档区
nav:
- 文档介绍: 'index.md'
- MISC学习:
- '学习方法':
- 如何去学 : 'MISC/learn.md'
- 题型概览 : 'MISC/题型.md'
- BUU-misc第一页WP : 'MISC/BUU-misc第一页.md'
- Python:
- '学习方式':
- 'python/index.md'
- 为什么要学Python: 'python/index.md'
- 学习前的准备: 'python/install.md'
- 如何学习: 'python/How to Learn.md'
- 来做点练习题吧: 'python/practice.md'
- WEB:
- '从零开始的Web之路':
- 基础篇✅: 'WEB/从零开始的Web之路-基础篇.md'
- PHP篇✅: 'WEB/从零开始的Web之路-PHP篇.md'
- SQL篇✅: 'WEB/从零开始的Web之路-SQL篇.md'
- XSS篇: 'WEB/从零开始的Web之路-XSS篇.md'
- SSTI篇✅: 'WEB/从零开始的Web之路-SSTI篇.md'
- 文件上传篇✅: 'WEB/从零开始的Web之路-文件上传篇.md'
- 文件包含篇✅: 'WEB/从零开始的Web之路-文件包含篇.md'
- 反序列化篇✅: 'WEB/从零开始的Web之路-反序列化篇.md'
- PWN:
- PWN方向寒假学习计划: 'PWN/pwn方向寒假学习计划.md'
- '现代密码学':
- 'RSA基础知识':
- 索引: '01RSA基础篇/index.md'
- P00 大纲及参考网页: '01RSA基础篇/P00 大纲及参考网页.md'
- P01.python安装及pycharm配置 : '01RSA基础篇/P01.python安装及pycharm配置.md'
- P02.gmpy2及相关库安装 : '01RSA基础篇/P02.gmpy2及相关库安装.md'
- P03.RSA算法简介及原理 : '01RSA基础篇/P03.RSA算法简介及原理.md'
- P04.RSA基础题目及脚本 : '01RSA基础篇/P04.RSA基础题目及脚本.md'
- P05.基于N分解的题目 : '01RSA基础篇/P05.基于N分解的题目.md'
- P06.RSA密钥生成与读取 : '01RSA基础篇/P06.RSA密钥生成与读取.md'
- P07.共模攻击 : '01RSA基础篇/P07.共模攻击.md'
- P08.wiener(维纳)攻击 : '01RSA基础篇/P08.wiener(维纳)攻击.md'
- P09.低加密指数攻击 : '01RSA基础篇/P09.低加密指数攻击.md'
- P10.低加密指数广播攻击 : '01RSA基础篇/P10.低加密指数广播攻击.md'
- P11.共享素数-N不互素 : '01RSA基础篇/P11.共享素数-N不互素.md'
- P12.dp泄露 : '01RSA基础篇/P12.dp泄露.md'
- P13. dp,dq : '01RSA基础篇/P13. dp,dq.md'
- P14.n是p的r次方 : '01RSA基础篇/P14.n是p的r次方.md'
- P15.已知e _d n 求p q : '01RSA基础篇/P15.已知e _d n 求p q.md'
- P16.N分解三个素数 : '01RSA基础篇/P16.N分解三个素数.md'
- P17.e和phi_n不互素 : '01RSA基础篇/P17.e和phi_n不互素.md'
- P18.RSA常用解密代码块(网上收集) : '01RSA基础篇/P18.RSA常用解密代码块(网上收集).md'
- P19.Franklin-Reiter攻击脚本 : '01RSA基础篇/P19.Franklin-Reiter攻击脚本.md'
- P99 零散知识点 : '01RSA基础篇/P99 零散知识点.md'
- 'RSA稍微进阶知识':
- 前言: '02RSA/index.md'
- 一些知识的记录: '02RSA/knowledge_record.md'
- 一些题的记录: '02RSA/ti_record.md'
- 内网渗透:
- '内网渗透学习总结': 'NWST/内网渗透学习总结.md'
- 工具合集:
- '工具合集-CTF': 'Tools/工具合集-CTF.md'