-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'darkme2' into 'master'
New Query: DarkMe Malware Registry See merge request malware-team/osquery_queries!320
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
malware_darkme_registry: | ||
query: 'SELECT key as reg_key, path, name, data, datetime(mtime, "unixepoch", "UTC") | ||
as last_modified FROM registry WHERE key LIKE "HKEY_USERS\S-%\Software\Classes\CLSID\%\ProgID" | ||
AND data LIKE "NoProjectName.familytool"' | ||
interval: 86400 | ||
snapshot: true | ||
description: DarkMe is a remote access trojan (RAT) written in VB6. It is used by the Water Hydra | ||
threat actor group to access victim machines and registers the device to a remote command | ||
and control server. | ||
references: | ||
- https://www.virustotal.com/gui/file/d123d92346868aab77ac0fe4f7a1293ebb48cf5af1b01f85ffe7497af5b30738 | ||
mitre_tactics: | ||
- Persistence: TA0003 | ||
mitre_techniques: | ||
- Modify Registry: T1112 | ||
platform: | ||
- windows |