From 291d20329c003b38dd8793d1b806f8ef2a76a0c9 Mon Sep 17 00:00:00 2001 From: Mehmet Leblebici Date: Mon, 7 Oct 2019 15:28:29 +0300 Subject: [PATCH] Update quote2dollars.py --- tamper/quote2dollars.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tamper/quote2dollars.py b/tamper/quote2dollars.py index f102bc033..849adf3a0 100644 --- a/tamper/quote2dollars.py +++ b/tamper/quote2dollars.py @@ -22,7 +22,7 @@ def tamper(payload, **kwargs): Notes: useful for applications that use PostgreSQL database and encodes or sanitizes quote characters >>> tamper("1' or '1'='1") - "1$$ or $$1$$=$$1" + '1$$ or $$1$$=$$1' """ return payload.replace("'", "$$")