CVE-2026-37637
Received Received - Intake

Remote Code Execution in Alexantr Filemanager

Vulnerability report for CVE-2026-37637, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-06-29

Last updated on: 2026-06-29

Assigner: MITRE

Description

An issue in Alexantr filemanager v.1.0 allows a remote attacker to execute arbitrary code via the filemanager.php component

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-29
Last Modified
2026-06-29
Generated
2026-06-30
AI Q&A
2026-06-29
EPSS Evaluated
N/A
NVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
alexantr filemanager 1.0

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-94 The product constructs all or part of a code segment using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the syntax or behavior of the intended code segment.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

CVE-2026-37637 is a Remote Code Execution (RCE) vulnerability in Alexantr filemanager version 1.0. It exists in the filemanager.php component due to insufficient validation of uploaded files.

This flaw allows a remote attacker to upload malicious PHP files into a web-accessible directory and execute arbitrary commands on the server by accessing the uploaded file through a browser.

The vulnerability arises because the application does not properly validate file extensions, MIME types, or file content, enabling attackers to upload files containing malicious code such as `<?php system($_GET['cmd']); ?>`.

Compliance Impact

The vulnerability in Alexantr filemanager v1.0 allows remote attackers to execute arbitrary code on the server by uploading malicious PHP files. This can lead to unauthorized access, modification, or deletion of sensitive data stored on the server.

Such unauthorized access and potential data breaches can result in non-compliance with common standards and regulations like GDPR and HIPAA, which require protection of personal and sensitive information against unauthorized access and disclosure.

Therefore, exploitation of this vulnerability could compromise the confidentiality and integrity of sensitive data, leading to regulatory violations and possible legal and financial consequences.

Impact Analysis

Successful exploitation of this vulnerability can allow attackers to execute arbitrary system commands on the server.

  • Read sensitive files on the server.
  • Modify or delete application files.
  • Upload additional malware.
  • Pivot further into the hosting environment, potentially leading to full server compromise.
Detection Guidance

This vulnerability can be detected by monitoring for suspicious PHP files in web-accessible directories and looking for unusual request patterns that include command execution parameters.

  • Check for unexpected PHP files in upload directories, especially those that may have been uploaded recently.
  • Monitor web server logs for requests containing parameters like cmd=, exec=, or shell= which may indicate attempts to execute commands.
  • Example command to find suspicious PHP files: `find /var/www/html/uploads -name '*.php'`
  • Example command to search web server logs for command execution attempts: `grep -E 'cmd=|exec=|shell=' /var/log/apache2/access.log`
Mitigation Strategies

Immediate mitigation steps include restricting and validating file uploads to prevent malicious files from being uploaded and executed.

  • Block dangerous file extensions such as .php from being uploaded.
  • Use allowlists to permit only safe file types.
  • Validate MIME types and file content on the server side.
  • Store uploaded files outside the web root to prevent direct access.
  • Disable PHP execution in upload directories.
  • Rename uploaded files to remove user-controlled extensions.
  • Restrict upload functionality to trusted users only.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-37637. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart