Reverse Engineering CheatSheet
104 words
One minute
SHA256 Files in Folder
1
| find . -maxdepth 1 -type f | while read i; mv $i (sha256sum $i | grep -Po '^[a-f0-9]+'); end
|
Download Hashes from Clipboard
1
| xclip -o -s -c | xargs -I {} echo "vt download {}" | parallel -j 8 {}
|
Binlex Top 10 Traits
1
| find samples/ -type f | while read i; binlex -i $i | jq -r 'trait' | sort | uniq; end | sort | uniq -c | sort -rn | head -10
|
Capture PCAP
1
| tshark -i lo -F libpcap -w (date +"%Y-%m-%d").pcap
|
Linux TTS
1
| flite --setf duration_stretch=0.5 -voice slt -t "Hello World!"
|