fuck
This commit is contained in:
parent
cd66542003
commit
311d37108a
@ -6,4 +6,4 @@ from .scanner import HTTPZScanner
|
||||
from .colors import Colors
|
||||
|
||||
|
||||
__version__ = '2.0.7'
|
||||
__version__ = '2.0.8'
|
@ -107,6 +107,10 @@ class HTTPZScanner:
|
||||
|
||||
result['status'] = response.status
|
||||
|
||||
# Bail immediately if it's a failed lookup - no point processing further
|
||||
if result['status'] == -1:
|
||||
return None
|
||||
|
||||
# Early exit if status code doesn't match criteria
|
||||
if self.match_codes and result['status'] not in self.match_codes:
|
||||
return result
|
||||
|
Loading…
Reference in New Issue
Block a user