From f190327da38cec7478961d0158124e251862f9b1 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Sat, 27 Feb 2016 15:41:15 +0100 Subject: [PATCH] Minor update --- tamper/escapequotes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tamper/escapequotes.py b/tamper/escapequotes.py index fc85cd9ab..5a3acadfb 100644 --- a/tamper/escapequotes.py +++ b/tamper/escapequotes.py @@ -19,8 +19,8 @@ def tamper(payload, **kwargs): """ Slash escape quotes (' and ") - >>> tamper("1' AND SLEEP(5)#") - '1\' AND SLEEP(5)#' + >>> tamper('1" AND SLEEP(5)#') + '1\\\\" AND SLEEP(5)#' """ return payload.replace("'", "\\'").replace('"', '\\"')