mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-09 17:51:33 +00:00
Minor patch on request of an user
This commit is contained in:
parent
c2b2ccd2b5
commit
e73ac6c8e3
2 changed files with 8 additions and 4 deletions
|
|
@ -3360,6 +3360,8 @@ def randomizeParameterValue(value):
|
|||
|
||||
retVal = value
|
||||
|
||||
value = re.sub(r"%[0-9a-fA-F]{2}", "", value)
|
||||
|
||||
for match in re.finditer('[A-Z]+', value):
|
||||
retVal = retVal.replace(match.group(), randomStr(len(match.group())).upper())
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue