Skip to content

Commit 4f2a883

Browse files
committed
Update for #5508
1 parent 89e8b6e commit 4f2a883

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

lib/core/option.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2830,10 +2830,6 @@ def _basicOptionValidation():
28302830
errMsg = "value for option '--time-sec' must be a positive integer"
28312831
raise SqlmapSyntaxException(errMsg)
28322832

2833-
if conf.uChar and not re.match(UNION_CHAR_REGEX, conf.uChar):
2834-
errMsg = "value for option '--union-char' must be an alpha-numeric value (e.g. 1)"
2835-
raise SqlmapSyntaxException(errMsg)
2836-
28372833
if conf.hashFile and any((conf.direct, conf.url, conf.logFile, conf.bulkFile, conf.googleDork, conf.configFile, conf.requestFile, conf.updateAll, conf.smokeTest, conf.wizard, conf.dependencies, conf.purge, conf.listTampers)):
28382834
errMsg = "option '--crack' should be used as a standalone"
28392835
raise SqlmapSyntaxException(errMsg)

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty.six import unichr as _unichr
2121

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

0 commit comments

Comments
 (0)