This detection identifies potential malicious activity from Obsidium Software by leveraging a specific YARA signature to flag known indicators of compromise within the Azure Sentinel environment. Proactively hunting for this behavior allows the SOC team to validate legitimate software usage against emerging threats and ensure early identification of any deviations that could signal an initial foothold for adversaries.
rule Obsidium1333ObsidiumSoftware
{
meta:
author="malware-lu"
strings:
$a0 = { EB 02 [2] E8 29 00 00 00 EB 03 [3] EB 03 [3] 8B 54 24 0C EB 01 ?? 83 82 B8 00 00 00 28 EB 03 [3] 33 C0 EB 01 ?? C3 EB 04 [4] EB 02 [2] 64 67 FF 36 00 00 EB 04 [4] 64 67 89 26 00 00 EB 02 [2] EB 04 [4] 50 EB 04 }
$a1 = { EB 02 [2] E8 29 00 00 00 EB 03 [3] EB 03 [3] 8B 54 24 0C EB 01 ?? 83 82 B8 00 00 00 28 EB 03 [3] 33 C0 EB 01 ?? C3 EB 04 [4] EB 02 [2] 64 67 FF 36 00 00 EB 04 [4] 64 67 89 26 00 00 EB 02 [2] EB 04 [4] 50 EB 04 [4] 33 C0 EB 01 ?? 8B 00 EB 03 [3] C3 EB 03 [3] E9 FA 00 00 00 EB 03 [3] E8 D5 FF FF FF EB 04 [4] EB 04 [4] 58 EB 01 ?? EB 03 [3] 64 67 8F 06 00 00 EB 04 [4] 83 C4 04 EB 04 [4] E8 2B 27 }
condition:
$a0 at pe.entry_point or $a1 at pe.entry_point
}
This YARA rule can be deployed in the following contexts:
This rule contains 2 string patterns in its detection logic.
Here are 5 specific false positive scenarios for the Obsidium1333ObsidiumSoftware detection rule, including targeted filters and exclusions:
Scenario: Scheduled Antivirus Definition Updates
obsidium.exe (or similar) utility to verify integrity before deployment, triggering the YARA rule.UpdateDefTask) or exclude the file path C:\Program Files\Obsidium\Updates\ from detection if the process parent is svchost.exe (or the specific AV service).Scenario: Enterprise Software Deployment via SCCM/Intune
/quiet or MSIEXEC, and restrict the rule to trigger only when the parent process is NOT ccmsetup.exe (SCCM) or IntuneManagementExtension.exe.Scenario: Backup Agent Integrity Checks