Created
February 10, 2022 01:54
-
-
Save shollingsworth/c10ea3157fd30b5e4d75c1f2cd739649 to your computer and use it in GitHub Desktop.
sqlmap tamper script template
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 python3 | |
| """ | |
| Copyright (c) 2006-2021 sqlmap developers (http://sqlmap.org/) | |
| See the file 'LICENSE' for copying permission | |
| """ | |
| # import os | |
| # import re | |
| # from lib.core.convert import encodeBase64 | |
| from lib.core.enums import PRIORITY | |
| __priority__ = PRIORITY.LOW | |
| def dependencies(): | |
| pass | |
| def tamper(payload, **_): | |
| return "".join([hex(ord(i)).replace("0x", r"\u00") for i in payload]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment