Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-2020-37073

CVE-2020-37073: Victor CMS 1.0 RCE Vulnerability

CVE-2020-37073 is an authenticated file upload vulnerability in Victor CMS 1.0 that enables remote code execution. Attackers can upload malicious PHP shells to execute system commands. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 6, 2026

CVE-2020-37073 Overview

CVE-2020-37073 is an authenticated arbitrary file upload vulnerability affecting Victor CMS 1.0. The vulnerability allows administrators to upload PHP files with arbitrary content through the user_image parameter. Attackers can exploit this flaw to upload a malicious PHP shell to the /img/ directory and subsequently execute system commands by accessing the uploaded file with a cmd parameter.

Critical Impact

Successful exploitation enables remote code execution on the underlying server, potentially allowing complete system compromise through an authenticated administrative session.

Affected Products

  • Victor CMS 1.0

Discovery Timeline

  • 2026-02-03 - CVE CVE-2020-37073 published to NVD
  • 2026-02-04 - Last updated in NVD database

Technical Details for CVE-2020-37073

Vulnerability Analysis

This vulnerability is classified as CWE-434 (Unrestricted Upload of File with Dangerous Type). The flaw exists in Victor CMS 1.0's file upload functionality, which fails to properly validate the type and content of files uploaded through the user_image parameter. The application accepts PHP files without adequate restrictions, allowing authenticated administrators to upload executable server-side scripts.

The vulnerability requires administrative authentication to exploit, which limits the initial attack surface. However, once an attacker gains access to an administrative account—whether through credential theft, brute force, or social engineering—they can leverage this file upload weakness to achieve full remote code execution on the web server.

Root Cause

The root cause of this vulnerability lies in insufficient input validation and lack of file type restrictions in the user image upload functionality. The application fails to implement proper checks on:

  1. File extension validation - allowing .php extensions instead of restricting to image types
  2. MIME type verification - not validating that the uploaded content matches expected image formats
  3. Content inspection - not scanning file contents for executable code

This combination of missing security controls allows arbitrary PHP code to be written to the web-accessible /img/ directory.

Attack Vector

The attack is network-based and requires an authenticated administrative session. An attacker would craft a malicious PHP file containing a web shell and upload it through the vulnerable user_image parameter. Once uploaded, the attacker can access the file directly via the /img/ directory and pass system commands through the cmd parameter.

The exploitation flow involves uploading a PHP shell that reads and executes commands from user input, enabling the attacker to run arbitrary system commands with the privileges of the web server process. Technical details and proof-of-concept code are available in the Exploit-DB #48490 entry and the VulnCheck Security Advisory.

Detection Methods for CVE-2020-37073

Indicators of Compromise

  • Unexpected PHP files in the /img/ directory that were not part of the original CMS installation
  • Web server access logs showing requests to files in /img/ with cmd parameters
  • Process execution anomalies originating from the web server process (e.g., www-data or apache spawning shell processes)

Detection Strategies

  • Monitor file system changes in web-accessible directories, particularly /img/, for new PHP file creation
  • Implement web application firewall (WAF) rules to detect and block requests containing shell command parameters
  • Review web server access logs for suspicious patterns such as requests to image directories with query string parameters

Monitoring Recommendations

  • Enable file integrity monitoring (FIM) on the Victor CMS installation directory
  • Configure alerts for any new executable file uploads in the /img/ directory
  • Monitor outbound network connections from the web server for potential reverse shell activity

How to Mitigate CVE-2020-37073

Immediate Actions Required

  • Restrict file upload functionality to accept only validated image file types (JPEG, PNG, GIF)
  • Implement server-side MIME type validation and content inspection for all uploaded files
  • Consider removing or disabling Victor CMS 1.0 until a patched version is available
  • Review administrative accounts for unauthorized access and enforce strong authentication policies

Patch Information

No official vendor patch information is currently available for this vulnerability. Organizations using Victor CMS 1.0 should consult the GitHub repository for any updates and the VulnCheck Security Advisory for additional guidance.

Workarounds

  • Configure the web server to disable PHP execution within the /img/ directory using .htaccess or server configuration
  • Implement a whitelist-based file extension filter that only permits known image extensions
  • Move uploaded files outside the web root or to a non-executable storage location
  • Deploy a web application firewall with rules to block file upload attacks
bash
# Apache configuration to disable PHP execution in /img/ directory
# Add to .htaccess in the /img/ directory or virtual host configuration
<Directory "/var/www/html/img">
    php_admin_flag engine off
    RemoveHandler .php .phtml .php3 .php4 .php5 .phps
    AddType text/plain .php .phtml .php3 .php4 .php5 .phps
</Directory>

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechVictor Cms

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • 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
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-434
  • Technical References
  • GitHub PoC Repository

  • Exploit-DB #48490

  • VulnCheck Security Advisory
  • Related CVEs
  • CVE-2020-36942: Victor CMS 1.0 RCE Vulnerability

  • CVE-2020-37076: Victor CMS SQL Injection Vulnerability

  • CVE-2020-37072: Victor CMS 1.0 Stored XSS 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