Skip to content

Commit 0d42a6f

Browse files
authored
Merge pull request #2741 from enzok/update-01
Update NitroBunnyDownloader yara
2 parents 5f8eb09 + efeb9d7 commit 0d42a6f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

data/yara/CAPE/NitroBunnyDownloader.yar

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ rule NitroBunnyDownloader
66
cape_type = "NitroBunnyDownloader Payload"
77
hash = "960e59200ec0a4b5fb3b44e6da763f5fec4092997975140797d4eec491de411b"
88
strings:
9-
$config = {E8 [3] 00 41 B8 ?? ?? 00 00 48 8D 15 [3] 00 48 89 C1 48 89 ?? E8 [3] 00}
9+
$config1 = {E8 [3] 00 41 B8 ?? ?? 00 00 48 8D 15 [3] 00 48 89 C1 48 89 ?? E8 [3] 00}
10+
$config2 = {E8 [3] 00 48 8D 15 [3] 00 41 B8 ?? ?? 00 00 48 89 C1 48 89 ?? E8 [3] 00}
1011
$string1 = "X-Amz-User-Agent:" wide
1112
$string2 = "Amz-Security-Flag:" wide
1213
$string3 = "/cart" wide
1314
$string4 = "Cookie: " wide
1415
$string5 = "wishlist" wide
1516
condition:
16-
uint16(0) == 0x5A4D and $config and 2 of ($string*)
17+
uint16(0) == 0x5A4D and 1 of ($config*) and 2 of ($string*)
1718
}

0 commit comments

Comments
 (0)