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 4d93712 commit ef42495Copy full SHA for ef42495
2 files changed
lib/core/settings.py
@@ -17,7 +17,7 @@
17
from lib.core.enums import OS
18
19
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
20
-VERSION = "1.3.4.7"
+VERSION = "1.3.4.8"
21
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
22
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
23
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
waf/safeline.py
@@ -15,5 +15,7 @@ def detect(get_page):
15
for vector in WAF_ATTACK_VECTORS:
16
page, _, _ = get_page(get=vector)
retval = all(_ in (page or "") for _ in ("SafeLine", "<!-- event_id:"))
+ if retval:
+ break
return retval
0 commit comments