p3nt4/Invoke-SocksProxy: Socks proxy server using powershell.
2019-07-03 18:00:19 Author: github.com(查看原文) 阅读量:525 收藏

Join GitHub today

GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.

Sign up

Socks proxy server using powershell.

Creates a Socks proxy using powershell.

Supports both Socks4 and Socks5 connections.

Create a Socks 4/5 proxy on port 1234:

Import-Module .\Invoke-SocksProxy.psm1
Invoke-SocksProxy -bindPort 1234

Increase the number of threads from 200 to 400

Import-Module .\Invoke-SocksProxy.psm1
Invoke-SocksProxy -threads 400
  • This is only a subset of the Socks 4 and 5 protocols: It does not support authentication, It does not support UDP or bind requests.
  • When the Socks Proxy runs out of available threads, new connections cannot be established until a thread is freed.
  • New features will be implemented in the future. PR are welcome.

文章来源: https://github.com/p3nt4/Invoke-SocksProxy
如有侵权请联系:admin#unsafe.sh