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-2026-0643

CVE-2026-0643: House Rental System RCE Vulnerability

CVE-2026-0643 is a remote code execution vulnerability in House Rental and Property Listing 1.0 caused by unrestricted file upload in the signup component. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2026-0643 Overview

A security flaw has been identified in projectworlds House Rental and Property Listing version 1.0. The vulnerability exists in an unknown function of the file /app/register.php?action=reg within the Signup component. Manipulation of the image argument allows for unrestricted file upload, enabling remote attackers to potentially execute malicious code on the target system.

Critical Impact

Unrestricted file upload vulnerabilities can allow attackers to upload malicious files such as web shells, leading to remote code execution and complete system compromise.

Affected Products

  • projectworlds House Rental and Property Listing 1.0
  • Signup Component - /app/register.php?action=reg
  • Image Upload Functionality

Discovery Timeline

  • 2026-01-07 - CVE CVE-2026-0643 published to NVD
  • 2026-01-08 - Last updated in NVD database

Technical Details for CVE-2026-0643

Vulnerability Analysis

This vulnerability is classified under CWE-284 (Improper Access Control), affecting the file upload functionality within the user registration process. The application fails to properly validate and restrict file uploads when users register through the signup component, specifically when handling the image parameter.

The flaw allows unauthenticated remote attackers to bypass file type restrictions and upload arbitrary files to the server. This type of vulnerability is particularly dangerous in web applications as it can lead to remote code execution if an attacker uploads a malicious script (such as a PHP web shell) that can then be executed on the server.

According to available references, an exploit for this vulnerability has been published and may be actively used by threat actors. The attack can be performed remotely over the network without requiring any authentication or user interaction.

Root Cause

The root cause of this vulnerability is the lack of proper input validation and access control on the file upload functionality within the registration process. The application does not adequately verify:

  • File type restrictions based on content (not just extension)
  • File size limitations
  • Proper sanitization of uploaded file names
  • Restrictions on where uploaded files are stored and their execution permissions

This allows malicious actors to bypass any client-side restrictions and upload files that should not be permitted by the application.

Attack Vector

The attack is conducted remotely over the network. An attacker can exploit this vulnerability by:

  1. Navigating to the registration page at /app/register.php?action=reg
  2. Crafting a malicious file (e.g., a PHP web shell) potentially disguised with an image extension
  3. Submitting the registration form with the malicious file in the image parameter
  4. Accessing the uploaded file directly to execute malicious code

The vulnerability allows for straightforward exploitation without requiring authentication or special privileges. Once a malicious file is uploaded and accessible, the attacker can gain remote code execution capabilities on the server.

For detailed technical analysis, refer to the GitHub CVE Issue Discussion and VulDB entry #339686.

Detection Methods for CVE-2026-0643

Indicators of Compromise

  • Unusual files appearing in upload directories with executable extensions (.php, .phtml, .php5)
  • Web server logs showing POST requests to /app/register.php?action=reg with large file uploads
  • Unexpected outbound connections from the web server
  • New or modified files in web-accessible directories with recent timestamps
  • Access logs showing requests to unusual file paths in upload directories

Detection Strategies

  • Monitor file upload directories for new files with executable content types
  • Implement file integrity monitoring on web application directories
  • Configure web application firewalls (WAF) to detect and block file upload attacks
  • Enable detailed logging for the registration endpoint and review for anomalous activity

Monitoring Recommendations

  • Set up alerts for new file creation events in web application upload directories
  • Monitor for POST requests to /app/register.php with unusually large payloads
  • Track server-side script execution from directories typically used for user uploads
  • Implement real-time log analysis to detect exploitation attempts

How to Mitigate CVE-2026-0643

Immediate Actions Required

  • Restrict access to the registration functionality until a patch is available
  • Implement server-side file type validation based on file content (magic bytes)
  • Configure the web server to prevent script execution in upload directories
  • Apply web application firewall rules to block malicious file uploads
  • Review upload directories for any existing malicious files

Patch Information

No official vendor patch has been identified at this time. Organizations using projectworlds House Rental and Property Listing 1.0 should monitor the vendor's official channels for security updates. In the absence of an official patch, implementing the workarounds and hardening measures below is strongly recommended.

For additional context and community discussion, see the VulDB entry and VulDB CTI information.

Workarounds

  • Disable the image upload functionality in the registration process if not business-critical
  • Implement strict allowlist-based file type validation (checking both extension and MIME type)
  • Store uploaded files outside the web root to prevent direct execution
  • Rename uploaded files to random names without preserving original extensions
  • Configure .htaccess or web server rules to deny script execution in upload directories
bash
# Apache configuration to prevent script execution in upload directory
# Add to .htaccess in the upload directory
<Directory "/var/www/html/uploads">
    php_flag engine off
    AddHandler cgi-script .php .phtml .php5 .php7 .phps
    Options -ExecCGI
    <FilesMatch "\.(php|phtml|php5|php7|phps)$">
        Require all denied
    </FilesMatch>
</Directory>

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechProjectworlds

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:P/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
  • AvailabilityLow
  • CWE References
  • CWE-284
  • Technical References
  • GitHub CVE Issue Discussion

  • VulDB CTI ID #339686

  • VulDB #339686

  • VulDB Submission ID #732563
  • Related CVEs
  • CVE-2025-3040: Online Time Table Generator RCE Flaw

  • CVE-2025-3042: Time Table Generator RCE Vulnerability

  • CVE-2026-4596: Lawyer Management System XSS Vulnerability

  • CVE-2026-4626: Lawyer Management System XSS Vulnerability
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