Created
June 21, 2017 04:14
-
-
Save idiom/93ae23dc75cb587886e1b7db938782d8 to your computer and use it in GitHub Desktop.
Yara Rules
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
rule rarsfx{ | |
strings: | |
$markerold = {52 45 7e 5e} | |
$markernew = {52 61 72 21 1a 07 (00|01|02)} | |
condition: | |
$markerold or $markernew in (0..0x100000) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment