mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
Fixes #2696
This commit is contained in:
parent
24c261d630
commit
35ba94b3a9
3 changed files with 4 additions and 4 deletions
|
|
@ -121,7 +121,7 @@ class Agent(object):
|
|||
paramString = origValue
|
||||
origValue = origValue.split(kb.customInjectionMark)[0]
|
||||
origValue = origValue[origValue.find(',') + 1:]
|
||||
match = re.search(r"([^;]+)=(?P<value>[^;]+);?\Z", origValue)
|
||||
match = re.search(r"([^;]+)=(?P<value>[^;]*);?\Z", origValue)
|
||||
if match:
|
||||
origValue = match.group("value")
|
||||
elif ',' in paramString:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue