Skip to content

Commit 0cecf1e

Browse files
authored
Update Stealc.yar (#2674)
1 parent 594757b commit 0cecf1e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

data/yara/CAPE/Stealc.yar

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import "pe"
12
rule Stealc
23
{
34
meta:
@@ -9,7 +10,9 @@ rule Stealc
910
$nugget1 = {68 04 01 00 00 6A 00 FF 15 [4] 50 FF 15}
1011
$nugget2 = {64 A1 30 00 00 00 8B 40 0C 8B 40 0C 8B 00 8B 00 8B 40 18 89 45 FC}
1112
condition:
12-
uint16(0) == 0x5A4D and any of them
13+
uint16(0) == 0x5A4D
14+
and not (pe.imports("tier0.dll") or pe.imports("msdart.dll"))
15+
and any of them
1316
}
1417

1518
rule StealcV2

0 commit comments

Comments
 (0)