commit 2b8c1b7718dc2ca80c1d7dbc5fb46dab782d45eb Author: David Goulet dgoulet@ev0ke.net Date: Tue May 12 12:12:25 2015 -0400
Change IsolatePID password from 42 to 0
Signed-off-by: David Goulet dgoulet@ev0ke.net --- src/common/config-file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/common/config-file.c b/src/common/config-file.c index 2f145fb..2147068 100644 --- a/src/common/config-file.c +++ b/src/common/config-file.c @@ -53,7 +53,7 @@ static unsigned int both_socks5_pass_user_set; */ static const char *isolate_username_fmt = "torsocks-%ld:%lld"; /* Default password for the IsolatePID option. */ -static const char *isolate_password = "42"; +static const char *isolate_password = "0";
/* * Set the onion pool address range in the configuration object using the value @@ -476,7 +476,7 @@ int conf_apply_socks_auth(struct configuration *config)
/* PID based isolation requested. * Username: 'torsocks-' PID ':' TIME - * Password: '42' + * Password: '0' */
pid = getpid();