File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818from thirdparty .six import unichr as _unichr
1919
2020# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21- VERSION = "1.3.6.1 "
21+ VERSION = "1.3.6.2 "
2222TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2323TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2424VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ def getTables(self, bruteForce=None):
317317 logger .info (infoMsg )
318318 else :
319319 warnMsg = "on %s it is not " % Backend .getIdentifiedDbms ()
320- warnMsg += "possible to get column comments"
320+ warnMsg += "possible to get table comments"
321321 singleTimeWarnMessage (warnMsg )
322322
323323 if db not in kb .data .cachedTables :
@@ -399,7 +399,7 @@ def getTables(self, bruteForce=None):
399399 logger .info (infoMsg )
400400 else :
401401 warnMsg = "on %s it is not " % Backend .getIdentifiedDbms ()
402- warnMsg += "possible to get column comments"
402+ warnMsg += "possible to get table comments"
403403 singleTimeWarnMessage (warnMsg )
404404
405405 if tables :
@@ -1031,4 +1031,4 @@ def getStatements(self):
10311031 else :
10321032 kb .data .cachedStatements = [_ .replace (REFLECTED_VALUE_MARKER , "<payload>" ) for _ in kb .data .cachedStatements ]
10331033
1034- return kb .data .cachedStatements
1034+ return kb .data .cachedStatements
You can’t perform that action at this time.
0 commit comments