mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Major bug fix in url-encoding
This commit is contained in:
parent
c18a5cb92f
commit
2825ab5e4e
1 changed files with 3 additions and 1 deletions
|
|
@ -26,6 +26,7 @@ import re
|
|||
|
||||
from lib.core.common import randomInt
|
||||
from lib.core.common import randomStr
|
||||
from lib.core.convert import urlencode
|
||||
from lib.core.data import conf
|
||||
from lib.core.data import kb
|
||||
from lib.core.data import queries
|
||||
|
|
@ -52,6 +53,7 @@ class Agent:
|
|||
falseValue = ""
|
||||
negValue = ""
|
||||
retValue = ""
|
||||
newValue = urlencode(newValue)
|
||||
|
||||
if negative or conf.paramNegative:
|
||||
negValue = "-"
|
||||
|
|
|
|||
Loading…
Reference in a new issue