mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
new tamper script
This commit is contained in:
parent
8a36f7fc03
commit
caf22b58bc
37
tamper/versionedkeywords2.py
Normal file
37
tamper/versionedkeywords2.py
Normal file
|
@ -0,0 +1,37 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
"""
|
||||
$Id: versionedkeywords.py 3982 2011-05-28 17:34:43Z stamparm $
|
||||
|
||||
Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/)
|
||||
See the file 'doc/COPYING' for copying permission
|
||||
"""
|
||||
|
||||
import re
|
||||
|
||||
from lib.core.common import randomRange
|
||||
from lib.core.data import kb
|
||||
from lib.core.enums import PRIORITY
|
||||
|
||||
__priority__ = PRIORITY.NORMAL
|
||||
|
||||
def tamper(payload):
|
||||
"""
|
||||
Encloses each non-function keyword with versioned MySQL comment
|
||||
Example: 'INSERT' will become '/*!INSERT*/'
|
||||
"""
|
||||
|
||||
def process(match):
|
||||
word = match.group('word')
|
||||
if word.upper() in kb.keywords:
|
||||
return match.group().replace(word, "/*!%s*/" % word)
|
||||
else:
|
||||
return match.group()
|
||||
|
||||
retVal = payload
|
||||
|
||||
if payload:
|
||||
retVal = re.sub(r"(?<=\W)(?P<word>[A-Za-z_]+)(?=[^\w(]|\Z)", lambda match: process(match), retVal)
|
||||
retVal = retVal.replace(" /*!", "/*!").replace("*/ ", "*/")
|
||||
|
||||
return retVal
|
Loading…
Reference in New Issue
Block a user