香港云主机最佳企业级服务商!

ADSL拨号VPS包含了中国大陆(联通,移动,电信,)

中国香港,国外拨号VPS。

当前位置:云主机 > python >

电信ADSL拨号VPS
联通ADSL拨号VPS
移动ADSL拨号VPS

Python写的Socks5协议代理服务器


时间:2021-04-29 10:48 作者:admin610456


直接上代码:

#!/usr/bin/python/' target='_blank'>python # Filename s5.py # Python Dynamic Socks5 Proxy # Usage: python s5.py 1080 # Background Run: nohup python s5.py 1080 & import socket, sys, select, SocketServer, struct, time class ThreadingTCPServer(SocketServer.ThreadingMixIn, SocketServer.TCPServer): passclass Socks5Server(SocketServer.StreamRequestHandler):   def handle_tcp(self, sock, remote):     fdset = [sock, remote]     while True:       r, w, e = select.select(fdset, [], [])       if sock in r:         if remote.send(sock.recv(4096)) <= 0: break       if remote in r:         if sock.send(remote.recv(4096)) <= 0: break   def handle(self):     try:       pass # print 'from ', self.client_address nothing to do.       sock = self.connection       # 1. Version       sock.recv(262)       sock.send("\x05\x00");       # 2. Request       data = self.rfile.read(4)       mode = ord(data[1])       addrtype = ord(data[3])       if addrtype == 1:    # IPv4         addr = socket.inet_ntoa(self.rfile.read(4))       elif addrtype == 3:   # Domain name         addr = self.rfile.read(ord(sock.recv(1)[0]))       port = struct.unpack('>H', self.rfile.read(2))       reply = "\x05\x00\x00\x01"       try:         if mode == 1: # 1. Tcp connect           remote = socket.socket(socket.AF_INET, socket.SOCK_STREAM)           remote.connect((addr, port[0]))           pass # print 'To', addr, port[0] nothing do to.         else:           reply = "\x05\x07\x00\x01" # Command not supported         local = remote.getsockname()         reply += socket.inet_aton(local[0]) + struct.pack(">H", local[1])      except socket.error:         # Connection refused         reply = '\x05\x05\x00\x01\x00\x00\x00\x00\x00\x00'       sock.send(reply)       # 3. Transfering       if reply[1] == '\x00': # Success         if mode == 1:  # 1. Tcp connect           self.handle_tcp(sock, remote)     except socket.error:       pass #print 'error' nothing to do .     except IndexError:       pass def main():   filename = sys.argv[0];   if len(sys.argv)<2:     print 'usage: ' + filename + ' port'     sys.exit()   socks_port = int(sys.argv[1]);     server = ThreadingTCPServer(('', socks_port), Socks5Server)   print 'bind port: %d' % socks_port + ' ok!'   server.serve_forever() if __name__ == '__main__':   main()

(责任编辑:admin)






帮助中心
会员注册
找回密码
新闻中心
快捷通道
域名登录面板
虚机登录面板
云主机登录面板
关于我们
关于我们
联系我们
联系方式

售前咨询:17830004266(重庆移动)

企业QQ:383546523

《中华人民共和国工业和信息化部》 编号:ICP备00012341号

Copyright © 2002 -2018 香港云主机 版权所有
声明:香港云主机品牌标志、品牌吉祥物均已注册商标,版权所有,窃用必究

云官方微信

在线客服

  • 企业QQ: 点击这里给我发消息
  • 技术支持:383546523

  • 公司总台电话:17830004266(重庆移动)
  • 售前咨询热线:17830004266(重庆移动)