aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mitmproxy/cmdline.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/mitmproxy/cmdline.py b/mitmproxy/cmdline.py
index da91e952..8476f6f3 100644
--- a/mitmproxy/cmdline.py
+++ b/mitmproxy/cmdline.py
@@ -165,6 +165,18 @@ def get_common_options(options):
raise configargparse.ArgumentTypeError(e.message)
setheaders.append(p)
+ if options.outfile and options.outfile[0] == options.rfile:
+ if options.outfile[1] == "wb":
+ raise configargparse.ArgumentTypeError(
+ "Cannot use '{}' for both reading and writing flows. "
+ "Are you looking for --afile?".format(options.rfile)
+ )
+ else:
+ raise configargparse.ArgumentTypeError(
+ "Cannot use '{}' for both reading and appending flows. "
+ "That would trigger an infinite loop."
+ )
+
return dict(
app=options.app,
app_host=options.app_host,