Sploitus

Exploit for CVE-2026-72898

kitploit Β· 2026-08-30

Exploit Code

MARKDOWN189 lines
## https://sploitus.com/exploit?id=KITPLOIT:TOOLS-GITHUB-0XBLACKASH-CVE-2026-72898
# πŸ”΄ CVE-2026-72898 - `Unauthenticated SQL Injection`

![ChatGPT Image Aug 12, 2026, 02_58_46 PM](https://assets.kitploit.com/production/public/readmes/50048/592da65981b0ee2f0123887bb0b7acf3af65ebaa7502db00d085cf02a87e82d3.png)

### Metabase β€” Unauthenticated SQL Injection β†’ Full Administrator Takeover

  


![CVSS 10.0](https://img.shields.io/badge/CVSS-10.0-critical?style=for-the-badge&logo=security&logoColor=white) ![Critical](https://img.shields.io/badge/Severity-Critical-red?style=for-the-badge) ![Actively Exploited](https://img.shields.io/badge/Status-Actively%20Exploited-orange?style=for-the-badge) ![CISA KEV](https://img.shields.io/badge/CISA%20KEV-Listed-darkred?style=for-the-badge) ![Unauthenticated](https://img.shields.io/badge/Authentication-None%20Required-purple?style=for-the-badge)

  


* * *

## πŸ“Œ Overview

**CVE-2026-72898** is a **maximum-severity (CVSS 10.0)** unauthenticated SQL injection vulnerability in Metabase that allows a remote attacker to inject arbitrary SQL into the application database via the password-reset endpoint.

Successful exploitation grants **full administrator access** to the Metabase instance. From there, an attacker can:

  * Modify application configuration
  * Steal stored credentials for connected databases
  * Read any data accessible through those connections
  * Export sensitive data at will



> **This vulnerability was exploited in the wild as a zero-day** against Metabase Cloud and multiple self-hosted customers.

  


* * *

## ⚑ Key Details

Field| Value  
---|---  
**CVE ID**|  CVE-2026-72898  
**GHSA**| GHSA-vwf4-m7j8-wcjf  
**Severity**|  Critical  
**CVSS v3.1**| `10.0` β€” `AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H`  
**CVSS v4.0**| `10.0`  
**CWE**|  CWE-89 β€” Improper Neutralization of Special Elements used in an SQL Command  
**Attack Vector**|  Network  
**Authentication**|  None required  
**User Interaction**|  None  
**Exploitation Status**| **Actively exploited in the wild** (Zero-day)  
**CISA KEV**|  Listed  
  
  


* * *

## 🎯 Affected Endpoint

root@kitploit:~
    
    
    POST /api/session/reset_password
    

![CVE-2026-72898](https://github.com/user-attachments/assets/648d5cd2-5e8b-4b63-bac3-93f0a0af9741)

An unauthenticated attacker can send a crafted request to this endpoint that results in arbitrary SQL execution against the Metabase application database.

  


* * *

## πŸ“¦ Affected Versions

Branch| Affected Versions| Fixed Version  
---|---|---  
**x.58**|  β‰₯ x.58.0 and < x.58.24| **x.58.24**  
**x.59**|  β‰₯ x.59.0 and < x.59.21| **x.59.21**  
**x.60**|  β‰₯ x.60.0 and < x.60.17| **x.60.17**  
**x.61**|  β‰₯ x.61.0 and < x.61.11| **x.61.11**  
**x.62**|  β‰₯ x.62.0 and < x.62.9| **x.62.9**  
**x.63**|  β‰₯ x.63.0 and < x.63.5| **x.63.5**  
  
> Versions **below 58** are **not affected**.

  


* * *

## πŸ› οΈ Remediation

### 1\. Upgrade Immediately (Recommended)

Upgrade to the fixed version corresponding to your major release:

Version| OSS Docker| OSS JAR| Enterprise  
---|---|---|---  
**63**| `metabase/metabase:v0.63.5`| Download| v1.63.5  
**62**| `metabase/metabase:v0.62.9`| Download| v1.62.9  
**61**| `metabase/metabase:v0.61.11`| Download| v1.61.11  
**60**| `metabase/metabase:v0.60.17`| Download| v1.60.17  
**59**| `metabase/metabase:v0.59.21`| Download| v1.59.21  
**58**| `metabase/metabase:v0.58.24`| Download| v1.58.24  
  
### 2\. Temporary Workaround

If you cannot upgrade immediately, **block access** to the vulnerable endpoint:

root@kitploit:~
    
    
    /api/session/reset_password
    

  


* * *

## πŸ” Detection & Indicators of Compromise

Look for this characteristic attack pattern in your application or ingress logs:

root@kitploit:~
    
    
    POST /api/session/reset_password   β†’  400
    GET  /api/user/current             β†’  200
    

If this sequence appears, your instance is **likely compromised**.

  


### Post-Upgrade Actions (Highly Recommended)

After upgrading, perform the following:

  1. **Invalidate all sessions**

root@kitploit:~
         
         TRUNCATE TABLE core_session;
         

  2. Review and delete any unrecognized **API keys**

  3. Audit **administrator accounts** for unexpected changes

  4. **Rotate credentials** for all connected databases

  5. Review data warehouse logs for unauthorized access

  6. Examine Metabase activity & query history for anomalies


  


* * *

## πŸ“š Official References

  * Metabase Security Advisory (GHSA-vwf4-m7j8-wcjf)
  * Metabase Official Blog Post
  * CVE Record
  * CISA Known Exploited Vulnerabilities Catalog

  


* * *

## ⚠️ Disclaimer

This document is provided for **defensive and informational purposes only**.  
Always verify information against official vendor advisories.

  


**Upgrade now. Every unpatched instance remains a high-value target.**

```