0xnhl

CTF Cryptography

/ Update
1 min read

Binary#

attachments/CTF-Cryptography-IMG-20260131120852722

Binary basics : https://learn.sparkfun.com/tutorials/binary

Base64 basics : https://levelup.gitconnected.com/an-introduction-to-base64-encoding-716cdccc58ce

Historical encoding#

Cipher#

Caeser Cipher
Left shift 3

cat cipher.txt | tr "d-za-cD-ZA-C" "a-zA-Z"
bash

The tr command translates text from one set of characters to another, using a mapping. The first parameter to the tr command represents the input set of characters, and the second represents the output set of characters. Hence, if you provide parameters “abcd” and “pqrs”, and the input string to the tr command is “ac”, the output string will be “pr”.


CTF Cryptography
https://nahil.xyz/vault/cryptography/ctf-cryptography/
Author Nahil Rasheed
Published at June 15, 2025
Disclaimer This content is provided strictly for educational purposes only.