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 e5863d8 commit 9ad1d12Copy full SHA for 9ad1d12
2 files changed
lib/core/option.py
@@ -1846,7 +1846,7 @@ def _setKnowledgeBaseAttributes(flushAll=True):
1846
kb.permissionFlag = False
1847
kb.postHint = None
1848
kb.postSpaceToPlus = False
1849
- kb.postUrlEncode = True
+ kb.postUrlEncode = False
1850
kb.prependFlag = False
1851
kb.processResponseCounter = 0
1852
kb.previousMethod = None
lib/core/target.py
@@ -683,10 +683,13 @@ def initTargetEnv():
683
class _(unicode):
684
pass
685
686
687
+
688
for key, value in conf.httpHeaders:
689
if key.upper() == HTTP_HEADER.CONTENT_TYPE.upper():
690
kb.postUrlEncode = "urlencoded" in value
691
break
692
693
if kb.postUrlEncode:
694
original = conf.data
695
conf.data = _(urldecode(conf.data))
0 commit comments