← Back to SOC feed Coverage →

NullsoftInstallSystemv198

yara LOW Yara-Rules
community
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at Yara-Rules →
Retrieved: 2026-09-09T23:00:00Z · Confidence: medium

Hunt Hypothesis

This rule identifies the execution of the Nullsoft Install System (NSIS), a common installer framework frequently leveraged by adversaries to package and deploy malicious payloads or establish persistence through standard installation routines. Proactively hunting for this activity in Azure Sentinel helps detect low-fidelity initial access or lateral movement attempts that may blend in with legitimate software deployments, ensuring that suspicious installer usage is investigated before it escalates into a full compromise.

YARA Rule

rule NullsoftInstallSystemv198
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 83 EC 0C 53 56 57 FF 15 2C 81 40 }

condition:
		$a0 at pe.entry_point
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 1 string patterns in its detection logic.

False Positive Guidance

Original source: https://github.com/Yara-Rules/rules/blob/main/packers/packer.yar