Skip to content

Instantly share code, notes, and snippets.

@jan-swiecki
Created March 16, 2023 18:36
Show Gist options
  • Save jan-swiecki/ad6bf37687f3fa53716d9ce6fceb5cde to your computer and use it in GitHub Desktop.
Save jan-swiecki/ad6bf37687f3fa53716d9ce6fceb5cde to your computer and use it in GitHub Desktop.
yara_test.yar
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