Thanks to visit codestin.com Credit goes to github.com
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 7fea8d6 commit 1a818ceCopy full SHA for 1a818ce
2 files changed
lib/core/settings.py
@@ -19,7 +19,7 @@
19
from lib.core.revision import getRevisionNumber
20
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
-VERSION = "1.0.7.27"
+VERSION = "1.0.7.28"
23
REVISION = getRevisionNumber()
24
STABLE = VERSION.count('.') <= 2
25
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
sqlmap.py
@@ -213,6 +213,11 @@ def main():
213
logger.error(errMsg)
214
raise SystemExit
215
216
+ elif "in _loadQueries" in excMsg:
217
+ errMsg = "invalid structure of 'xml/queries.xml' file"
218
+ logger.error(errMsg)
219
+ raise SystemExit
220
+
221
elif "_mkstemp_inner" in excMsg:
222
errMsg = "there has been a problem while accessing temporary files"
223
0 commit comments