-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
rule Cicada3301 { | ||
meta: | ||
author = "ditekshen" | ||
description = "Detects Cicada3301" | ||
cape_type = "Cicada Payload" | ||
strings: | ||
$s1 = "cmd/Cchcp 65001 >nulnet view \\\\" | ||
$s2 = "create_file_recovery" | ||
$s3 = "ecnrypted_files_full" | ||
$s4 = "get_excluded_directories" | ||
$s5 = "collect_files_except" | ||
$s6 = ".exe4d5a" ascii | ||
$s7 = "-accepteula -s -d \"\" --" ascii | ||
$s8 = "[*.exe*.EXE*.DLL*.ini*.inf*.pol*.cmd*.ps1*.vbs*.bat*.pagefile.sys*.hiberfil.sys*.drv" ascii | ||
$s9 = "memtasveeamsvc$backupsqlvssmsexchangesql$mysqlmysql$sophosMSExchange" ascii | ||
$s10 = "-DATA.txt" ascii | ||
$s11 = /--no_(local|net|impl)/ fullword ascii | ||
$c1 = "fsutil" ascii | ||
$c2 = "iisreset" ascii | ||
$c3 = "vssadmin" ascii | ||
$c4 = "wmic" ascii | ||
$c5 = "bcdedit" ascii | ||
$c6 = "wevtutil" ascii | ||
condition: | ||
uint16(0) == 0x5a4d and (6 of ($s*) or (4 of ($c*) and 4 of ($s*)) or (all of ($c*) and 2 of ($s*)) or 9 of them) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
rule PondRAT { | ||
meta: | ||
author = "ditekshen" | ||
description = "Detects PondRAT" | ||
cape_type = "PondRAT Payload" | ||
strings: | ||
$s1 = "MsgDown" ascii | ||
$s2 = "MsgUp" ascii | ||
$s3 = "MsgRun" ascii | ||
$s4 = "MsgCmd" ascii | ||
$s5 = "CryptPayload" ascii | ||
$s6 = "RecvPayload" ascii | ||
$s7 = "csleepi" ascii | ||
$s8 = "FConnectProxy" ascii | ||
condition: | ||
(uint16(0) == 0x457f or uint16(0) == 0xfacf or uint16(0) == 0xfeca) and 7 of them | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
rule POOLRAT { | ||
meta: | ||
author = "ditekshen" | ||
description = "Detects POOLRAT" | ||
cape_type = "POOLRAT Payload" | ||
strings: | ||
$s1 = "MSG_CmdP" ascii | ||
$s2 = "MSG_WriteConfigP" ascii | ||
$s3 = "MSG_SecureDelP" ascii | ||
$s4 = "ConnectToProxyP" ascii | ||
$s5 = "MSG_KeepConP" ascii | ||
$s6 = "MSG_SleepP" ascii | ||
$s7 = "MSG_TestP" ascii | ||
$s8 = "MSG_SetPathP" ascii | ||
condition: | ||
(uint16(0) == 0x457f or uint16(0) == 0xfacf or uint16(0) == 0xfeca) and 7 of them | ||
} |