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 d65d9e2 commit 987f167Copy full SHA for 987f167
1 file changed
lib/request/basic.py
@@ -267,6 +267,6 @@ def processResponse(page, responseHeaders):
267
match = re.search(regex, page)
268
if match and PLACE.POST in conf.parameters:
269
name, value = match.groups()
270
- conf.parameters[PLACE.POST] = re.sub("(%s=)[^&]+" % name, r"\g<1>%s" % value, conf.parameters[PLACE.POST])
+ conf.parameters[PLACE.POST] = re.sub("(?i)(%s=)[^&]+" % name, r"\g<1>%s" % value, conf.parameters[PLACE.POST])
271
if PLACE.POST in conf.paramDict and name in conf.paramDict[PLACE.POST]:
272
conf.paramDict[PLACE.POST][name] = value
0 commit comments