← Back to SOC feed Coverage →

Detects unknown disk wiper script for Linux systems

yara HIGH signature-base
florian-roth
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 signature-base →
Retrieved: 2026-08-06T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt detects adversary behavior where attackers deploy unauthorized scripts to execute a disk wipe operation on Linux systems, potentially erasing critical forensic evidence before detection. The SOC team should proactively hunt for this in Azure Sentinel because early identification of unknown wiper scripts prevents data loss and allows for immediate containment before the attack escalates into a full-scale system compromise.

YARA Rule

rule SUSP_LNX_SH_Disk_Wiper_Script_Jun25 {
   meta:
      description = "Detects unknown disk wiper script for Linux systems"
      author = "Florian Roth"
      reference = "Internal Research"
      date = "2025-06-19"
      score = 65
      hash1 = "f662f69fc7f4240cd8c00661db9484e76b5d02f903590140b4086fefcf9d9331"
      id = "aad68277-4889-512d-b8b3-a4c4706fbc9e"
   strings:
      $s1 = "THIS SCRIPT IS LIVE AND ARMED!" ascii fullword
      $s2 = "FAIR WARNING!" ascii fullword
      $s3 = "lists devices" ascii fullword
   condition:
      uint16(0) == 0x2123
      and filesize < 2KB
      and all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 3 string patterns in its detection logic.

References

False Positive Guidance

False Positive Scenarios for “Unknown Disk Wiper Script” Rule on Linux

Original source: https://github.com/Neo23x0/signature-base/blob/main/yara/mal_wipers_jun25.yar