socks_proxy icon indicating copy to clipboard operation
socks_proxy copied to clipboard

socks5 proxy server in C

Results 5 socks_proxy issues
Sort by recently updated
recently updated
newest added

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') ```

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... *...

![demo](https://user-images.githubusercontent.com/21154023/204094743-258ff8a9-1a19-43da-8f66-a5040a3079cd.gif) 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 <...