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

Skip to content

Commit 42de887

Browse files
committed
Language update
1 parent 28576bf commit 42de887

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

lib/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2863,7 +2863,7 @@ def setOptimize():
28632863
conf.nullConnection = not any((conf.data, conf.textOnly, conf.titles, conf.string, conf.notString, conf.regexp, conf.tor))
28642864

28652865
if not conf.nullConnection:
2866-
debugMsg = "turning off --null-connection switch used indirectly by switch -o"
2866+
debugMsg = "turning off switch '--null-connection' used indirectly by switch '-o'"
28672867
logger.debug(debugMsg)
28682868

28692869
def initTechnique(technique=None):

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.5.55"
22+
VERSION = "1.0.5.56"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

lib/parse/cmdline.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -806,12 +806,12 @@ def _(self, *args):
806806
parser.formatter._format_option_strings = parser.formatter.format_option_strings
807807
parser.formatter.format_option_strings = type(parser.formatter.format_option_strings)(_, parser, type(parser))
808808

809-
# Dirty hack for making a short option -hh
809+
# Dirty hack for making a short option '-hh'
810810
option = parser.get_option("--hh")
811811
option._short_opts = ["-hh"]
812812
option._long_opts = []
813813

814-
# Dirty hack for inherent help message of switch -h
814+
# Dirty hack for inherent help message of switch '-h'
815815
option = parser.get_option("-h")
816816
option.help = option.help.capitalize().replace("this help", "basic help")
817817

lib/takeover/xp_cmdshell.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ def _xpCmdshellTest(self):
111111
errMsg += "storing console output within the back-end file system "
112112
errMsg += "does not have writing permissions for the DBMS process. "
113113
errMsg += "You are advised to manually adjust it with option "
114-
errMsg += "--tmp-path switch or you will not be able to retrieve "
115-
errMsg += "the commands output"
114+
errMsg += "'--tmp-path' or you won't be able to retrieve "
115+
errMsg += "the command(s) output"
116116
logger.error(errMsg)
117117
elif isNoneValue(output):
118118
logger.error("unable to retrieve xp_cmdshell output")

0 commit comments

Comments
 (0)