Created
May 11, 2022 15:06
-
-
Save silence-is-best/bd60c296a8adb6a8e8ff01bede974ec2 to your computer and use it in GitHub Desktop.
Nerbian RAT 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 nerbian_bin | |
{ | |
meta: | |
description = "Nerbian RAT" | |
author = "James_inthe_box" | |
reference = "https://app.any.run/tasks/778a4bd7-7ed2-4b61-aad5-822cd5195442/" | |
date = "2022/05" | |
maltype = "RAT" | |
strings: | |
$string1 = "main.downloadNerbian" | |
$string2 = "main.g_nerbian_download_url" | |
$string3 = "main.g_default_nerbian_store_path" | |
condition: | |
all of ($string*) and filesize > 100KB | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment