-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
142 lines (97 loc) · 3.74 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
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
%!TEX encoding = UTF-8 Unicode
% ================================================================================
\documentclass[
fontsize=12pt,
headings=small,
parskip=half, % Replaces manually placing parskip/parindent.
bibliography=totoc,
numbers=noenddot, % No dot after chapter numbers.
open=any, % Chapters can start on any page.
final % Removes TODOs and draft notice.
]{scrreprt}
% ================================================================================
\include{style}
\usepackage{graphicx}
\graphicspath{./img/}
% ================================================================================
\title{Dangers and Prevalence of\\ Client-Side Web API Manipulations}
\author{Jonas Bögle de Araújo}
\date{17.05.2022} % Set a fixed date.
% \date{May 17, 2022}
\addbibresource{references.bib}
\begin{document}
\begin{titlepage}
% Roman page numbers for everything before the actual content starts
\pagenumbering{roman}
\includegraphics[width=6.8cm]{img/up-uhh-logo-u-2010-u-farbe-u-rgb.pdf}
\begin{center}\Large
\vfill
Bachelor Thesis
\vfill
\makeatletter
{\Large\textsf{\textbf{\@title}}\par}
\makeatother
\vfill
presented by
\par\bigskip
\makeatletter
{\@author} \par
\makeatother
Student ID No. 7200785\\
B.Sc. Software-System-Engineering \par
MIN Faculty, Department of Computer Science
\vfill
\makeatletter
submitted on {\@date}
\makeatother
\vfill
First Reviewer: Prof. Dr. Hannes Federrath\\
Second Reviewer: Dr. Daniel Demmler\\
Supervisor: Pascal Wichmann
\end{center}
\end{titlepage}
% ================================= Task ===============================
\input{chapter/010_task.tex}
% =============================== Abstract =============================
\input{chapter/020_abstract.tex}
% ========================== Table of Contents =========================
\tableofcontents
% ============================ Introduction ============================
\input{chapter/110_introduction.tex}
% ============================ Fundamentals ============================
\input{chapter/120_fundamentals.tex}
% ============================ Related Work ============================
\input{chapter/130_relatedwork.tex}
% =============================== Threats ==============================
\input{chapter/140_threats.tex}
% ============================== Detection =============================
\input{chapter/150_detection.tex}
% ============================== Extension =============================
\input{chapter/160_extension.tex}
% ============================= Evaluation =============================
\input{chapter/170_evaluation.tex}
% ============================= Mitigations ============================
\input{chapter/180_mitigation.tex}
% ============================= Conclusion =============================
\input{chapter/200_conclusion.tex}
% ============================= Appendices =============================
\input{chapter/900_appendices.tex}
% ================================ Lists ===============================
\begingroup
\footnotesize
\listoffigures
\addcontentsline{toc}{chapter}{List of Figures, Tables and Listings}
\let\clearpage\relax
\listoftables
\lstlistoflistings
\endgroup
% ============================== Acronyms ==============================
\input{chapter/910_acronyms.tex}
% ============================= References =============================
\input{chapter/970_references.tex}
% ====================== Eidesstattliche Erklärung =====================
\input{chapter/980_eidesstattliche-erklaerung.tex}
% ============================== Todo List =============================
\listoftodos
% \todototoc
\end{document}