I have a string like that:
[0-9A-Za-z\+/=]*
How can I converted in the following form:
"\133\x30\55\x39\101\x2d\132\x61\55\x7a\134\x2b\57\x3d\135\x2a"
Is there any function for that ?
I have a string like that:
[0-9A-Za-z\+/=]*
How can I converted in the following form:
"\133\x30\55\x39\101\x2d\132\x61\55\x7a\134\x2b\57\x3d\135\x2a"
Is there any function for that ?
If you want to perform such a string obfuscation, then use something like @Kristians approach. And you can alternate between the two encoding methods with e.g.:
The above code will give you
I'm aware that it doesn't look like the output you expect, but that doesn't seem to be string to hex at all.