Skip to content

Instantly share code, notes, and snippets.

@williballenthin
Last active January 4, 2023 08:23
Show Gist options
  • Save williballenthin/adf1fe24e1c07f0e5a0f3a0938cd2712 to your computer and use it in GitHub Desktop.
Save williballenthin/adf1fe24e1c07f0e5a0f3a0938cd2712 to your computer and use it in GitHub Desktop.
#100DaysOfYara (2023)
import "dotnet"
rule DotnetStartupHook {
meta:
description = "might be a .NET startup hook module"
author = "William Ballenthin <[email protected]>"
strings:
$a1 = "StartupHook"
$a2 = "Initialize"
condition:
uint16(0) == 0x5A4D
and dotnet.is_dotnet
and all of them
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment