socks_proxy
socks_proxy copied to clipboard
socks5 proxy server in C
Segmentation fault, if the domain name isn't null-terminated string (SOCKS4a protocol). ``` #!/bin/python3 import socket s = socket.socket(socket.AF_INET, socket.SOCK_STREAM, 0) s.connect(('127.0.0.1', 1080)) s.send(b'\x04\x01\x00\x00\x00\x00\x00\x01\x00') for i in range(256): s.send(b'\xFF') ```
Bro
Just want to say sank you!
Hello 👋 I run a security community that finds and fixes vulnerabilities in OSS. A researcher (@acquykhud) has found a potential issue, which I would be eager to share with...
So I've mounted the proxy on port 1080, Great tool by the way, then on requesting Google, `curl --ipv4 --socks5 127.0.0.1:1080 https://www.google.com --verbose` I've got: ``` * Trying 127.0.0.1:1080... *...
 prebuilt binary: [main.com.gz](https://github.com/fgssfgss/socks_proxy/files/10096455/main.com.gz) supported: Linux, NetBSD, FreeBSD, OpenBSD, Mac OS X, Windows ```patch 2,19d1 < #include < #include < #include < #include < #include < #include < #include <...