Skip to content

Instantly share code, notes, and snippets.

@tlansec
Created July 21, 2022 09:27
Show Gist options
  • Save tlansec/d55fdc51c79b3d27d38ad7b16f53f7d7 to your computer and use it in GitHub Desktop.
Save tlansec/d55fdc51c79b3d27d38ad7b16f53f7d7 to your computer and use it in GitHub Desktop.
Print out information about a files entropy
// Add as an alias like:
// alias entropy=yara /path/to/entropy.yar $*
// Usage:
// entropy file.bin
import "console"
import "math"
rule entropy
{
condition:
console.log(math.entropy(0, filesize))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment