matrix-yararules

Some safe for public yara rules that can be used in Matrix
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-yararules.git
Log | Files | Refs | README

test.yara (302B)


      1 rule TestRule : test_rule
      2 {
      3     meta:
      4         Author = "MTRNord"
      5         Description = "Test Rule"
      6         hash = "06fdc3d7d60da6b884fd69d7d1fd3c824ec417b2b7cdd40a7bb8c9fb72fb655b"
      7         Action = "Notify"
      8     strings:
      9         $test_string = "Test" ascii nocase
     10 
     11     condition:
     12         $test_string
     13 }