CVE-2021-26073: Broken Authentication in Atlassian Connect Express
7.7
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.56323%
CWE
Published
5/24/2022
Updated
2/12/2025
KEV Status
No
Technology
JavaScript
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
atlassian-connect-express | npm | >= 3.0.2, < 6.6.0 | 6.6.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper JWT type validation in authentication middleware. The critical function is addon.authenticate()
which handles request authentication. In vulnerable versions (3.0.2-6.5.0), this middleware didn't properly restrict context JWTs in lifecycle endpoints. The patch requires explicit skipQshVerification=true
parameter for context JWT endpoints, indicating the base authenticate()
function was missing server-to-server JWT enforcement. This matches community guidance showing vulnerable endpoints used standard authenticate()
while fixed implementations require parameterization.