Skip to content

Instantly share code, notes, and snippets.

@idiom
Created June 21, 2017 04:14
Show Gist options
  • Save idiom/93ae23dc75cb587886e1b7db938782d8 to your computer and use it in GitHub Desktop.
Save idiom/93ae23dc75cb587886e1b7db938782d8 to your computer and use it in GitHub Desktop.
Yara Rules
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