mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-21 17:16:35 +03:00
Trivial update
This commit is contained in:
parent
24aadbd850
commit
7dae324ed6
|
@ -1054,11 +1054,11 @@ class Connect(object):
|
|||
|
||||
match = re.search(r"%s=[^&]*" % re.escape(parameter), paramString, re.I)
|
||||
if match:
|
||||
retVal = re.sub("(?i)%s" % re.escape(match.group(0)), ("%s=%s" % (parameter, newValue)).replace('\\', r'\\'), paramString)
|
||||
retVal = re.sub(r"(?i)%s" % re.escape(match.group(0)), ("%s=%s" % (parameter, newValue)).replace('\\', r'\\'), paramString)
|
||||
else:
|
||||
match = re.search(r"(%s[\"']:[\"'])([^\"']+)" % re.escape(parameter), paramString, re.I)
|
||||
if match:
|
||||
retVal = re.sub("(?i)%s" % re.escape(match.group(0)), "%s%s" % (match.group(1), newValue), paramString)
|
||||
retVal = re.sub(r"(?i)%s" % re.escape(match.group(0)), "%s%s" % (match.group(1), newValue), paramString)
|
||||
|
||||
return retVal
|
||||
|
||||
|
|
6
thirdparty/identywaf/data.json
vendored
Normal file → Executable file
6
thirdparty/identywaf/data.json
vendored
Normal file → Executable file
|
@ -431,6 +431,12 @@
|
|||
"e34c:RVZXum60OEhCWapAYKYPkoJyWOpohM4IiUYMr2RWg1qQJLX2uhdOn9htOj+hX7AB16FcPxJPdLsXomtKaK59nui6c4RmkgI2FZjxtDtAeq+c3qA4chS1XKTC"
|
||||
]
|
||||
},
|
||||
"kuipernet": {
|
||||
"company": "ASTSoft",
|
||||
"name": "Kuipernet",
|
||||
"regex": "(?s)Content-Length: 118214.+W5M0MpCehiHzreSzNTczkc9d",
|
||||
"signatures": []
|
||||
},
|
||||
"malcare": {
|
||||
"company": "Inactiv",
|
||||
"name": "MalCare",
|
||||
|
|
2
thirdparty/identywaf/identYwaf.py
vendored
2
thirdparty/identywaf/identYwaf.py
vendored
|
@ -60,7 +60,7 @@ else:
|
|||
HTTPCookieProcessor = urllib2.HTTPCookieProcessor
|
||||
|
||||
NAME = "identYwaf"
|
||||
VERSION = "1.0.122"
|
||||
VERSION = "1.0.124"
|
||||
BANNER = r"""
|
||||
` __ __ `
|
||||
____ ___ ___ ____ ______ `| T T` __ __ ____ _____
|
||||
|
|
Loading…
Reference in New Issue
Block a user