-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy path1.py
49 lines (33 loc) · 1.17 KB
/
1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
"""
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Replaces space character (' ') with plus ('/**)*/')
>>> tamper('SELECT id FROM users')
'SELECT/**)*/id/**)*/FROM/**)*/users'
"""
retVal = payload
if payload:
retVal = ""
quote, doublequote, firstspace = False, False, False
for i in xrange(len(payload)):
if not firstspace:
if payload<i>.isspace():
firstspace = True
retVal += "/**)*/"
continue
elif payload<i> == '\'':
quote = not quote
elif payload<i> == '"':
doublequote = not doublequote
elif payload<i> == " " and not doublequote and not quote:
retVal += "/**)*/"
continue
retVal += payload<i>
return retVal</i></i></i></i></i>