We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7a237f commit c3a6b71Copy full SHA for c3a6b71
1 file changed
lib/core/option.py
@@ -2466,6 +2466,10 @@ def _basicOptionValidation():
2466
errMsg = "invalid regular expression '%s' ('%s')" % (conf.paramExclude, getSafeExString(ex))
2467
raise SqlmapSyntaxException(errMsg)
2468
2469
+ if conf.cookieDel and len(conf.cookieDel):
2470
+ errMsg = "option '--cookie-del' should contain a single character (e.g. ';')"
2471
+ raise SqlmapSyntaxException(errMsg)
2472
+
2473
if conf.crawlExclude:
2474
try:
2475
re.compile(conf.crawlExclude)
0 commit comments