Tamper function(s) refactoring (really no need for returning headers as they are passed by reference)

This commit is contained in:
Miroslav Stampar
2012-10-25 10:10:23 +02:00
parent 54fbb22ab8
commit 12fc9442b9
36 changed files with 70 additions and 72 deletions

View File

@@ -16,7 +16,7 @@ __priority__ = PRIORITY.NORMAL
def dependencies():
pass
def tamper(payload, headers):
def tamper(payload, headers=None):
"""
Adds multiple spaces around SQL keywords
@@ -46,4 +46,4 @@ def tamper(payload, headers):
retVal = re.sub("(?<=\W)%s(?=[^A-Za-z_(]|\Z)" % word, "%s%s%s" % (' '*random.randrange(1,4), word, ' '*random.randrange(1,4)), retVal)
retVal = re.sub("(?<=\W)%s(?=[(])" % word, "%s%s" % (' '*random.randrange(1,4), word), retVal)
return retVal, headers
return retVal