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('"', '\\"')