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

Skip to content

Commit e8d7699

Browse files
committed
Minor bug fix to avoid resuming data filled into the sqlmap support tables
1 parent 18d1d09 commit e8d7699

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

lib/utils/resume.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ def resume(expression, payload):
9797
SQL injection query output.
9898
"""
9999

100+
if "sqlmapfile" in expression or "sqlmapoutput" in expression:
101+
return None
102+
100103
condition = (
101104
kb.resumedQueries and conf.url in kb.resumedQueries.keys()
102105
and expression in kb.resumedQueries[conf.url].keys()

0 commit comments

Comments
 (0)