Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b81fe42

Browse files
committed
turning off null connection on -o when --tor used (not compatible)
1 parent efdd86d commit b81fe42

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2367,7 +2367,7 @@ def setOptimize():
23672367
#conf.predictOutput = True
23682368
conf.keepAlive = True
23692369
conf.threads = 3 if conf.threads < 3 else conf.threads
2370-
conf.nullConnection = not any([conf.data, conf.textOnly, conf.titles, conf.string, conf.regexp])
2370+
conf.nullConnection = not any([conf.data, conf.textOnly, conf.titles, conf.string, conf.regexp, conf.tor])
23712371

23722372
if not conf.nullConnection:
23732373
debugMsg = "turning off --null-connection switch used indirectly by switch -o"

0 commit comments

Comments
 (0)