Forensics tools 24
Read files at the byte level: hex views, entropy, byte frequency, embedded file carving, string extraction, ASN.1 and ELF parsing, and steganography checks. Built for CTF work and incident response, where uploading the sample is often the one thing you must not do.
Look at the bytes10
Identify & extract5
Parse structures4
Images & audio4
Cipher analysis1
Questions
Is it safe to analyse a suspicious file here?
The file is never uploaded, which is the property these tools exist for. It is parsed in the page, so nothing executes it. Handle a live sample with the care your own procedures require; this site simply does not transmit it anywhere.
What does a high entropy value mean?
That the bytes are close to random, which fits encryption, compression and already-compressed media equally well. It is a signal to look further, not proof of anything. The tool page for entropy analysis says so.
Can I carve embedded files out of an image?
Yes. Scan embedded files reports signatures found at offsets and Extract embedded files pulls them out. Short signatures match by chance, so a hit is a lead rather than a finding.
Do these tools identify a file by content?
The file type detector reads magic bytes rather than the extension. The image tools are the exception: they pick a codec from the extension, which the pages note.
What if steganography extraction finds nothing?
It rules out one specific bit layout and nothing else. An empty result is not evidence of a clean file, and eight printable characters can appear by chance. The tool page for LSB extraction states both limits.