Created
July 10, 2021 21:57
-
-
Save LloydLabs/bd34bb01f19484fb3470b9cd24688488 to your computer and use it in GitHub Desktop.
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
import "pe" | |
rule Manual_Win64_System_Call | |
{ | |
meta: | |
author = "Lloyd @LloydLabs" | |
date = "10/07/2021" | |
description = "Allows to detect within malware when Windows system calls are manually invoked." | |
strings: | |
$ = { | |
4C 8B D1 | |
B8 ?? ?? ?? ?? | |
(0F 05 | CD 2E) | |
} | |
condition: | |
pe.is_pe and all of them | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment