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 d434047 commit 2f4e34fCopy full SHA for 2f4e34f
1 file changed
lib/core/agent.py
@@ -80,6 +80,9 @@ def payload(self, place=None, parameter=None, value=None, newValue=None, where=N
80
if place == PLACE.URI:
81
origValue = origValue.split(URI_INJECTION_MARK_CHAR)[0]
82
origValue = origValue[origValue.rfind('/') + 1:]
83
+ for char in ('?', '=', ':'):
84
+ if char in origValue:
85
+ origValue = origValue[origValue.rfind(char) + 1:]
86
87
if value is None:
88
if where == PAYLOAD.WHERE.ORIGINAL:
0 commit comments