I am using SQLmap and want to hex-entity-encode the input before SQLmap sends it to the server.
For example, hex-entity-encoding of "abc" should return abc
I know that I should use a python tamper script which should hex-entity-encode the given input. But I don't know how I could hex-entity-encode data in Python.
May someone can help?
Apply formatted string literals (also called f-strings for short) e.g. as follows:
or e.g. (see Format Specification Mini-Language)