mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-22 19:04:30 +03:00
update
This commit is contained in:
parent
da8ae5578b
commit
927ad7bf13
|
@ -67,7 +67,7 @@ class Agent:
|
|||
falseValue = ""
|
||||
negValue = ""
|
||||
retValue = ""
|
||||
newValue = urlencode(newValue)
|
||||
newValue = urlencode(newValue) if place != "URI" else newValue
|
||||
|
||||
if negative or kb.unionNegative:
|
||||
negValue = "-"
|
||||
|
@ -100,7 +100,7 @@ class Agent:
|
|||
elif parameter == "User-Agent":
|
||||
retValue = value.replace(value, newValue)
|
||||
elif parameter == "URI":
|
||||
retValue = value.replace('*', newValue)
|
||||
retValue = value.replace('*', ' %s ' % newValue.replace(value,''))
|
||||
else:
|
||||
paramString = conf.parameters[place]
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user