54 lines
1023 B
TeX
54 lines
1023 B
TeX
\documentclass{beamer}
|
|
\usepackage[T1]{fontenc}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage{lmodern}
|
|
\usepackage{amsmath}
|
|
\usetheme{Darmstadt}
|
|
\setbeamercovered{transparent}
|
|
|
|
\title{Checkpoint \texttt{0x00}}
|
|
\subtitle{Implementing DoS/DDoS Attack Mitigations}
|
|
\author{Adam Mirre}
|
|
\institute{UTB ve Zlíně}
|
|
\date{\today}
|
|
|
|
|
|
\begin{document}
|
|
|
|
\frame{\titlepage}
|
|
|
|
\begin{frame}{Outline}
|
|
\tableofcontents[pausesections]
|
|
\end{frame}
|
|
|
|
\section{DoS/DDoS}
|
|
\subsection{Intro}
|
|
|
|
\begin{frame}
|
|
\frametitle{What we're up against}
|
|
|
|
\begin{block}{Denial of Service (DoS)}
|
|
\begin{itemize}
|
|
\item is a singular effort
|
|
\item prevents legitimate user from accessing the service
|
|
\end{itemize}
|
|
\end{block}
|
|
|
|
\begin{block}{Distributed Denial of Service (DDoS)}
|
|
\begin{itemize}
|
|
\item is a distributed effort
|
|
\item prevents legitimate user from accessing the service
|
|
\end{itemize}
|
|
\end{block}
|
|
|
|
\end{frame}
|
|
|
|
\section{}
|
|
\subsection{}
|
|
\begin{frame}{Conclusion}
|
|
Thank you for your attention.
|
|
\end{frame}
|
|
|
|
|
|
\end{document}
|