CTF Tool
1. Steganography
Stegsolve
java -jar stegsolve.jar
Steghide
steghide --extract -sf image.jpg
Hexeditor
Online - https://hexed.it/
hexeditor <file.extension>
RAR
unrar e flag.zip
ZIP
unzip file.zip
Aperisolve
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.txt
RAR file
rar2john file.rar > hash.txt
John Crack
john --wordlist=rockyou.txt hash.txt
Hashcat
hashcat -m 13000 hash.txt -a 0 rockyou.txt
mode 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.txt
Case sensitive
"–iname" --> gnore Case sensitive
find –iname “name_of_file”
XXD
xxd file.png | head
xxd file.png | tail
9. Binary
Last updated