Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxdcb/libsocks5
Socker5 Server with a twist
https://github.com/maxdcb/libsocks5
Last synced: 9 days ago
JSON representation
Socker5 Server with a twist
- Host: GitHub
- URL: https://github.com/maxdcb/libsocks5
- Owner: maxDcb
- Created: 2024-05-23T13:55:23.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-12-05T12:41:24.000Z (about 2 months ago)
- Last Synced: 2024-12-05T13:34:51.191Z (about 2 months ago)
- Language: C++
- Size: 23.4 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# libSocks5 Server
The library implement a simple socks5 server with the particularity that the actual Sock5 Server and the targeted host where SockerTunnelClient run can be splited. Thus the Socks traffic can be encapsulated within another protocol like TCP/HTTP/SMB...
proxychains ... <- tcp -> SocksServer <- http/tcp/smb -> SocksTunnelClient <- tcp -> target ip/port
## Build
```
mkdir build
cd build
cmake ..
make -j4
```Run SocksServer localy:
```
./TestsSocksServerproxychains nmap -sT -sC -sV 127.0.0.1 -p 1080
proxychains curl http://127.0.0.1:8080/test
```