socks5 icon indicating copy to clipboard operation
socks5 copied to clipboard

SOCKSv5 bring your own IO library

Results 7 socks5 issues
Sort by recently updated
recently updated
newest added

This fixes being able to connect to proxies like Tor which do not have the same host and port as the requested host and port.

https://github.com/mike820324/socks5/blob/master/socks5/connection.py#L207 enforces response host and port matching requested CONNECT host and port. However, the RFC states: ``` In the reply to a CONNECT, BND.PORT contains the port number that the...

Scope ===== This adds the simple possible example for a server implementation based on Twisted. This is my scribble while I was checking the socks5 servers for Python. Changes =======...

Is this a typo? It would be nice to have all the AUTH_TYPE values as constants so you could write.. and maybe without abbreviation :) so we would have `RESPONSE_GENERAL_FAILURE`...

Add some benchmark script.

enhancement