We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a69c0a0 commit 0ecf66eCopy full SHA for 0ecf66e
httpscan.py
@@ -215,7 +215,7 @@ def __init__(self, args):
215
# TODO: make separate queues for fast logging
216
self.args = args
217
self.lock = RLock()
218
- # self.log_lock = RLock()
+
219
# Colorama init
220
init()
221
# Initialise logging
@@ -476,8 +476,8 @@ def __init__(self, args):
476
477
# Reading urls file
478
urls = helper.file_to_list(args.urls)
479
- if hosts is None:
480
- self.output.print_and_log('Urls file %s not found!' % args.hosts, logging.ERROR)
+ if urls is None:
+ self.output.print_and_log('Urls file %s not found!' % args.urls, logging.ERROR)
481
exit(-1)
482
self.urls = urls
483
0 commit comments