sqlmap tamper编写
Posted FireC@t @ Perl6
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sqlmap tamper编写相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python
"""
Copyright (c) 2006-2017 sqlmap developers (http://sqlmap.org/)
See the file ‘doc/COPYING‘ for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
def dependencies():
pass
def tamper(payload, **kwargs):
payload = payload.replace(‘UNION‘,‘/*8888888888888UNION‘)
print kwargs
return payload
说明:
tamper 就是 sqlmap 注入的 payload
kwargs 是一些header 信息
以上是关于sqlmap tamper编写的主要内容,如果未能解决你的问题,请参考以下文章
SQLMAP深入分析-使用篇(基础使用进阶命令tamper脚本)