mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-07-27 16:39:54 +03:00
Create quotetodollars.py
This commit is contained in:
parent
9fd4a4f0d1
commit
a51ccf7561
25
tamper/quotetodollars.py
Normal file
25
tamper/quotetodollars.py
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
"""
|
||||||
|
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
|
||||||
|
See the file 'LICENSE' for copying permission
|
||||||
|
"""
|
||||||
|
|
||||||
|
from lib.core.enums import PRIORITY
|
||||||
|
|
||||||
|
__priority__ = PRIORITY.NORMAL
|
||||||
|
|
||||||
|
def dependencies():
|
||||||
|
pass
|
||||||
|
|
||||||
|
def tamper(payload, **kwargs):
|
||||||
|
"""
|
||||||
|
Tested on PostgreSQL 12.0
|
||||||
|
|
||||||
|
Replace single and double quotes with dollar signs (e.g. ' -> $$)
|
||||||
|
|
||||||
|
>>> tamper("1' or '1'='1")
|
||||||
|
"1$$ or $$1$$=$$1"
|
||||||
|
"""
|
||||||
|
|
||||||
|
return payload.replace("'", "$$'").replace('"', '$$')
|
Loading…
Reference in New Issue
Block a user