CVE-2026-49976

MEDIUMPre-NVD 6.56.5
EchelonGraph scoreLOW confidence

This medium-severity CVE scores 6.5 under the CNA's CVSS (NVD's own analysis pending). EPSS exploit-prediction score not yet available (the EPSS model rescores nightly; freshly-published CVEs typically appear within 48 hours). GitHub Security Advisory data not yet ingested — confidence will rise once GHSA publishes (typical lag: hours to days for open-source ecosystem CVEs; never for infrastructure-only CVEs).

Triggered by: NVD CVSS baseline
Sources: cna:github_m
6.5
EchelonGraph verdictMonitorLow exploitation likelihood right now — keep watching.
  • Lower severity and no public exploit yet
CISA-KEV: Not listedEPSS: CVSS: 6.5Exploit: NoneExposed: 0

No vendor fix yet — apply a workaround or compensating control (WAF / firewall / segmentation) and watch for a patch.

Snipe-IT Vulnerable to User Account Escalation via CSV Import

Impact

The CSV user import in update mode bypasses user-edit authorization. A user with only the import permission can overwrite any non-admin user's email by uploading a CSV, then trigger a password reset to take over the account.

UserImporter.php checks the canEditAuthFields gate and tries to strip auth fields from the model:

// app/Importer/UserImporter.php:107-114
if (Auth::check() && (! Gate::allows('canEditAuthFields', $user))) {
    unset($user->username);
    unset($user->email);
    unset($user->password);
    unset($user->activated);
}
$user->update($this->sanitizeItemForUpdating($user));

The unset()s operate on the model, but sanitizeItemForUpdating() rebuilds its array from $this->item (the raw CSV row), not from the model:

// app/Importer/ItemImporter.php:135-149
protected function sanitizeItemForStoring($model, $updating = false)
{
    $item = collect($this->item);                  // CSV data, not model attributes
    $item = $item->only($model->getFillable());
    if ($updating) {
        $item = $item->reject(fn($v) => empty($v));
    }
    return $item->toArray();
}

The attacker's CSV values pass through untouched.

For non-admin attacker vs. non-admin, non-superuser target, the gate returns true at AuthServiceProvider.php:137, so the unset() block never executes. The entire import path checks only $this->authorize('import') (ImportController.php:196); no users.edit check anywhere. The normal API route PATCH /api/v1/users/{id} correctly returns 403 for the same user.

Attacker must have import privileges to exploit this, and that permission must be granted specifically and intentionally by a superadmin.

Patches

Patched in v8.6.0

CVSS v3
6.5
EG Score
6.5(low)
EPSS
KEV
Not listed

Published

June 23, 2026

Last Modified

June 23, 2026

Vendor Advisories for CVE-2026-49976(1)

These vendors published their own advisory mentioning this CVE — often with vendor-specific remediation steps + affected product lists not in NVD.

Data Freshness Timeline

(refreshed 7× in last 7d / 13× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

  1. 2026-07-06 23:55 UTCEG score recompute
  2. 2026-07-05 21:49 UTCEG score recompute
  3. 2026-07-04 19:45 UTCEG score recompute
  4. 2026-07-03 17:44 UTCEG score recompute
  5. 2026-07-02 15:44 UTCEG score recompute
  6. 2026-07-01 13:43 UTCEG score recompute
  7. 2026-06-30 11:41 UTCEG score recompute
  8. 2026-06-29 09:38 UTCEG score recompute
  9. 2026-06-28 07:36 UTCEG score recompute
  10. 2026-06-27 05:34 UTCEG score recompute
  11. 2026-06-26 03:33 UTCEG score recompute
  12. 2026-06-25 01:31 UTCEG score recompute
  13. 2026-06-23 23:31 UTCEG score recompute

Frequently asked(4)

What is CVE-2026-49976?
CVE-2026-49976 is a medium vulnerability published on June 23, 2026. Snipe-IT Vulnerable to User Account Escalation via CSV Import Impact The CSV user import in update mode bypasses user-edit authorization. A user with only the import permission can overwrite any non-admin user's email by uploading a CSV, then trigger a password reset to take over the account.…
When was CVE-2026-49976 disclosed?
CVE-2026-49976 was first published in the National Vulnerability Database on June 23, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
What is the CVSS score of CVE-2026-49976?
CVE-2026-49976 has a CVSS v4.0 base score of 6.5 (CNA self-assessment; NVD's own analysis pending). The EG score is currently aggregating — additional source signals are being incorporated as they become available..
How do I remediate CVE-2026-49976?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-49976, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

Explore the affected products and dependency analysis for CVE-2026-49976

Explore →

Is Your Infrastructure Affected by CVE-2026-49976?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.