Created
May 30, 2024 21:01
-
-
Save edeca/643483f5ce8914094cd808c7734bed41 to your computer and use it in GitHub Desktop.
A simple YARA rule to check every other byte has zero as upper nibble
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Posted in answer to the question: | |
* | |
* "As a Yara rule, what's the right way to specify that every byte | |
* at an odd address must have a zero as its upper nybble? | |
* | |
* Should I use an iterator for this, or is there a better way?" | |
* | |
* Asked by @travisgoodspeed on Twitter / X: | |
* https://x.com/travisgoodspeed/status/1795911866411008003 | |
* | |
* Iterator based example by @edeca. | |
* | |
* Performance optimisation using uint32(..) & 0xF0F0F0F0 left to the reader :) | |
*/ | |
rule every_odd_byte_zero_upper_nibble { | |
condition: | |
for all i in (0..filesize-1) : (i & 0x1 == 0 or uint8(i) & 0xF0 == 0) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment