This repository has been archived by the owner on Sep 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
103 lines (79 loc) · 2.33 KB
/
thesis.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
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
\documentclass[11pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\PassOptionsToPackage{obeyspaces}{url}
\usepackage[dvipsnames]{xcolor}
\usepackage{tikz}
\usetikzlibrary{decorations.pathreplacing}
\usepackage{graphicx}
\usepackage{biblatex}
\usepackage{enumitem}
\usepackage{subcaption}
\usepackage{listings}
\usepackage{multicol}
\usepackage{xurl}
\usepackage{hyperref}
\addbibresource{content/references/books.bib}
\addbibresource{content/references/links.bib}
\addbibresource{content/references/papers.bib}
\lstset{basicstyle=\ttfamily\footnotesize,
keepspaces=true,
backgroundcolor=\color{lightgray},
showstringspaces=false,
upquote=true,
breaklines=true,
numbers=left,
}
\renewcommand*\Itemautorefname{technique}
\hypersetup{
colorlinks=true,
urlcolor = NavyBlue,
citecolor = Maroon,
linkcolor = Violet,
}
\begin{document}
\begin{titlepage}
\begin{center}
\textsc{\LARGE Master thesis\\Computing Science: Cyber Security}\\[1.5cm]
\includegraphics[height=100pt]{resources/images/logo}
\vspace{0.4cm}
\textsc{\Large Radboud University}\\[1cm]
\hrule
\vspace{0.4cm}
\textbf{\huge Detecting Capabilities in Malware Binaries by Searching for Function Calls}\\[0.4cm]
\hrule
\vspace{2cm}
\begin{minipage}[t]{0.45\textwidth}
\begin{flushleft}
\large
\textit{Author:}\\ Joren Vrancken\\ s4593847
\end{flushleft}
\end{minipage}
\begin{minipage}[t]{0.45\textwidth}
\begin{flushright}
\large \textit{Supervisor \& First Assessor:}\\ dr. ir. Erik Poll\\ \href{mailto:[email protected]}{\texttt{[email protected]}}\\[1.3cm]
\textit{Second assessor:}\\ dr. Freek Verbeek\\ \href{mailto:[email protected]}{\texttt{[email protected]}}
\end{flushright}
\end{minipage}
\vfill
{\large \today}
\end{center}
\end{titlepage}
\input{content/acknowledgements}
\thispagestyle{empty}
\input{content/abstract}
\tableofcontents
\input{content/introduction.tex}
\input{content/related-work.tex}
\input{content/x86-background/index.tex}
\input{content/malware/index.tex}
\input{content/call-signatures/index.tex}
\input{content/plugin/index.tex}
\input{content/techniques/index.tex}
\input{content/techniques-signatures/index.tex}
\input{content/experiments/index.tex}
\input{content/future-work.tex}
\input{content/conclusions.tex}
\printbibliography[heading=bibintoc]
\appendix
\input{content/appendix/index}
\end{document}