mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Update agent.py
This commit is contained in:
parent
69701ba08c
commit
00fc842c6f
|
@ -110,6 +110,9 @@ class Agent(object):
|
|||
paramString = origValue
|
||||
origValue = origValue.split(CUSTOM_INJECTION_MARK_CHAR)[0]
|
||||
origValue = origValue[origValue.index(',') + 1:]
|
||||
match = re.search(r"([^;]+)=(?P<value>[^;]+);?\Z", origValue)
|
||||
if match:
|
||||
origValue = match.group("value")
|
||||
|
||||
if conf.prefix:
|
||||
value = origValue
|
||||
|
|
Loading…
Reference in New Issue
Block a user