Skip to content

Commit

Permalink
Merge pull request Yara-Rules#423 from RandomRhythm/patch-1
Browse files Browse the repository at this point in the history
Tighten Glasses rule
  • Loading branch information
Xumeiquer authored Nov 18, 2021
2 parents b4126f1 + 12c21f7 commit 1d7293e
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions malware/MALW_Glasses.yar
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@

import "pe"

rule GlassesCode : Glasses Family
private rule GlassesCode : Glasses Family
{
meta:
description = "Glasses code features"
author = "Seth Hardy"
last_modified = "2014-07-22"
last_modified = "2021-11-18"
reference_file = "aaf262fde1738dbf0bb50213a9624cd6705ebcaeb06c5fcaf7e9f33695d3fc33"
reference_url = "https://citizenlab.ca/2013/02/apt1s-glasses-watching-a-human-rights-organization/"


strings:
$ = { B8 AB AA AA AA F7 E1 D1 EA 8D 04 52 2B C8 }
Expand All @@ -25,7 +28,9 @@ rule GlassesStrings : Glasses Family
meta:
description = "Strings used by Glasses"
author = "Seth Hardy"
last_modified = "2014-07-22"
last_modified = "2021-11-18"
reference_file = "aaf262fde1738dbf0bb50213a9624cd6705ebcaeb06c5fcaf7e9f33695d3fc33"
reference_url = "https://citizenlab.ca/2013/02/apt1s-glasses-watching-a-human-rights-organization/"

strings:
$ = "thequickbrownfxjmpsvalzydg"
Expand All @@ -42,9 +47,11 @@ rule Glasses : Family
meta:
description = "Glasses family"
author = "Seth Hardy"
last_modified = "2014-07-22"
last_modified = "2021-11-18"
reference_file = "aaf262fde1738dbf0bb50213a9624cd6705ebcaeb06c5fcaf7e9f33695d3fc33"
reference_url = "https://citizenlab.ca/2013/02/apt1s-glasses-watching-a-human-rights-organization/"

condition:
GlassesCode or GlassesStrings
GlassesCode and GlassesStrings
}

0 comments on commit 1d7293e

Please sign in to comment.