Improper Signature VerificationWeakness · CWE-347

CVE-2026-29000

CRITICAL · 9.1 CVSS v3.1 Published 2026-03-04
Mitigation only
No fix yet — a mitigation exists. There is no fixed release. A documented workaround reduces exposure in the meantime.
See remediation →
100/100
Remediation priority · Urgent
Remotely reachable No privileges Zero-click

Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.

NVD · unedited
pac4j-jwt versions prior to 4.5.9, 5.7.9, and 6.3.3 contain an authentication bypass vulnerability in JwtAuthenticator when processing encrypted JWTs that allows remote attackers to forge authentication tokens. Attackers who possess the server's RSA public key can create a JWE-wrapped PlainJWT with arbitrary subject and role claims, bypassing signature verification to authenticate as any user including administrators.

Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.

dbcve analysis · high confidence

The pac4j-jwt library has an authentication bypass in JwtAuthenticator where encrypted JWE-wrapped PlainJWT tokens bypass signature verification. Attackers with the server's RSA public key can forge tokens with arbitrary subject and role claims, allowing authentication as any user including administrators.

MitigationUpgrade pac4j-jwt to version 4.5.9, 5.7.9, or 6.3.3 or later. If immediate upgrade is not possible, implement additional validation of JWT claims (subject, expiration, issuer) beyond what the library provides.

Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.

CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.

From the vector
Attack vector
Network
Complexity
Low
Privileges
None
User interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
None

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N

Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.

dbcve checks

Work through these to decide whether this CVE applies to you.

  1. Locate pac4j-jwt library in your project
    Search your project's dependency manifest files (Maven pom.xml, Gradle build.gradle, or the JAR file's META-INF/MANIFEST.MF) for the pac4j-jwt library
    Affected if The pac4j-jwt library is present in your dependencies
  2. Identify the installed pac4j-jwt version
    Extract the version number from your dependency configuration (for example, look for <version> under pac4j-jwt in pom.xml, or the dependency tree output from mvn dependency:tree or gradle dependencies)
    Affected if The version is below 4.5.9, below 5.7.9, or below 6.3.3 (check against the major version branch in use)
  3. Verify JWT authentication is in use
    Search your codebase for imports of org.pac4j.jwt.config.encryption.SecretEncryptionConfiguration or org.pac4j.jwt.config.encryption.RSAEncryptionConfiguration, and look for JwtAuthenticator instantiation in your authentication configuration
    Affected if Your application uses JwtAuthenticator for token validation
  4. Confirm RSA encryption configuration is active
    Review your JWT configuration bean (often named JwtConfiguration or similar) and check if RSAEncryptionConfiguration is instantiated or if encryptionAlgorithm is set to RSA algorithms (RSA-OAEP, RSA-OAEP-256, etc.)
    Affected if Your JWT authenticator is configured to process encrypted JWTs (JWE) using RSA encryption
  5. Check for public key exposure
    Review your application code, configuration files, and any endpoints that expose the RSA public key used for JWT decryption. Search for getPublicKey() or publicKeyEndpoint patterns in your codebase
    Affected if The RSA public key is accessible to attackers (for example, served via an endpoint, logged, or included in client-side configuration)

Your environment is affected if pac4j-jwt is present with a vulnerable version (before 4.5.9/5.7.9/6.3.3 depending on your major version), RSA-encrypted JWT authentication is enabled, and attackers can obtain your RSA public key to craft malicious tokens.

Generated from the published advisory. Verify against your own configuration.

Check your environment

Paste your version and any relevant configuration and it will be compared against the affected criteria above. Do not include secrets or credentials.

AI-assisted, checked against the advisory. Informational, not a guarantee.

Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.

dbcve · scoped
Mitigation available No clean upgrade yet — mitigate in the meantime
Mitigation

Upgrade pac4j-jwt to version 4.5.9, 5.7.9, or 6.3.3 or later. If immediate upgrade is not possible, implement additional validation of JWT claims (subject, expiration, issuer) beyond what the library provides.

Recommended fix High confidence

pac4j-jwt version 4.5.9, 5.7.9, or 6.3.3 (matching your current major version line)

  1. Identify the current pac4j-jwt version in use by checking your project's dependency management (Maven pom.xml, Gradle build.gradle, or similar)
  2. Determine which major version line you are on (v4.x, v5.x, or v6.x)
  3. Upgrade to the fixed version corresponding to your major version line: 4.5.9 for v4.x, 5.7.9 for v5.x, or 6.3.3 for v6.x
  4. If using Maven, update the version in pom.xml: <version>4.5.9</version> (or 5.7.9/6.3.3 depending on your line)
  5. If using Gradle, update the version in build.gradle: implementation 'org.pac4j:pac4j-jwt:4.5.9' (or 5.7.9/6.3.3)
  6. Run your build and test suite to verify the upgrade does not break existing functionality
  7. Deploy the updated version to your environment

Generated from the published advisory — verify against the referenced sources before acting.

Have this fixed Scoped from the published advisory
  • Consultation2.0 h
  • Implementation2.0 h
  • Testing4.0 h
  • Review / QA2.0 h
10.0 hours of engineering $1,720
Get help mitigating

An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $2,752.

Scan for this in your stack

Free · runs locally
dbcve dependency scanner

Check whether your project pulls in CVE-2026-29000 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.

References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.

Primary sources

Practitioner notes

Contributed

Peer-ranked notes from engineers who’ve handled CVE-2026-29000 in production — separate from our analysis above.

No notes yet

Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.

What this is

A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.

What belongs here
  • Verified mitigations, workarounds, and config changes
  • Version or environment caveats, and links to real fixes
  • No weaponised exploit code, or anything meant to cause harm
  • No spam, self-promotion, credentials, or personal data