Created
March 6, 2018 15:47
-
-
Save michelbl/9c45447b91cd9172c21bd966b9613d6d to your computer and use it in GitHub Desktop.
Very simple, very insecure dante (proxy SOCKS server) conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
logoutput: /var/log/dante.log | |
errorlog: /var/log/dante.error.log | |
internal: 51.15.171.195 port = 7165 | |
external: 51.15.171.195 | |
socksmethod: none | |
clientmethod: none | |
user.privileged: root | |
user.unprivileged: michel | |
user.libwrap: nobody | |
client pass { | |
from: 0.0.0.0/0 port 1-65535 to: 0.0.0.0/0 | |
} | |
socks block { | |
from: 0.0.0.0/0 to: lo | |
log: connect error | |
} | |
socks pass { | |
from: 0.0.0.0/0 to: 0.0.0.0/0 | |
command: bind connect udpassociate bindreply udpreply | |
} | |
socks pass { | |
from: 0.0.0.0/0 to: 0.0.0.0/0 | |
protocol: tcp udp | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment