aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy')
-rw-r--r--libmproxy/proxy/config.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/libmproxy/proxy/config.py b/libmproxy/proxy/config.py
index 8d2a286d..2a1b84cb 100644
--- a/libmproxy/proxy/config.py
+++ b/libmproxy/proxy/config.py
@@ -136,6 +136,13 @@ def process_proxy_options(parser, options):
)
if options.auth_nonanonymous or options.auth_singleuser or options.auth_htpasswd:
+
+ if options.socks_proxy:
+ return parser.error(
+ "Proxy Authentication not supported in SOCKS mode. "
+ "https://github.com/mitmproxy/mitmproxy/issues/738"
+ )
+
if options.auth_singleuser:
if len(options.auth_singleuser.split(':')) != 2:
return parser.error(