20 lines
642 B
TeX
20 lines
642 B
TeX
\section{Reverse Shell Exploitation With Netcat}
|
|
|
|
\subsection{Erster Test}
|
|
|
|
Zum testen wird das c Programm\footnote{\href{https://www.exploit-db.com/shellcodes/47396}{https://www.exploit-db.com/shellcodes/47396}} kompiliert und ausgeführt.
|
|
|
|
\begin{lstlisting}[breaklines]
|
|
gcc --no-pie -z execstack -fno-stack-protector -D_FORTIFY_SOURCE=0 test-shellcode.c -o shell
|
|
./shell
|
|
\end{lstlisting}
|
|
|
|
Nun kann man auf dem Port 43690 eine Verbindung aufbauen.
|
|
|
|
\begin{figure}[H]
|
|
\begin{center}
|
|
\includegraphics[width=0.9\textwidth]{shell/01-test}
|
|
\caption{Erster Test}
|
|
\label{fig:Erster Test}
|
|
\end{center}
|
|
\end{figure}
|