Encoding & Decoding
Base64
Encode
echo 'https://www.hackthebox.eu/' | base64
# aHR0cHM6Ly93d3cuaGFja3RoZWJveC5ldS8K
# Encode a file
base64 file.txt > encoded.txt
cat file.txt | base64Decode
echo 'aHR0cHM6Ly93d3cuaGFja3RoZWJveC5ldS8K' | base64 -d
# https://www.hackthebox.eu/
# Decode a file
base64 -d encoded.txt > decoded.txtSpotting Base64
Hex
Encode
Decode
Spotting Hex
ROT13
Encode/Decode (Same Command)
Online Tool
URL Encoding
Encode (Python)
Decode (Python)
Common URL Encoded Characters
Character
Encoded
Cipher Identification
Online Tools
JavaScript Deobfuscation
Beautify Minified JS
Online Tools
Tool
URL
Use Case
Recognizing Packer Obfuscation
Manual Deobfuscation Trick
Last updated