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?