Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ef42495

Browse files
committed
Patch regarding #3579
1 parent 4d93712 commit ef42495

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from lib.core.enums import OS
1818

1919
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
20-
VERSION = "1.3.4.7"
20+
VERSION = "1.3.4.8"
2121
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2222
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2323
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

waf/safeline.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,7 @@ def detect(get_page):
1515
for vector in WAF_ATTACK_VECTORS:
1616
page, _, _ = get_page(get=vector)
1717
retval = all(_ in (page or "") for _ in ("SafeLine", "<!-- event_id:"))
18+
if retval:
19+
break
1820

1921
return retval

0 commit comments

Comments
 (0)