Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76b1aca commit f190327Copy full SHA for f190327
1 file changed
tamper/escapequotes.py
@@ -19,8 +19,8 @@ def tamper(payload, **kwargs):
19
"""
20
Slash escape quotes (' and ")
21
22
- >>> tamper("1' AND SLEEP(5)#")
23
- '1\' AND SLEEP(5)#'
+ >>> tamper('1" AND SLEEP(5)#')
+ '1\\\\" AND SLEEP(5)#'
24
25
26
return payload.replace("'", "\\'").replace('"', '\\"')
0 commit comments