mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-11 08:25:47 +03:00
cosmetics (adding html parsed DBMS) regarding heuristic check
This commit is contained in:
parent
955ae5cd2e
commit
8b8fff41fe
|
@ -109,7 +109,7 @@ def heuristicCheckSqlInjection(place, parameter, value):
|
||||||
infoMsg = "(error based) heuristics show that %s parameter '%s' is " % (place, parameter)
|
infoMsg = "(error based) heuristics show that %s parameter '%s' is " % (place, parameter)
|
||||||
|
|
||||||
if result:
|
if result:
|
||||||
infoMsg += "injectable"
|
infoMsg += "injectable (DBMS: %s)" % kb.htmlFp[-1]
|
||||||
logger.info(infoMsg)
|
logger.info(infoMsg)
|
||||||
else:
|
else:
|
||||||
infoMsg += "not injectable"
|
infoMsg += "not injectable"
|
||||||
|
|
|
@ -197,7 +197,7 @@ class Connect:
|
||||||
|
|
||||||
# Reset the number of connection retries
|
# Reset the number of connection retries
|
||||||
conf.retriesCount = 0
|
conf.retriesCount = 0
|
||||||
|
|
||||||
# Return response object
|
# Return response object
|
||||||
if response:
|
if response:
|
||||||
return conn, None
|
return conn, None
|
||||||
|
|
Loading…
Reference in New Issue
Block a user