-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanswers.tex
52 lines (39 loc) · 1.69 KB
/
answers.tex
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
\documentclass[cn,11pt,chinese]{elegantbook}
\usepackage{float}
\usepackage{listings}
\lstset{
columns=fixed,
numbers=left, % 在左侧显示行号
numberstyle=\tiny\color{gray}, % 设定行号格式
frame=none, % 不显示背景边框
backgroundcolor=\color[RGB]{245,245,244}, % 设定背景颜色
keywordstyle=\color[RGB]{40,40,255}, % 设定关键字颜色
numberstyle=\footnotesize\color{darkgray},
commentstyle=\it\color[RGB]{0,96,96}, % 设置代码注释的格式
stringstyle=\rmfamily\slshape\color[RGB]{128,0,0}, % 设置字符串格式
showstringspaces=false, % 不显示字符串中的空格
% language=php, % 设置语言
}
% 标题信息
\title{CTF 解题记录}
\author{shijy16}
\date{\today}
\cover{cover.jpg}
\begin{document}
\maketitle
\chapter*{特别声明}
\markboth{Introduction}{前言}
本册是CTF解题记录,题目来自于\href{https://book.nu1l.com/}{从0到1:CTFer成长之路}的配套平台。在各章节子文件夹中也直接存放了题目的docker文件和一些解题时用的脚本。
部分题目是二进制文件或者项目文件,没有放在项目中,请自行从平台上获取。
供初学CTF的同学们参考交流。
\vskip 1.5cm
\begin{flushright}
2021年3月21日\\
shijy16
\end{flushright}
\tableofcontents
\setcounter{page}{1}
\pagenumbering{arabic}
\include{1-web_junior/web_junior_ans}
\include{5-reverse_engineering/reverse_engineering_ans}
\end{document}