mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
38 lines
1000 B
Python
38 lines
1000 B
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
Copyright (c) 2006-2024 sqlmap developers (https://sqlmap.org/)
|
|
See the file 'LICENSE' for copying permission
|
|
"""
|
|
|
|
import os
|
|
|
|
from lib.core.common import singleTimeWarnMessage
|
|
from lib.core.enums import DBMS
|
|
from lib.core.enums import PRIORITY
|
|
|
|
__priority__ = PRIORITY.LOWEST
|
|
|
|
def dependencies():
|
|
singleTimeWarnMessage("tamper script '%s' is only meant to be run against %s" % (os.path.basename(__file__).split(".")[0], DBMS.ACCESS))
|
|
|
|
def tamper(payload, **kwargs):
|
|
"""
|
|
Appends (Access) NULL byte character (%00) at the end of payload
|
|
|
|
Requirement:
|
|
* Microsoft Access
|
|
|
|
Notes:
|
|
* Useful to bypass weak web application firewalls when the back-end
|
|
database management system is Microsoft Access - further uses are
|
|
also possible
|
|
|
|
Reference: http://projects.webappsec.org/w/page/13246949/Null-Byte-Injection
|
|
|
|
>>> tamper('1 AND 1=1')
|
|
'1 AND 1=1%00'
|
|
"""
|
|
|
|
return "%s%%00" % payload if payload else payload
|