Exploitation
Blacklist bypass
Encoding the payload
# classic base64
base64_encode("secret"); // "c2VjcmV0"
base64_decode("c2VjcmV0"); // "secret"
# hex
bin2hex("ABC"); // "414243"
hex2bin("414243"); // "ABC"
# other functions
strrev() # reverse the String
str_repeat("a", 5); # "aaaaa"
str_rot13() # shifts each letter 13 places in the alphabet (ROT13).
gzencode() # encodes by gzip (binary)
gzdecode() # decodes by gzip (binary)Alternate strings
Predefined functions
Reflection
Last updated