Skip to content
This repository was archived by the owner on May 1, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions YARA/BruteRatel_badger.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
rule BruteRatel_badger
{
strings:
//mov eax, 0x00
// push eax
//mov eax, 0x00
// push eax
//mov eax, 0x00
// push eax
//mov eax, 0x00
// push eax
//mov eax, 0x00
// push eax
//mov eax, 0x00
// push eax
$code = { B8 00 00 00 00 50 B8 00 00 00 00 50 B8 00 00 00 00 50 B8 00 00 00 00 50 B8 00 00 00 00 50 B8 00 00 00 00 50}
condition:
all of them
}
10 changes: 10 additions & 0 deletions YARA/brc4_badger.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
rule brc4_badger
{
meta:
description = "Identifies strings from Brute Ratel v1.1"
strings:
$a = "\"chkin\":"
$b = "\"kimche\":"
condition:
$a or $b
}