mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Update agent.py
This commit is contained in:
@@ -110,6 +110,9 @@ class Agent(object):
|
|||||||
paramString = origValue
|
paramString = origValue
|
||||||
origValue = origValue.split(CUSTOM_INJECTION_MARK_CHAR)[0]
|
origValue = origValue.split(CUSTOM_INJECTION_MARK_CHAR)[0]
|
||||||
origValue = origValue[origValue.index(',') + 1:]
|
origValue = origValue[origValue.index(',') + 1:]
|
||||||
|
match = re.search(r"([^;]+)=(?P<value>[^;]+);?\Z", origValue)
|
||||||
|
if match:
|
||||||
|
origValue = match.group("value")
|
||||||
|
|
||||||
if conf.prefix:
|
if conf.prefix:
|
||||||
value = origValue
|
value = origValue
|
||||||
|
|||||||
Reference in New Issue
Block a user