File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -187,6 +187,9 @@ def unhandled_exception():
187
187
print (settings .print_critical_msg (err_msg ))
188
188
raise SystemExit ()
189
189
190
+ elif any (_ in exc_msg for _ in ("Broken pipe" ,)):
191
+ raise SystemExit ()
192
+
190
193
elif any (_ in exc_msg for _ in ("The paging file is too small" ,)):
191
194
err_msg = "No space left for paging file."
192
195
print (settings .print_critical_msg (err_msg ))
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ def sys_argv_errors():
216
216
DESCRIPTION = "The command injection exploiter"
217
217
AUTHOR = "Anastasios Stasinopoulos"
218
218
VERSION_NUM = "3.3"
219
- REVISION = "53 "
219
+ REVISION = "54 "
220
220
STABLE_RELEASE = False
221
221
if STABLE_RELEASE :
222
222
VERSION = "v" + VERSION_NUM + "-stable"
You can’t perform that action at this time.
0 commit comments