Created
January 19, 2022 04:08
-
-
Save shellcromancer/b4fcdb7c118ef1aa0006ec5653c92c78 to your computer and use it in GitHub Desktop.
Detect the gscript dropper generator
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 tool_gscript { | |
meta: | |
description = "Identify the gscript dropper generator." | |
author = "@shellcromancer <[email protected]>" | |
version = "0.1" | |
date = "2022-01-18" | |
reference = "https://github.com/gen0cide/gscript" | |
strings: | |
$ = "gen0cide/gscript" ascii | |
// TODO: | |
// match on built-in obfuscation i.e. Mordor | |
// https://github.com/gen0cide/gscript/blob/master/compiler/obfuscator/mordorifier.go#L64 | |
condition: | |
any of them | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment