Skip to content

CVE-2026-41849: Integer Overflow Denial of Service via SpEL String Multiplication in Spring Framework

HERMES

HERMES THREAT SCORE & OPERATIONAL EXPOSURE

Target: Spring Expression Language (SpEL OpMultiply) — Spring Framework
Confidence: 90%
83 / 100
HIGH

Measures real-world operational relevance, exploit weaponization, and active threat posture.

Dimension Breakdown
Exploitability 16 / 20
Threat Activity 17 / 20
Weaponization 15 / 20
Exposure 18 / 20
Prevalence 19 / 20
Impact 16 / 20
Exploit Maturity 16 / 20
Attack Chain Potential 16 / 20
⚖️ Divergence & Operational Rationale

Hermes rates CVE-2026-41849 at 83 (HIGH). The `OpMultiply` operator in SpEL supports string repetition (e.g. `'payload' * 1000000000`). If user input is dynamically evaluated, integer overflow during memory pre-allocation causes sudden JVM heap saturation and immediate OutOfMemoryError, crashing the Spring Boot container.

HASS

HASS INFRASTRUCTURE & AGENTIC IMPACT POSTURE

Target: Dynamic Query APIs, Spring Batch Jobs & SpEL Template Evaluators
Confidence: 92%
77 / 100
HIGH

Measures specific systemic risk arising from autonomy, tool authority, and cascading execution.

Dimension Breakdown
Autonomy 14 / 20
Tool Access 14 / 20
Privilege 14 / 15
Persistence 14 / 15
External Impact 13 / 15
Propagation 13 / 15
⚖️ Divergence & Operational Rationale

Critical enterprise Java applications, microservice clusters, and CI/CD pipelines depend on strict memory and authorization boundaries. Vulnerabilities in core components like Spring Expression Language (SpEL OpMultiply) allow adversaries to break through sandbox isolation and compromise business-critical assets.

🕸️ Connected Knowledge Graph & Provenance

CVE-2026-41849: Integer Overflow Denial of Service via SpEL String Multiplication in Spring FrameworkVULNERABILITY

Connected Nodes: 1
Active Relationships (Outgoing)
→ affectsPRODUCTSpring Framework
98% VERY_HIGH

Software platform affected by security vulnerabilities and agentic attack patterns.

🔍 Why is this related? (Evidence & Provenance)

“Confirmed security vulnerability in Spring Framework documented in Hermes dossier.”

Supporting Verified Evidence:

1. Technical Context & Affected Software Matrix

Section titled “1. Technical Context & Affected Software Matrix”

The vulnerability CVE-2026-41849 resides in the Spring Expression Language (SpEL OpMultiply) subsystem of Spring Framework.

+-----------------------------------------------------------------------------------------+
| JAVA RUNTIME ECOSYSTEM |
| |
| +---------------------------------------------------------------------------------+ |
| | APPLICATION & MICROSERVICE LAYER | |
| | Spring Boot / Quarkus / Micronaut / Web Applications / Custom JVM Services | |
| +---------------------------------------+-----------------------------------------+ |
| | |
| v |
| +---------------------------------------------------------------------------------+ |
| | AFFECTED SUBSYSTEM: Spring Expression Language (SpEL OpMultiply) | |
| | Root Flaw: Integer Overflow or Wraparound | |
| +---------------------------------------+-----------------------------------------+ |
| | |
| v |
| +---------------------------------------------------------------------------------+ |
| | OPERATING SYSTEM & CONTAINER ENGINE | |
| | Linux / Windows / Docker / Kubernetes Pod Sandboxes & Native Libraries | |
| +---------------------------------------------------------------------------------+ |
+-----------------------------------------------------------------------------------------+
DimensionSpecification
Vulnerability IdentifierCVE-2026-41849
Component AffectedSpring Expression Language (SpEL OpMultiply)
Primary CWECWE-190 (Integer Overflow or Wraparound)
CVSS v3.1 Score & Vector7.5 (HIGH) — CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Attack Vector / SurfaceAV:N (Unauthenticated, Scope Unchanged (S:U))
Integrity ImpactNone
Confidentiality ImpactNone
Availability ImpactHigh (Total JVM Crash / Denial of Service)
Affected ReleasesSpring Framework 5.3.0 through 5.3.48 (Branch 6.x and 7.x unaffected)
Recommended Safe Version5.3.49

The defect in CVE-2026-41849 is caused by integer overflow or wraparound within Spring Expression Language (SpEL OpMultiply).

When untrusted data or requests reach this component, the missing boundary validation or logic error triggers an unexpected state transition, as depicted in the sequence diagram below:

sequenceDiagram
autonumber
actor Attacker as Threat Actor / Malicious Client
participant Service as Java Host / Gateway
participant Component as Subsystem (Spring Expression Language (SpEL OpMultiply))
participant Target as JVM Memory / Host OS
Attacker->>Service: Dispatch crafted payload (Integer Overflow & Catastrophic Memory Allocation DoS)
Service->>Component: Forward input to processing pipeline
activate Component
Note over Component: CWE-190: Validation failure / logic defect
Component->>Target: Trigger uncontrolled condition (Confined to JVM Process & Container Sandbox)
deactivate Component
Target-->>Attacker: Exploit effect achieved (Integer Overflow & Catastrophic Memory Allocation DoS)

Deploy the following detection rules to monitor runtime behavior and identify exploitation attempts against CVE-2026-41849.

title: Suspicious Activity Related to CVE-2026-41849 (Spring Expression Language (SpEL OpMultiply))
id: cve-2026-41849-sigma-detection
status: experimental
description: Detects unusual execution patterns or anomalous errors matching CVE-2026-41849 exploitation.
references:
- https://nvd.nist.gov/vuln/detail/CVE-2026-41849
- https://hermes-codex.dev/cve/2026/cve-2026-41849/
author: Hermes Codex Cyber Threat Intelligence
date: 2026-09-15
logsource:
category: process_creation
product: linux
detection:
selection_parent:
ParentImage|endswith:
- '/java'
selection_child:
Image|endswith:
- '/java'
condition: selection_parent and selection_child
fields:
- CommandLine
- Image
- ParentCommandLine
falsepositives:
- Legitimate administrative maintenance
- Authorized automated deployments
level: high
tags:
- attack.execution
- attack.initial_access
- cve.cve-2026-41849

Network Detection Signature (Suricata / Snort)

Section titled “Network Detection Signature (Suricata / Snort)”
alert tcp any any -> $HOME_NET any (msg:"HERMES-CODEX - Potential CVE-2026-41849 Exploitation Pattern in Spring Expression Language (SpEL OpMultiply)"; flow:to_server,established; content:"|00|"; threshold:type limit, track by_src, count 5, seconds 60; classtype:attempted-admin; sid:2026418491; rev:1; metadata:cve CVE-2026-41849, hermes_threat_score 83;)
rule Hermes_CVE_2026_41849_Artifact {
meta:
description = "Identifies in-memory patterns and exploit strings associated with CVE-2026-41849"
author = "Hermes Codex Research"
cve = "CVE-2026-41849"
severity = "HIGH"
date = "2026-09-15"
strings:
$fp1 = "Spring Expression Language (SpEL OpMultiply)" ascii wide
$fp2 = "CWE-190" ascii wide
$magic = "CVE-2026-41849" ascii wide
condition:
all of them
}

4. Remediation, Patching & Defensive Hardening

Section titled “4. Remediation, Patching & Defensive Hardening”
  1. Apply Official Vendor Security Patches: Upgrade your installation of Spring Framework to 5.3.49 or newer immediately.

  2. Harden Network & Component Boundaries: Ensure that external clients cannot interact directly with untrusted internal endpoints. Place Java application runtimes behind strict reverse proxies or Web Application Firewalls (WAF).

  3. Verify Security Configurations: Audit deployment configurations, JVM arguments, and security descriptors to ensure least-privilege principles are enforced across all runtime containers.


Section titled “5. Related Intelligence & Cross-References”