mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
bug fix(es) (flags were used in place of count parameter in re.sub() calls)
This commit is contained in:
parent
9433bbe26d
commit
60146481af
2 changed files with 2 additions and 2 deletions
|
|
@ -96,7 +96,7 @@ def urlencode(value, safe="%&=", convall=False, limit=False):
|
|||
# encoded (when not representing url encoded char)
|
||||
# except in cases when tampering scripts are used
|
||||
if all(map(lambda x: '%' in x, [safe, value])) and not kb.tamperFunctions:
|
||||
value = re.sub("%(?![0-9a-fA-F]{2})", "%25", value, re.DOTALL | re.IGNORECASE)
|
||||
value = re.sub("%(?![0-9a-fA-F]{2})", "%25", value)
|
||||
|
||||
while True:
|
||||
result = urllib.quote(utf8encode(value), safe)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue