Created
May 4, 2022 21:56
-
-
Save silence-is-best/dce8183ac6e7d41435e1cfa137e9a0a4 to your computer and use it in GitHub Desktop.
In memory Bumblebee yara
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 Bumblebee_mem | |
{ | |
meta: | |
description = "Bumblebee loader" | |
author = "James_inthe_box" | |
reference = "7a2ac6664ef13971ce464676012092befde8f14b0013b2f0f3e21c9051cb45a0" | |
date = "2022/05" | |
maltype = "Loader" | |
strings: | |
$string1 = "client_id" | |
$string2 = "group_name" | |
$string3 = "qemu-ga" wide | |
$string4 = "sys_version" | |
$string5 = "client_version" | |
$string6 = "task_state" | |
condition: | |
all of ($string*) and filesize > 1000KB | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment