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

Skip to content

Commit 8b8fff4

Browse files
committed
cosmetics (adding html parsed DBMS) regarding heuristic check
1 parent 955ae5c commit 8b8fff4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/controller/checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def heuristicCheckSqlInjection(place, parameter, value):
109109
infoMsg = "(error based) heuristics show that %s parameter '%s' is " % (place, parameter)
110110

111111
if result:
112-
infoMsg += "injectable"
112+
infoMsg += "injectable (DBMS: %s)" % kb.htmlFp[-1]
113113
logger.info(infoMsg)
114114
else:
115115
infoMsg += "not injectable"

lib/request/connect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def getPage(**kwargs):
197197

198198
# Reset the number of connection retries
199199
conf.retriesCount = 0
200-
200+
201201
# Return response object
202202
if response:
203203
return conn, None

0 commit comments

Comments
 (0)