Skip to content

Commit

Permalink
New Query: TimbreStealer Install Paths THR-2772/ Bug 2679082
Browse files Browse the repository at this point in the history
  • Loading branch information
dzim2 committed Mar 1, 2024
1 parent d2e7f14 commit bcac9f8
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packs/win_malware.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1762,6 +1762,15 @@
"platform": [
"windows"
]
},
"TimbreStealer Install Path": {
"query": "SELECT f.path, f.directory, f.filename, h.sha256, f.uid, f.gid, f.mode, f.size, DATETIME(f.atime, 'unixepoch','UTC') AS last_access_time, DATETIME(f.mtime, 'unixepoch','UTC') AS last_modified, DATETIME(f.ctime, 'unixepoch', 'UTC') AS last_status_change_time, DATETIME(f.btime, 'unixepoch', 'UTC') AS creation_time FROM file f JOIN hash h ON f.path = h.path WHERE ( f.path = 'C:\Windows\Installer\{1737AB55-BEDD-659D-7BD3-BB35D6A6342D}\ApplicationIcon.ico' and f.size > 2000000 ) or ( f.path like '\Windows\AddressP\Cecujujajofubo475.dll' and f.size > 1000000 ) ORDER BY mtime DESC LIMIT 5;",
"interval": 86400,
"snapshot": true,
"description": "Files associated with the TimbreStealer malware were detected. TimbreStealer largely targets Latin American countries and is commonly distributed through spam campaigns. The main goal of this of malware is finacially motivated information theft.",
"platform": [
"windows"
]
}
}
}
38 changes: 38 additions & 0 deletions win_malware/timbrestealer_install_paths.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
TimbreStealer Install Path:
description: Files associated with the TimbreStealer malware were detected. TimbreStealer
largely targets Latin American countries and is commonly distributed through spam campaigns.
The main goal of this of malware is finacially motivated information theft.
query: SELECT f.path, f.directory, f.filename, h.sha256, f.uid, f.gid, f.mode, f.size,
DATETIME(f.atime, 'unixepoch','UTC') AS last_access_time, DATETIME(f.mtime, 'unixepoch',
'UTC') AS last_modified, DATETIME(f.ctime, 'unixepoch', 'UTC') AS last_status_change_time,
DATETIME(f.btime, 'unixepoch', 'UTC') AS creation_time FROM file f JOIN hash h
ON f.path = h.path
WHERE
(
f.path = "C:\Windows\Installer\{1737AB55-BEDD-659D-7BD3-BB35D6A6342D}\ApplicationIcon.ico"
and f.size > 2000000
)
or
(
f.path like "\Windows\AddressP\Cecujujajofubo475.dll"
and f.size > 1000000
)
ORDER BY mtime DESC LIMIT 5;
interval: 86400
snapshot: true
references:
- 5EFA99B3CB17BEC76FEC2724BCFCC6423D0231BBA9CF9C1AED63005E4C3C2875
mitre_tactics:
- Initial Access: TA0001
- Execution: TA0002
- Persistence: TA0003
- Defense Evasion: TA0005
mitre_techniques:
- Debugger Evasion: T1622
- Deobfuscate/Decode Files or Information: T1140
- Execution Guardrails: T1480
- Gather Victim Identity Information: T1589
- Native API: T1106
- Obfuscated Files or Information: T1027
platform:
- windows

0 comments on commit bcac9f8

Please sign in to comment.