mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 11:03:47 +03:00
Removing a debugging leftover
This commit is contained in:
parent
7ad49f4185
commit
63b645c64c
|
@ -19,7 +19,7 @@ from lib.core.enums import OS
|
||||||
from lib.core.revision import getRevisionNumber
|
from lib.core.revision import getRevisionNumber
|
||||||
|
|
||||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||||
VERSION = "1.0.7.7"
|
VERSION = "1.0.7.8"
|
||||||
REVISION = getRevisionNumber()
|
REVISION = getRevisionNumber()
|
||||||
STABLE = VERSION.count('.') <= 2
|
STABLE = VERSION.count('.') <= 2
|
||||||
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
|
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
|
||||||
|
|
|
@ -42,8 +42,6 @@ class HTMLHandler(ContentHandler):
|
||||||
|
|
||||||
elif name == "error":
|
elif name == "error":
|
||||||
regexp = attrs.get("regexp")
|
regexp = attrs.get("regexp")
|
||||||
if "SQL" in regexp:
|
|
||||||
print regexp
|
|
||||||
if regexp not in kb.cache.regex:
|
if regexp not in kb.cache.regex:
|
||||||
keywords = re.findall("\w+", re.sub(r"\\.", " ", regexp))
|
keywords = re.findall("\w+", re.sub(r"\\.", " ", regexp))
|
||||||
keywords = sorted(keywords, key=len)
|
keywords = sorted(keywords, key=len)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user