mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
7 lines
147 B
Python
7 lines
147 B
Python
def tamper(place, value):
|
|
print "Hi, World!"
|
|
print value
|
|
if place=="GET" and value:
|
|
value=value.upper()
|
|
return value
|