CVE-2024-1735:
Armeria SAML authentication bypass due to missing validation on unsigned SAML messages
9.1
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.24948%
CWE
Published
2/26/2024
Updated
2/26/2024
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
com.linecorp.armeria:armeria-saml | maven | <= 1.27.1 | 1.27.2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from missing enforcement of signature requirements in SAML message validation. The key vulnerable functions were the validateSignature
implementations that: 1) In SamlMessageUtil
, returned early for unsigned objects without checking a signatureRequired
flag 2) In HttpRedirectBindingUtil
, didn't validate()
presence of signature parameters before attempting validation. The patch added signatureRequired
checks in both locations and modified call sites to pass this configuration
. The pre-patch behavior is clearly shown in the diff
where these functions lacked signature
presence checks and early rejection logic.