Skip to content

Commit 33c4f63

Browse files
committed
Fix patterns
1 parent fd29de3 commit 33c4f63

2 files changed

Lines changed: 18 additions & 12 deletions

File tree

data/yara/CAPE/MonsterV2.yar

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ rule MonsterV2
1717
E8 ?? ?? ?? ??
1818
}
1919
condition:
20-
$decrypt_config
20+
uint16(0) == 0x5A4D and $decrypt_config
2121
}

data/yara/CAPE/NightshadeC2.yar

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
rule NightshadeC2
22
{
3-
meta:
4-
author = "YungBinary"
5-
description = "https://x.com/YungBinary/status/1963751038340534482"
6-
hash = "963c012d56c62093d105ab5044517fdcce4ab826f7782b3e377932da1df6896d"
7-
cape_type = "NightshadeC2 Payload"
8-
strings:
9-
$s1 = "keylog.txt" wide
10-
$s2 = "--mute-audio --do-not-de-elevate" wide
11-
$s3 = "MachineGuid" wide
12-
condition:
13-
uint16(0) == 0x5A4D and all of them
3+
meta:
4+
author = "YungBinary"
5+
description = "https://x.com/YungBinary/status/1963751038340534482"
6+
hash = "963c012d56c62093d105ab5044517fdcce4ab826f7782b3e377932da1df6896d"
7+
cape_type = "NightshadeC2 Payload"
8+
strings:
9+
$s1 = "keylog.txt" fullword wide
10+
$s2 = "\"%ws\" --mute-audio --do-not-de-elevate" fullword wide
11+
$s3 = "\"%ws\" -no-deelevate" fullword wide
12+
$s4 = "MachineGuid" fullword wide
13+
$s5 = "www.ip-api.com" fullword wide
14+
$s6 = "rundll32 \"C:\\Windows\\System32\\shell32.dll\" #61" fullword wide
15+
$s7 = "IsabellaWine" fullword wide
16+
$s8 = "Shell_TrayWnd" fullword wide
17+
18+
condition:
19+
uint16(0) == 0x5A4D and 3 of them
1420
}

0 commit comments

Comments
 (0)