CVE-2026-15488
Received Received - Intake

Unrestricted File Upload in shiroiAdmin

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

Publication date: 2026-07-12

Last updated on: 2026-07-12

Assigner: VulDB

Description

A vulnerability was determined in hcr707305003 shiroiAdmin 1.1/1.3. Affected is the function FileController::upload of the file app/common/controller/FileController.php. Executing a manipulation of the argument File can lead to unrestricted upload. The attack may be launched remotely. The exploit has been publicly disclosed and may be utilized. Upgrading to version 1.4 is able to address this issue. This patch is called 3ecde28ea8a20a3840dbfefd6d6863ee79a83e70. It is suggested to upgrade the affected component. The vendor was contacted early about this disclosure but did not respond in any way.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-12
Last Modified
2026-07-12
Generated
2026-07-12
AI Q&A
2026-07-12
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 3 associated CPEs
Vendor Product Version / Range
hcr707305003 shiroiadmin 1.1
hcr707305003 shiroiadmin 1.3
hcr707305003 shiroiadmin 1.4

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-284 The product does not restrict or incorrectly restricts access to a resource from an unauthorized actor.
CWE-434 The product allows the upload or transfer of dangerous file types that are automatically processed within its environment.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability exists in the shiroiAdmin software versions 1.1 and 1.3, specifically in the FileController::upload function. It allows an attacker to manipulate the file upload argument to bypass validation and perform unrestricted file uploads remotely.

The root cause was that the client could control the file_type parameter, which could be set to an undefined value, allowing attackers to upload files without proper checks.

This flaw could lead to serious security issues, including the possibility of remote code execution if malicious files are uploaded and executed on the server.

The vulnerability was fixed in version 1.4 by removing client-side control over the file_type parameter, adding server-side file type validation with a whitelist, blocking dangerous executable file extensions, and improving overall upload security checks.

Impact Analysis

If exploited, this vulnerability can allow attackers to upload arbitrary files to the server without restriction.

In environments where uploaded files can be executed, this could lead to remote code execution (RCE), allowing attackers to run malicious code on the server.

Such unauthorized uploads and potential code execution can compromise the confidentiality, integrity, and availability of your system and data.

This could result in data breaches, service disruptions, unauthorized access, and further exploitation of your infrastructure.

Detection Guidance

This vulnerability involves unrestricted file upload through the FileController::upload function in shiroiAdmin versions 1.1 and 1.3. Detection can focus on monitoring for unusual or unauthorized file upload attempts, especially those attempting to bypass file type validation.

To detect exploitation attempts on your system or network, you can monitor HTTP requests targeting the upload endpoint for suspicious file uploads, particularly those with unusual or dangerous file extensions such as .php, .exe, or .sh.

Suggested commands include using network monitoring tools or web server logs to filter upload requests. For example, on a Linux server, you can use the following commands to search for suspicious uploads in web server logs:

  • grep -iE "upload|file" /var/log/nginx/access.log | grep -iE "\.php|\.exe|\.sh"
  • tail -f /var/log/apache2/access.log | grep -i "upload"

Additionally, monitoring for unexpected file creations in the upload directories can help detect exploitation attempts.

Mitigation Strategies

The primary mitigation step is to upgrade shiroiAdmin to version 1.4, which includes a patch that addresses this vulnerability.

The patch removes client-side control over the file_type parameter, adds server-side file type whitelist validation, implements a blacklist for dangerous executable file extensions (such as .php, .exe, .sh), and hardens file validation logic for public upload endpoints.

Until the upgrade can be applied, it is recommended to restrict or disable file uploads if possible, monitor upload activity closely, and apply additional server-side filtering or firewall rules to block suspicious file types.

Compliance Impact

The vulnerability allows unrestricted file uploads due to insufficient server-side validation, which could lead to remote code execution or unauthorized access.

Such security weaknesses can compromise the confidentiality, integrity, and availability of data, potentially violating requirements in standards like GDPR and HIPAA that mandate protecting sensitive information and ensuring secure system operations.

Failure to address this vulnerability could result in unauthorized data exposure or system compromise, thereby impacting compliance with these regulations.

Upgrading to version 1.4, which implements strict server-side file type validation and blocks dangerous file extensions, mitigates these risks and helps maintain compliance.

Chat Assistant

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

EPSS Chart