tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 5fa8d05bfa17d61a2cf96c87f0ffd9a2b6e577d2
parent 801aa5d03b3a62c7ed09e8c36629ced23e8c663a
Author: Nick Mathewson <nickm@torproject.org>
Date:   Wed,  9 Aug 2017 10:48:43 -0400

Block managed proxies at a higher point

Diffstat:
Msrc/or/config.c | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/src/or/config.c b/src/or/config.c @@ -5741,6 +5741,15 @@ parse_transport_line(const or_options_t *options, goto err; } + if (is_managed && options->NoExec) { + log_warn(LD_CONFIG, + "Managed proxies are not compatible with NoExec mode; ignoring." + "(%sTransportPlugin line was %s)", + server ? "Server" : "Client", escaped(line)); + r = 0; + goto done; + } + if (is_managed) { /* managed */