Created
May 11, 2022 16:20
-
-
Save silence-is-best/ae10c1b627faeb7ff9e4f05dbfb8c7db to your computer and use it in GitHub Desktop.
This file contains hidden or 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
rule svcready_bin | |
{ | |
meta: | |
description = "SVCReady" | |
author = "James_inthe_box" | |
reference = "f690f484c1883571a8bbf19313025a1264d3e10f570380f7aca3cc92135e1d2e" | |
date = "2022/05" | |
maltype = "RAT" | |
strings: | |
$string1 = "svc run" | |
$string2 = "svc commonMain" | |
condition: | |
uint16(0) == 0x5A4D and all of ($string*) and filesize < 1500KB | |
} | |
rule svcready_mem | |
{ | |
meta: | |
description = "SVCReady" | |
author = "James_inthe_box" | |
reference = "f690f484c1883571a8bbf19313025a1264d3e10f570380f7aca3cc92135e1d2e" | |
date = "2022/05" | |
maltype = "RAT" | |
strings: | |
$string1 = "svc run" | |
$string2 = "svc commonMain" | |
$string3 = "Logger" | |
$string4 = "screenshot" | |
$string5 = "systeminfo" | |
condition: | |
all of ($string*) and filesize > 1500KB | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment