mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
increased scanning time, sqlmap will scan faster now and not sleep as long
This commit is contained in:
parent
bc02651e78
commit
5aa3b19ec7
1 changed files with 0 additions and 2 deletions
|
|
@ -83,7 +83,6 @@ class SqlmapHook(object):
|
||||||
log_json = json.loads(log_req.content)
|
log_json = json.loads(log_req.content)
|
||||||
for i in range(0, len(log_json["log"])):
|
for i in range(0, len(log_json["log"])):
|
||||||
if log_json["log"][i]["message"] in already_displayed:
|
if log_json["log"][i]["message"] in already_displayed:
|
||||||
time.sleep(0.5)
|
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
print(
|
print(
|
||||||
|
|
@ -94,7 +93,6 @@ class SqlmapHook(object):
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
already_displayed.add(log_json["log"][i]["message"])
|
already_displayed.add(log_json["log"][i]["message"])
|
||||||
time.sleep(0.2)
|
|
||||||
|
|
||||||
|
|
||||||
def find_sqlmap(given_search_path=None, to_find="sqlmapapi.py", verbose=False):
|
def find_sqlmap(given_search_path=None, to_find="sqlmapapi.py", verbose=False):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue