CTF Tool
1. Steganography
Stegsolve
java -jar stegsolve.jarSteghide
steghide --extract -sf image.jpgHexeditor
Online - https://hexed.it/
hexeditor <file.extension>RAR
unrar e flag.zipZIP
unzip file.zipAperisolve
Extract and check on file (jpg/png/pdf)
2. Cryptography
Cyber Chef
Cipher Identifier
Magic in Cyber Chef
Dcode Cipher Identifier - https://www.dcode.fr/cipher-identifier
Decode
Base64
base64 -d <<<"base64_encoded_string"3. Web
Browser
Robots.txt
Inspect
View-source
Burp Suite
Proxy
Repeater
Decoder
4. OSINT
5. Forensic
Crack
ZIP file
zip2john file.rar > hash.txtRAR file
rar2john file.rar > hash.txtJohn Crack
john --wordlist=rockyou.txt hash.txtHashcat
hashcat -m 13000 hash.txt -a 0 rockyou.txtmode reference:
6. Misc
Audacity
Install (Windows/MacOS/Linux) - https://www.audacityteam.org/download/
Online - https://wavacity.com/
Sonic Visualiser
7. Reverse Eng
oletools
https://github.com/decalage2/oletools
8. Linux
Find
To find a file
"–name" --> look for files with that name
find –name file.txtCase sensitive
"–iname" --> gnore Case sensitive
find –iname “name_of_file”XXD
xxd file.png | headxxd file.png | tail9. Binary
Last updated