File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -33,9 +33,10 @@ def single_bruter(self):
33
33
34
34
while not self .words_queue .empty () and not ScanManager ._SHOULD_ABORT :
35
35
subdomain = self .words_queue .get ()
36
+ url_path = self .generate_url_base_path (subdomain )
36
37
if subdomain == self .original_subdomain :
38
+ self ._update_count (url_path , True )
37
39
continue
38
- url_path = self .generate_url_base_path (subdomain )
39
40
found = False
40
41
try :
41
42
res = self ._make_request (method = "GET" , url = url_path )
@@ -58,7 +59,7 @@ def single_bruter(self):
58
59
59
60
def _record_found (self , url_path : str ):
60
61
self ._save_results (f"{ url_path } \n " )
61
- self ._log_progress (f"found -> { url_path } " )
62
+ self ._log_progress (f"added to queue -> { url_path } " )
62
63
63
64
def _start_scanner (self ) -> queue .Queue :
64
65
threads = list ()
You can’t perform that action at this time.
0 commit comments