← Back to SOC feed Coverage →

Detects RCE indicators related to the proof-of-concept code for the React Server Remote Code Execution Vulnerability (CV

yara HIGH signature-base
exploitflorian-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-07T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt hypothesis identifies potential Remote Code Execution attacks exploiting React Server vulnerabilities by analyzing proof-of-concept execution patterns that may indicate active exploitation or reconnaissance. Proactively hunting for these indicators in Azure Sentinel is critical to rapidly detect and mitigate high-severity threats before adversaries can establish persistence or execute malicious payloads within JavaScript-based environments.

YARA Rule

rule EXPL_SUSP_JS_POC_Dec25 {
   meta:
      description = "Detects RCE indicators related to the proof-of-concept code for the React Server Remote Code Execution Vulnerability (CVE-2025-55182) but could be used in other JavaScript based PoC code as well"
      author = "Florian Roth"
      reference = "https://github.com/msanft/CVE-2025-55182/blob/main/poc.py"
      date = "2025-12-05"
      modified = "2025-12-06"
      score = 70
      id = "114c83f8-b798-5db9-a054-a6148dde7d5a"
   strings:
      $xr1 = /process\.mainModule\.require\(["']child_process["']\).{5,40}\(["'](whoami|powershell|\/bin\/sh|\/bin\/bash|wget|curl|cat \/etc\/passwd|uname|id["'])/
   condition:
      1 of them
      // not XML
      and not uint16(0) == 0x3c3f
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 1 string patterns in its detection logic.

References

False Positive Guidance

Here are 4 specific false positive scenarios for the React Server RCE Vulnerability (CVE-2025-55182) detection rule, including suggested filters and exclusions:

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