mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-02-06 15:39:37 +03:00
18 lines
351 B
Python
18 lines
351 B
Python
#!/usr/bin/env python
|
|
|
|
from urllib.parse import quote
|
|
from lib.core.enums import PRIORITY
|
|
__priority__ = PRIORITY.NORMAL
|
|
|
|
def dependencies():
|
|
pass
|
|
|
|
def tamper(payload, **kwargs):
|
|
"""
|
|
Standard url encoder using quote
|
|
>>> tamper('select user from users;--+')
|
|
'select%20user%20from%20users%3B--%2B'
|
|
"""
|
|
|
|
return quote(payload)
|