mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Update agent.py
This commit is contained in:
parent
69701ba08c
commit
00fc842c6f
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user