mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
fix for skipping non-GET urls
This commit is contained in:
@@ -129,6 +129,11 @@ def start():
|
|||||||
if paramKey not in kb.testedParams:
|
if paramKey not in kb.testedParams:
|
||||||
testSqlInj = True
|
testSqlInj = True
|
||||||
break
|
break
|
||||||
|
else:
|
||||||
|
paramKey = (conf.hostname, conf.path, None, None)
|
||||||
|
if paramKey not in kb.testedParams:
|
||||||
|
testSqlInj = True
|
||||||
|
|
||||||
if not testSqlInj:
|
if not testSqlInj:
|
||||||
infoMsg = "skipping '%s'" % targetUrl
|
infoMsg = "skipping '%s'" % targetUrl
|
||||||
logger.info(infoMsg)
|
logger.info(infoMsg)
|
||||||
|
|||||||
Reference in New Issue
Block a user