CVE-2026-59163: Mnemosyne has JWT signature verification bypass sync server that allows authentication bypass
Summary
The Mnemosyne sync server's authentication check decoded JWT bearer tokens but never verified their HMAC-SHA256 signatures. Any well-formed token was accepted, allowing an unauthenticated attacker to impersonate any user and read or modify their sync data.
Severity: Critical
CVSS 3.1: AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N = 9.1
Assumes the sync server endpoint is network-reachable. If your deployment is localhost-only, the score drops substantially and severity becomes High or Medium depending on local exposure. Confirm your threat model.
Affected versions
All mnemosyne versions exposing the sync server endpoint, up to and including v3.10.0.
Patched versions
v3.10.1 (commit a0b6b871 on branch security/jwt-signature-verification)
Description
The sync server uses JWT bearer tokens to authenticate clients. Prior to v3.10.1, the auth check in mnemosyne/core/syncserver.py parsed the JWT's header and payload using base64 decoding, then passed the token to a jwt library call with options that effectively disabled signature verification. The server accepted any well-formed token regardless of the signature, including tokens with alg: none and tokens signed with the wrong key.
The fix in v3.10.1 replaces the broken decode with a from-scratch HS256 verifier using only the Python standard library:
- Constant-time signature comparison via hmac.comparedigest - Strict alg: HS256 check, rejecting none and other algorithms - UTC-aware exp validation with leeway - Loud errors with specific failure reasons - Type validation of decoded payload before use
Impact
An attacker with network access to the sync server can:
- Forge a JWT for any userid without knowing the secret - Authenticate as that user to /sync/status, /sync/push, and /sync/pull - Read the victim's sync state - Push malicious sync state to corrupt the victim's local database - Pivot within a shared deployment (multi-user sync server)
Confidentiality and integrity of sync data are fully compromised for the duration of exposure. There is no impact on the server's availability.
Reproduction
python import base64 import json import requests
Forge a JWT for any user. No secret required. def forgejwt(userid): header = base64.urlsafeb64encode( json.dumps({"alg": "HS256", "typ": "JWT"}).encode() ).rstrip(b"=") payload = base64.urlsafeb64encode( json.dumps({"userid": userid, "exp": 9999999999}).encode() ).rstrip(b"=") sig = b"" return f"{header.decode()}.{payload.decode()}."
r = requests.get( "https://target.example.com/sync/status", headers={"Authorization": f"Bearer {forgejwt('victim-user-id')}"}, ) print(r.statuscode, r.json())
A 200 OK response with valid sync status payload confirms the bypass. The attack requires no credentials, no secret, and no prior access.
Mitigation
Upgrade to v3.10.1.
For users who cannot upgrade immediately:
- Restrict network access to the sync server endpoint to trusted clients only. Firewall, reverse proxy with mTLS, or localhost bind with SSH tunnel are all viable. - The vulnerability is not exploitable against an unreachable endpoint.
Workarounds
None. The patch is required to restore authentication integrity.
Credits
- Reporter: Denis Hache (dplush). Reported via private channel on 2026-06-13 with full reproduction and a coordinated disclosure window. - Fix: Denis Hache
Timeline - 2026-06-13: Initial report received from Denis via private channel.
Other sources
Mnemosyne is a memory layer for artificial intelligence agents. Prior to v3.10.1, the auth check in mnemosyne/core/syncserver.py parsed the JWT's header and payload using base64 decoding, then passed the token to a jwt library call with options that effectively disabled signature verification. The server accepted any well-formed token regardless of the signature, including tokens with alg: none and tokens signed with the wrong key. The fix in v3.10.1 replaces the broken decode with a from-scratch HS256 verifier using only the Python standard library. For users who cannot upgrade immediately, restrict network access to the sync server endpoint to trusted clients only. Firewall, reverse proxy with mTLS, or localhost bind with SSH tunnel are all viable. The vulnerability is not exploitable against an unreachable endpoint.
— MITRE
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
pip/mnemosyne-memoryto a version that resolves this vulnerability.Fixed in 3.10.1 - Upgrade
Upgrade
mnemosyneto a version that resolves this vulnerability.Fixed in v3.10.1Patch a0b6b871 - Compensating control
For deployments that cannot upgrade immediately, restrict network access to the Mnemosyne sync server endpoint (/sync/status, /sync/push, /sync/pull) to trusted clients only (e.g., via firewall and/or reverse proxy with mTLS / localhost bind with SSH tunnel).
Event History
Frequently Asked Questions
Which deployments are exposed to unauthenticated attackers?
Any vulnerable sync server endpoint reachable by an attacker is exposed, because the flaw can be exploited remotely without privileges or user interaction. An endpoint that is unreachable is not exploitable.
What does an attacker need to bypass authentication?
The attacker only needs to submit a well-formed JWT. The vulnerable check accepts tokens regardless of signature validity, including alg: none tokens and tokens signed with the wrong key.
Are versions after v3.10.1 affected?
The issue affects Mnemosyne versions prior to v3.10.1. Version 3.10.1 replaces the broken JWT decoding path with an HS256 signature verifier.
What mitigation is available if an immediate upgrade is not possible?
Restrict network access to the sync server endpoint to trusted clients only. Viable measures include firewall rules, a reverse proxy using mTLS, or binding the service to localhost and accessing it through an SSH tunnel.