Created
April 17, 2023 16:39
-
-
Save albertzsigovits/6dfc25a4c02b4cd164832887d99ba3a2 to your computer and use it in GitHub Desktop.
YARA performance bits
This file contains hidden or 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
#0: | |
strings are always evaluated first | |
filesize < 100KB will not help | |
#1: | |
// condition order does not matter, will only short-circuit | |
condition: | |
$str1 and $str2 and uint16(0) == 0xFFFF and ... | |
uint16(0) == 0xFFFF and $str1 and $str2 and ... | |
#2: | |
// avoid these for maximum size atom generation (0-4) | |
// atom-size influences speed | |
avoid regex .* .+ .*? | |
without upper bound (14,) | |
too large (1,300000) | |
big jumps 02 [1-100] 04 | |
alternation { 00 (3E|4B) 3C 00 } // { 00 3E 3C 00} or {00 4B 3C 00} | |
add more specification, fullword | |
avoid nocase | |
#3: | |
better to shortcircuit with uint32() | |
then specifying hex at 0 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment