← Back to SOC feed Coverage →

Detects Industroyer related custom port scaner output file

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-05-26T23:00:01Z · Confidence: medium

Hunt Hypothesis

Adversaries may use Industroyer’s custom port scanner to identify vulnerable network devices, indicating reconnaissance activity. Proactively hunting for this behavior in Azure Sentinel helps detect early-stage threat activity and prevent potential lateral movement or network compromise.

YARA Rule

rule Industroyer_Portscan_3_Output {
   meta:
      description = "Detects Industroyer related custom port scaner output file"
      author = "Florian Roth"
      reference = "https://goo.gl/x81cSy"
      date = "2017-06-13"
   strings:
      $s1 = "WSA library load complite." fullword ascii
      $s2 = "Connection refused" fullword ascii
   condition:
      all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

References

False Positive Guidance

Original source: https://github.com/Yara-Rules/rules/blob/main/malware/APT_Industroyer.yar