Skip to content

Commit 61e0459

Browse files
committed
Minor update
1 parent c5802a5 commit 61e0459

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

lib/core/option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2438,7 +2438,7 @@ def _basicOptionValidation():
24382438
raise SqlmapSyntaxException(errMsg)
24392439

24402440
if conf.hashFile and any((conf.direct, conf.url, conf.logFile, conf.bulkFile, conf.googleDork, conf.configFile, conf.requestFile, conf.updateAll, conf.smokeTest, conf.liveTest, conf.wizard, conf.dependencies, conf.purge, conf.sitemapUrl, conf.listTampers)):
2441-
errMsg = "option '--crack' should be used as a stand-alone"
2441+
errMsg = "option '--crack' should be used as a standalone"
24422442
raise SqlmapSyntaxException(errMsg)
24432443

24442444
if isinstance(conf.uCols, basestring):

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.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.2.12.27"
22+
VERSION = "1.2.12.28"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/parse/cmdline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ def cmdLineParser(argv=None):
670670
# Hidden and/or experimental options
671671
parser.add_option("--crack", dest="hashFile",
672672
help=SUPPRESS_HELP)
673-
#help="Load and crack hashes from a file")
673+
# help="Load and crack hashes from a file (standalone)")
674674

675675
parser.add_option("--dummy", dest="dummy", action="store_true",
676676
help=SUPPRESS_HELP)

txt/checksum.md5

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ cada93357a7321655927fc9625b3bfec lib/core/exception.py
4242
1e5532ede194ac9c083891c2f02bca93 lib/core/__init__.py
4343
458a194764805cd8312c14ecd4be4d1e lib/core/log.py
4444
7d6edc552e08c30f4f4d49fa93b746f1 lib/core/optiondict.py
45-
44819c32482eedd3dbf5d7c1fd108a7a lib/core/option.py
45+
9e12c63430c653970cbc4c6bc6984784 lib/core/option.py
4646
c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
4747
6783160150b4711d02c56ee2beadffdb lib/core/profiling.py
4848
6f654e1715571eff68a0f8af3d62dcf8 lib/core/readlineng.py
4949
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
5050
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5151
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
52-
e169d79e808fc6c60f8f827a18fae1bf lib/core/settings.py
52+
7bce3bb49e9a84585266da82e3a6fdb5 lib/core/settings.py
5353
a971ce157d04de96ba6e710d3d38a9a8 lib/core/shell.py
5454
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5555
1581be48127a3a7a9fd703359b6e7567 lib/core/target.py
@@ -60,7 +60,7 @@ b35636650cfe721f5cc47fb91737c061 lib/core/update.py
6060
e772deb63270375e685fa5a7b775c382 lib/core/wordlist.py
6161
1e5532ede194ac9c083891c2f02bca93 lib/__init__.py
6262
7620f1f4b8791e13c7184c06b5421754 lib/parse/banner.py
63-
cfd7938668213fef65a7570997b78403 lib/parse/cmdline.py
63+
0f92bdaacd8210520bdd6e0c531c70cd lib/parse/cmdline.py
6464
fb2e2f05dde98caeac6ccf3e67192177 lib/parse/configfile.py
6565
3794ff139869f5ae8e81cfdbe5714f56 lib/parse/handler.py
6666
6bab53ea9d75bc9bb8169d3e8f3f149f lib/parse/headers.py

0 commit comments

Comments
 (0)