Created
March 16, 2023 18:36
-
-
Save jan-swiecki/ad6bf37687f3fa53716d9ce6fceb5cde to your computer and use it in GitHub Desktop.
yara_test.yar
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 Hello { | |
strings: | |
// A string to match -- default is ascii | |
$ascii_string = "hello" | |
condition: | |
// The condition to match | |
$ascii_string | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment