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-2025-70146

CVE-2025-70146: Time Table Generator Auth Bypass Flaw

CVE-2025-70146 is an authentication bypass flaw in ProjectWorlds Online Time Table Generator 1.0 affecting admin scripts. Attackers can perform unauthorized actions without valid sessions. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 20, 2026

CVE-2025-70146 Overview

CVE-2025-70146 is a critical authentication bypass vulnerability affecting ProjectWorlds Online Time Table Generator version 1.0. The vulnerability exists due to missing authentication controls in multiple administrative action scripts located under the /admin/ directory. Remote attackers can exploit this flaw to perform unauthorized administrative operations, including adding and deleting records, by sending direct HTTP requests to affected endpoints without requiring a valid session.

Critical Impact

Unauthenticated attackers can perform arbitrary administrative operations on the application, potentially leading to complete data manipulation, deletion of critical records, and disruption of time table management functionality.

Affected Products

  • ProjectWorlds Online Time Table Generator 1.0
  • Administrative scripts under /admin/ directory
  • PHP-based web application with MySQL backend

Discovery Timeline

  • 2026-02-18 - CVE-2025-70146 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2025-70146

Vulnerability Analysis

This vulnerability is classified as CWE-306 (Missing Authentication for Critical Function), which represents a fundamental security design flaw where critical administrative functionality is exposed without requiring proper authentication. The affected application fails to implement session validation or any form of authentication checks before processing requests to administrative endpoints.

The vulnerability enables attackers to directly interact with administrative functionality that should be restricted to authenticated administrators only. Since the application does not validate whether incoming requests originate from authenticated sessions, any remote user can craft HTTP requests to perform privileged operations such as creating new records or deleting existing data from the time table system.

Root Cause

The root cause of this vulnerability lies in the absence of authentication middleware or session verification logic in the administrative PHP scripts. The scripts under the /admin/ directory process incoming requests and execute database operations without first confirming that the requester has valid administrative credentials or an authenticated session. This architectural flaw allows the application to accept and process requests from any source, regardless of authorization status.

Attack Vector

The attack vector is network-based and requires no user interaction. An attacker can exploit this vulnerability by identifying the vulnerable administrative endpoints and sending crafted HTTP requests directly to them. The exploitation process typically involves:

  1. Discovering the administrative endpoints under the /admin/ directory
  2. Analyzing the expected parameters for each administrative action
  3. Sending direct HTTP POST or GET requests to endpoints such as those handling record additions or deletions
  4. Executing unauthorized administrative operations without providing any authentication credentials

The vulnerability is particularly severe because it requires no privileges, no authentication, and can be exploited remotely over the network. For detailed technical analysis and exploitation methodology, refer to the GitHub CVE-2025-70146 Analysis.

Detection Methods for CVE-2025-70146

Indicators of Compromise

  • Unexpected HTTP requests to /admin/ endpoints from unauthenticated sources or external IP addresses
  • Database modification logs showing records being added or deleted without corresponding authenticated admin sessions
  • Web server access logs containing direct requests to administrative action scripts without prior authentication page access
  • Anomalous patterns of DELETE or INSERT operations in the application database

Detection Strategies

  • Implement web application firewall (WAF) rules to monitor and alert on direct access attempts to /admin/ endpoints without valid session cookies
  • Deploy log analysis to correlate administrative actions with authenticated session records
  • Configure intrusion detection systems to flag HTTP requests to sensitive administrative paths originating from external networks
  • Monitor database audit logs for unauthorized modifications to time table records

Monitoring Recommendations

  • Enable comprehensive access logging for all scripts under the /admin/ directory
  • Implement real-time alerting for any administrative operations performed without valid session tokens
  • Review web server logs periodically for patterns indicating reconnaissance or exploitation attempts against administrative endpoints
  • Utilize application performance monitoring tools to track unusual spikes in administrative endpoint requests

How to Mitigate CVE-2025-70146

Immediate Actions Required

  • Restrict access to the /admin/ directory using web server access controls (IP whitelisting, HTTP authentication)
  • Take the application offline or disable public access if it cannot be immediately patched
  • Review database logs for any unauthorized modifications that may have occurred
  • Implement network-level access restrictions to limit administrative endpoint access to trusted networks only

Patch Information

No official vendor patch has been identified in the available CVE data. Users are advised to monitor the Project Worlds Tool Guide for updates. In the absence of an official patch, implementing the workarounds below is strongly recommended to protect against exploitation.

Workarounds

  • Add session validation checks at the beginning of each administrative script to verify user authentication before processing requests
  • Configure .htaccess rules to require HTTP authentication for all files under the /admin/ directory
  • Implement IP-based access control lists to restrict administrative endpoint access to known administrator IP addresses
  • Deploy a reverse proxy with authentication enforcement in front of the application
bash
# Apache .htaccess configuration to restrict /admin/ access
# Place this file in the /admin/ directory

AuthType Basic
AuthName "Restricted Administrative Area"
AuthUserFile /path/to/.htpasswd
Require valid-user

# Optional: IP-based restriction
# Order Deny,Allow
# Deny from all
# Allow from 192.168.1.0/24

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechProjectworlds

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.25%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-306
  • Technical References
  • Project Worlds Tool Guide

  • GitHub CVE-2025-70146 Analysis
  • Related CVEs
  • CVE-2026-5634: Car Rental Project SQLi Vulnerability

  • CVE-2026-5637: Car Rental System SQL Injection Flaw

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

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