forked from ucki/zauberfeder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaindocument.tex
More file actions
57 lines (50 loc) · 2.65 KB
/
Copy pathmaindocument.tex
File metadata and controls
57 lines (50 loc) · 2.65 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
\documentclass[a4paper, 10pt, oneside]{article}
\renewcommand{\familydefault}{\sfdefault}
%---------------------------------------------------------------------------------
%------------------------- Set the variables for the Mainpage here ---------------
%---------------------------------------------------------------------------------
\newcommand{\name}{John Doe}
\newcommand{\email}{john@doe.com}
\newcommand{\osid}{OS-11111}
%---------------------------------------------------------------------------------
%------------------------- Include the list of used packages ---------------------
%---------------------------------------------------------------------------------
\input{packages.tex}
%---------------------------------------------------------------------------------
%------------------------- Create title page -------------------------------------
%---------------------------------------------------------------------------------
\title{{\textbf{\Huge Offensive Security}}\\ Penetration Test Report for\\Internal Lab and Exam}
\author{\vspace{3cm}\\{\LARGE \name}\\[1em]\email\\[1em]OSID: \osid}
\date{\vspace{7cm}\today}
\begin{document}
%---------------------------------------------------------------------------------
%------------------------- Print title page --------------------------------------
%---------------------------------------------------------------------------------
\maketitle
\thispagestyle{empty}
%---------------------------------------------------------------------------------
%------------------------- Print table of contents -------------------------------
%---------------------------------------------------------------------------------
% Attention: Document might need some runs to get all indexes etc right .. usual LaTeX stuff :)
\tableofcontents
\thispagestyle{empty}
\pagebreak
%---------------------------------------------------------------------------------
%------------------------- Declaring the empty variables for the hosts -----------
%---------------------------------------------------------------------------------
\newcommand{\hostname}{}
\newcommand{\ip}{}
\newcommand{\tcpports}{}
\newcommand{\udpports}{}
\newcommand{\os}{}
\newcommand{\vuln}{}
\newcommand{\product}{}
\newcommand{\vulnx}{}
\newcommand{\productx}{}
%---------------------------------------------------------------------------------
%------------ Here are the hosts, ------------------------------------------------
%------------ just add in the same scheme after you coppied the example folder ---
%---------------------------------------------------------------------------------
\input{./hosts/example/host.tex}
\input{./hosts/DeepThought/host.tex}
\end{document}