Encoding/decoding

CyberChef can encode and decode a wide variety of languages. It's especially useful when the encoding technique is unknown, as it offers functionality to automatically detect and decode the encoding method used.

Base64/HEX/ROT13 encoding and decoding

Encode to base64 and then to md5sum

Tip: We are using the -n flag with echo, and the -w 0 flag with base64, to avoid adding newlines, in order to be able to calculate the md5 hash

  • Script to automatically perform a encoding for uid's starting from 1 to 10.

    • Using tr -d to remove the trailing - characters, as follows:

Last updated