Cyber Resilience

CVE-2026-32322

Stellar Rs-Soroban-Sdk ≤ 22.0.11

Published
13 March 2026
Modified
19 March 2026
Patch / advisory
CVSS Score v3.1 5.3
Click a component to see what it means
Raw vectorCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
EPSS Score 0.0028 20th percentile
Risk Priority 35 floored blend · peak EPSS

Summary

CVE-2026-32322 is a medium-severity Incorrect Comparison (CWE-697) vulnerability in Stellar Rs-Soroban-Sdk. Its CVSS base score is 5.3 (Medium).

Operationally, ranked at the 20th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified map to SI-10 (Information Input Validation) and SI-2 (Flaw Remediation) — see the control section below for these in your framework.

EU & UK References

Vulnerability Data

soroban-sdk is a Rust SDK for Soroban contracts. Prior to 22.0.11, 23.5.3, and 25.3.0, The Fr (scalar field) types for BN254 and BLS12-381 in soroban-sdk compared values using their raw U256 representation without first reducing modulo the field modulus r.…

more

This caused mathematically equal field elements to compare as not-equal when one or both values were unreduced (i.e., >= r). The vulnerability requires an attacker to supply crafted Fr values through contract inputs, and compare them directly without going through host-side arithmetic operations. Smart contracts that rely on Fr equality checks for security-critical logic could produce incorrect results. The impact depends on how the affected contract uses Fr equality comparisons, but can result in incorrect authorization decisions or validation bypasses in contracts that perform equality checks on user-supplied scalar values. This vulnerability is fixed in 22.0.11, 23.5.3, and 25.3.0.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

Insufficient information to map techniques.
Confidence: LOW · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2026-24889Same product: Stellar Rs-Soroban-Sdk
CVE-2026-26267Same product: Stellar Rs-Soroban-Sdk
CVE-2023-46135Same vendor: Stellar
CVE-2026-29795Same vendor: Stellar
CVE-2023-40580Same vendor: Stellar
CVE-2023-46656Shared CWE-697
CVE-2024-53861Shared CWE-697
CVE-2023-28936Shared CWE-697
CVE-2023-32571Shared CWE-697
CVE-2025-47416Shared CWE-697

Affected Assets

stellar
rs-soroban-sdk
≤ 22.0.11 · 23.0.0 — 23.5.3 · 25.0.0 — 25.3.0

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)
  • SI-10 Information Input Validation
  • SI-2 Flaw Remediation
  • AC-3 Access Enforcement
Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly validates that field-element inputs are reduced modulo r before any equality comparison occurs, eliminating the root cause of unreduced Fr values bypassing checks.

prevent

Requires prompt application of the vendor patches (22.0.11/23.5.3/25.3.0) that replace the raw U256 comparison with a canonical reduction step.

prevent

Enforces that all security-critical Fr equality decisions used for authorization are performed only after host-side canonical arithmetic, preventing the flawed comparison path.

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

Secure development practices directly require correct logic for security comparisons and thereby prevent this class of flaw.

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

detects

Security testing can detect incorrect comparison flaws before deployment.

prevents

Secure development lifecycle includes code review and testing that can catch incorrect comparison logic.

prevents

Application security requirements can mandate correct comparison logic for security decisions.

prevents

Secure architecture principles can require robust comparison mechanisms for access decisions.

prevents

Secure coding standards directly address avoiding incorrect comparison operators and logic.

degrades

Secure authentication mechanisms rely on correct comparison of credentials or tokens.

References