CVE-2025-22131
UNKNOWN
Published 2025-01-20T15:31:19.693Z
Actions:
Expert Analysis
Professional remediation guidance
Get tailored security recommendations from our analyst team for CVE-2025-22131. We'll provide specific mitigation strategies based on your environment and risk profile.
No CVSS data available
Description
PhpSpreadsheet is a PHP library for reading and writing spreadsheet files. Cross-Site Scripting (XSS) vulnerability in the code which translates the XLSX file into a HTML representation and displays it in the response.
Available Exploits
No exploits available for this CVE.
Related News
No news articles found for this CVE.
Affected Products
Affected Versions:
GitHub Security Advisories
Community-driven vulnerability intelligence from GitHub
✓ GitHub Reviewed
MODERATE
Cross-Site Scripting (XSS) vulnerability in generateNavigation() function in PhpSpreadsheet
GHSA-79xx-vf93-p7cxAdvisory Details
### Summary
The researcher discovered zero-day vulnerability Cross-Site Scripting (XSS) vulnerability in the code which translates the XLSX file into a HTML representation and displays it in the response.
### Details
When generating the HTML from an xlsx file containing multiple sheets, a navigation menu is created. This menu includes the sheet names, which are not sanitized. As a result, an attacker can exploit this vulnerability to execute JavaScript code.
```php
// Construct HTML
$html = '';
// Only if there are more than 1 sheets
if (count($sheets) > 1) {
// Loop all sheets
$sheetId = 0;
$html .= '<ul class="navigation">' . PHP_EOL;
foreach ($sheets as $sheet) {
$html .= ' <li class="sheet' . $sheetId . '"><a href="#sheet' . $sheetId . '">' . $sheet->getTitle() . '</a></li>' . PHP_EOL;
++$sheetId;
}
$html .= '</ul>' . PHP_EOL;
}
```
### PoC
1. Create an XLSX file with multiple sheets :

2. Generate the HTML content
```php
<?php
require __DIR__ . '/vendor/autoload.php';
$inputFileName = 'payload.xlsx';
$spreadsheet = \PhpOffice\PhpSpreadsheet\IOFactory::load($inputFileName);
$writer = new \PhpOffice\PhpSpreadsheet\Writer\Html($spreadsheet);
$writer->writeAllSheets();
echo $writer->generateHTMLAll();
?>
```
3. Enjoy

### Impact
XSS can cause a variety of problems for the end user that range in severity from an annoyance to complete account compromise.
Example of impacts :
- Disclosure of the user’s session cookie, allowing an attacker to hijack the user’s session and take over the account (Only if HttpOnly cookie's flag is set to false).
- Redirecting the user to some other page or site (like phishing websites)
- Modifying the content of the current page (add a fake login page that sends credentials to the attacker).
- Automatically download malicious files.
- Requests access to the victim geolocation / camera.
- ...
Affected Packages
Packagist
phpoffice/phpspreadsheet
ECOSYSTEM:
≥3.0.0
<3.8.0
Packagist
phpoffice/phpspreadsheet
ECOSYSTEM:
≥0
<1.29.8
Packagist
phpoffice/phpspreadsheet
ECOSYSTEM:
≥2.0.0
<2.1.7
Packagist
phpoffice/phpspreadsheet
ECOSYSTEM:
≥2.2.0
<2.3.6
Packagist
phpoffice/phpexcel
ECOSYSTEM:
≥0
≤1.8.2
CVSS Scoring
CVSS Score
5.0
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
References
Advisory provided by GitHub Security Advisory Database. Published: January 21, 2025, Modified: March 6, 2025
References
Published: 2025-01-20T15:31:19.693Z
Last Modified: 2025-01-21T14:58:15.541Z
Copied to clipboard!