diff --git a/lib/core/settings.py b/lib/core/settings.py index eac999f4b..d1e683d22 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -19,7 +19,7 @@ from lib.core.enums import OS from lib.core.revision import getRevisionNumber # sqlmap version (...) -VERSION = "1.0.7.7" +VERSION = "1.0.7.8" REVISION = getRevisionNumber() STABLE = VERSION.count('.') <= 2 VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev") diff --git a/lib/parse/html.py b/lib/parse/html.py index 8123b1ee0..d5b6c6200 100644 --- a/lib/parse/html.py +++ b/lib/parse/html.py @@ -42,8 +42,6 @@ class HTMLHandler(ContentHandler): elif name == "error": regexp = attrs.get("regexp") - if "SQL" in regexp: - print regexp if regexp not in kb.cache.regex: keywords = re.findall("\w+", re.sub(r"\\.", " ", regexp)) keywords = sorted(keywords, key=len)