The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2019-25673

CVE-2019-25673: UniSharp Laravel File Manager RCE Flaw

CVE-2019-25673 is a remote code execution vulnerability in UniSharp Laravel File Manager that allows authenticated attackers to upload and execute malicious PHP files. This article covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2019-25673 Overview

CVE-2019-25673 is an arbitrary file upload vulnerability affecting UniSharp Laravel File Manager versions v2.0.0-alpha7 and v2.0. This vulnerability allows authenticated attackers to upload malicious files by sending multipart form data to the upload endpoint. Attackers can upload PHP files with the type parameter set to Files and execute arbitrary code by accessing the uploaded file through the working directory path.

Critical Impact

Authenticated attackers can achieve remote code execution on affected servers by uploading and executing malicious PHP files through the vulnerable file manager component.

Affected Products

  • UniSharp Laravel File Manager v2.0.0-alpha7
  • UniSharp Laravel File Manager v2.0
  • Laravel applications using vulnerable versions of the laravel-filemanager package

Discovery Timeline

  • 2026-04-05 - CVE-2019-25673 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2019-25673

Vulnerability Analysis

This vulnerability is classified as CWE-434 (Unrestricted Upload of File with Dangerous Type). The Laravel File Manager package fails to properly validate uploaded file types, allowing authenticated users to bypass intended restrictions and upload executable PHP files to the server.

The core issue stems from insufficient file type validation in the upload handler. When processing multipart form data submissions, the application does not adequately verify that uploaded files match allowed extensions or MIME types. An attacker with valid authentication credentials can craft a request that uploads a PHP webshell or other malicious script.

Once the malicious file is uploaded, it resides in a web-accessible directory. The attacker can then directly access the uploaded file via the working directory path, triggering PHP execution and achieving remote code execution with the privileges of the web server process.

Root Cause

The vulnerability exists due to improper input validation in the file upload functionality. The upload endpoint processes file submissions without enforcing strict file type restrictions, allowing dangerous file types (such as .php files) to be uploaded when the type parameter is set to Files. The lack of server-side validation of file extensions and content types enables this arbitrary file upload attack.

Attack Vector

The attack is network-based and requires the attacker to have authenticated access to the Laravel application using the vulnerable file manager. The exploitation process involves:

  1. Authenticating to the target Laravel application
  2. Sending a specially crafted multipart form data request to the file upload endpoint
  3. Setting the type parameter to Files to bypass intended restrictions
  4. Uploading a malicious PHP file (e.g., webshell)
  5. Accessing the uploaded file through the known working directory path
  6. Achieving arbitrary code execution on the server

The attack complexity is low as it requires no special conditions beyond authenticated access. For detailed technical information, refer to the Exploit-DB entry #46389 and the GitHub issue #356 documenting this vulnerability.

Detection Methods for CVE-2019-25673

Indicators of Compromise

  • Unexpected PHP files appearing in the Laravel file manager upload directories
  • Web server logs showing POST requests to /laravel-filemanager/upload with suspicious file attachments
  • New files with executable extensions (.php, .phtml, .php5) in user upload directories
  • Outbound connections or command execution originating from the web server process

Detection Strategies

  • Monitor file upload endpoints for attempts to upload files with executable extensions
  • Implement file integrity monitoring on upload directories to detect unauthorized file additions
  • Review web server access logs for requests accessing unusual PHP files in upload directories
  • Configure web application firewalls (WAF) to detect and block multipart requests containing PHP content

Monitoring Recommendations

  • Enable detailed logging for all file upload operations in the Laravel application
  • Set up alerts for file creation events in upload directories, particularly for executable file types
  • Monitor for anomalous process spawning from the web server process (e.g., /bin/sh or cmd.exe)
  • Implement real-time scanning of uploaded files using endpoint protection solutions

How to Mitigate CVE-2019-25673

Immediate Actions Required

  • Upgrade UniSharp Laravel File Manager to the latest patched version
  • Review and remove any suspicious PHP files from upload directories
  • Implement strict file type validation at the application level, allowing only safe file extensions
  • Configure the web server to prevent PHP execution in upload directories
  • Audit authentication logs for any unauthorized access that may have exploited this vulnerability

Patch Information

Organizations should update to the latest version of the Laravel File Manager package. For detailed patch information and update instructions, refer to the official GitHub repository and the VulnCheck Advisory.

Workarounds

  • Disable the file manager functionality until patching is possible
  • Implement additional server-side validation to reject uploads of executable file types
  • Configure .htaccess or web server rules to disable PHP execution in upload directories
  • Restrict access to the file manager to trusted administrative users only
bash
# Apache configuration to disable PHP execution in upload directory
<Directory "/path/to/laravel/storage/app/public">
    php_admin_flag engine Off
    RemoveHandler .php .phtml .php5 .php7
    AddType text/plain .php .phtml .php5 .php7
</Directory>

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechLaravel

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/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
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-434
  • Technical References
  • GitHub Laravel File Manager

  • GitHub Issue #356

  • Exploit-DB #46389

  • VulnCheck Advisory on Laravel File Manager
  • Related CVEs
  • CVE-2026-4809: Laravel Mediable RCE Vulnerability

  • CVE-2025-14894: Livewire Filemanager RCE Vulnerability

  • CVE-2021-3129: Facade Ignition RCE Vulnerability

  • CVE-2025-53833: LaRecipe SSTI Leading to RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English