← Back to SOC feed Coverage →

KNOTWEED-AV Detections

kql MEDIUM Azure-Sentinel
AlertEvidence
huntingmicrosoftofficial
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 Azure-Sentinel →
Retrieved: 2026-05-05T03:15:55Z · Confidence: medium

Hunt Hypothesis

The KNOTWEED-AV Detections rule identifies instances where Microsoft Defender Antivirus has flagged files associated with the KNOTWEED malware family, indicating potential adversarial activity targeting Azure environments. SOC teams should proactively hunt for this behavior to detect and respond to KNOTWEED-related threats before they cause significant damage.

KQL Query

// AV Detections
let knotweed_sigs = dynamic(["JumplumpDropper", "Jumplump", "Corelump", "Mexlib", "Medcerc ", "SuspModuleLoad"]);
AlertEvidence
| where Timestamp > ago(30d)
| where ThreatFamily in~ (knotweed_sigs)
| join MtpAlerts on AlertId
| project OriginalReportOccurrenceTime, LastSeen, MachineId1, ThreatFamily, AlertId

Analytic Rule Definition

id: 24b0f252-08fd-4f70-b387-9015bea1b34c
name: KNOTWEED-AV Detections
description: |
  'This query looks for Microsoft Defender Antivirus detections with the family names used by KNOTWEED'
requiredDataConnectors:
  - connectorId: MicrosoftDefenderAdvancedThreatProtection
    dataTypes:
      - SecurityAlert (MDATP)
tactics:
relevantTechniques:
query: |
  // AV Detections
  let knotweed_sigs = dynamic(["JumplumpDropper", "Jumplump", "Corelump", "Mexlib", "Medcerc ", "SuspModuleLoad"]);
  AlertEvidence
  | where Timestamp > ago(30d)
  | where ThreatFamily in~ (knotweed_sigs)
  | join MtpAlerts on AlertId
  | project OriginalReportOccurrenceTime, LastSeen, MachineId1, ThreatFamily, AlertId

Required Data Sources

Sentinel TableNotes
AlertEvidenceEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://github.com/Azure/Azure-Sentinel/blob/main/Hunting Queries/Microsoft 365 Defender/Campaigns/KNOTWEED/KNOTWEED-AVDetections.yaml