Skip to content
This repository was archived by the owner on Mar 30, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions techniques/SmartAssembly/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# *SmartAssembly*
## Authorship information
* Name: *Euler Neto*
* Twitter: *https://twitter.com/netonightmare*
* Website: *https://netoeuler.github.io*

## Technique Information
* Technique title: Smart Assembly
* Technique category: Packers
* Technique description: SmartAssembly is an obfuscator that helps protect the application against reverse-engineering or modification, by making it difficult for a third-party to access the source code.

## Additional resources
* https://www.red-gate.com/products/smartassembly/

## Detection rules
* `smart_assembly.yar`
15 changes: 15 additions & 0 deletions techniques/SmartAssembly/smart_assembly.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
rule smart_assembly
{
meta:
author = "Euler Neto"
description = "Rule to detect the utilization of the .NET packer SmartAssembly"
target_entity = "file"
strings:
$sig1 = "SmartAssembly.Attributes"
$sig2 = "Powered by SmartAssembly"
$s1 = "#Strings"
condition:
uint16(0) == 0x5a4d
and any of ($sig*)
and $s1
}