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

Skip to content

Commit b83bdee

Browse files
committed
Trivial update for #481
1 parent 3579897 commit b83bdee

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from 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"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

plugins/generic/databases.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)