Last active
July 16, 2023 14:57
-
-
Save MarkBaggett/49aca627205aebaa2be1811511dbc422 to your computer and use it in GitHub Desktop.
Python - SQLMAP - Tamper Script for Custom Caesar Cypher
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from lib.core.data import kb | |
from lib.core.enums import PRIORITY | |
import string | |
__priority__ = PRIORITY.NORMAL | |
def dependencies(): | |
pass | |
def tamper(payload, **kwargs): | |
orig = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" | |
srvr = "QqnPvka03wMU6ZybjmK4BRSEWdVishgClpI1AouFNOJ9zrtL2Yef7Tc8GxDHX5" | |
return payload.translate(string.maketrans(orig,srvr)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for you reply but i don't have any knowledge in programing