← 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 targets adversaries attempting to exploit the React Server Remote Code Execution vulnerability (CVE-2025-55182) by executing malicious payloads through proof-of-concept code within browser extensions or server environments. The SOC team should proactively hunt for these indicators in Azure Sentinel to identify early-stage compromise attempts before attackers can establish persistence or escalate privileges on critical web infrastructure.

YARA Rule

rule EXPL_SUSP_JS_POC_RSC_Detector_Payloads_Dec25 {
   meta:
      description = "Detects RCE indicators related to the proof-of-concept code for the React Server Remote Code Execution Vulnerability (CVE-2025-55182) as used in the RSC Detector browser extension but could be used in other JavaScript based PoC code as well"
      author = "Florian Roth"
      reference = "https://github.com/mrknow001/RSC_Detector"
      date = "2025-12-06"
      score = 70
      id = "98887e97-2dd4-5777-9fab-02805035de14"
   strings:
      $s1 = "process.mainModule.require('child_process').execSync("
      $s2 = ").toString('base64');"

      // harmless test cases - we only want to match real command execution attempts
      $f1 = "echo vulnerability_test"
   condition:
      all of ($s*)
      and not 1 of ($f*)
}

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

Here are 3-5 specific false positive scenarios for the React Server Remote Code Execution Vulnerability (CVE-2025-55182) detection rule, tailored for a legitimate enterprise environment:

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