mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 06:48:05 +01:00
Make default exit policy reject 127.*:*
svn:r902
This commit is contained in:
parent
41bb717241
commit
911f155f94
1 changed files with 1 additions and 1 deletions
|
@ -252,7 +252,7 @@ void init_options(or_options_t *options) {
|
|||
options->LogLevel = tor_strdup("warn");
|
||||
options->ExitNodes = tor_strdup("");
|
||||
options->EntryNodes = tor_strdup("");
|
||||
options->ExitPolicy = tor_strdup("reject *:25,accept *:*");
|
||||
options->ExitPolicy = tor_strdup("reject *:25,reject 127.0.0.1/8:*,accept *:*");
|
||||
options->SocksBindAddress = tor_strdup("127.0.0.1");
|
||||
options->ORBindAddress = tor_strdup("0.0.0.0");
|
||||
options->DirBindAddress = tor_strdup("0.0.0.0");
|
||||
|
|
Loading…
Add table
Reference in a new issue