File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919from lib .core .revision import getRevisionNumber
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.0.5.106 "
22+ VERSION = "1.0.5.107 "
2323REVISION = getRevisionNumber ()
2424STABLE = VERSION .count ('.' ) <= 2
2525VERSION_STRING = "sqlmap/%s#%s" % (VERSION , "stable" if STABLE else "dev" )
Original file line number Diff line number Diff line change @@ -13,9 +13,10 @@ def detect(get_page):
1313 retval = False
1414
1515 for vector in WAF_ATTACK_VECTORS :
16- page , _ , _ = get_page (get = vector )
16+ page , _ , code = get_page (get = vector )
1717 retval = "ASP.NET has detected data in the request that is potentially dangerous" in (page or "" )
1818 retval |= "Request Validation has detected a potentially dangerous client input value" in (page or "" )
19+ retval |= code == 500 and "HttpRequestValidationException" in page
1920 if retval :
2021 break
2122
You can’t perform that action at this time.
0 commit comments