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
    • 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-2025-3184

CVE-2025-3184: Doctor Appointment Booking System SQLi Flaw

CVE-2025-3184 is a critical SQL injection vulnerability in Projectworlds Online Doctor Appointment Booking System 1.0 affecting the patient profile page. This article covers technical details, attack vectors, and mitigation.

Published: March 24, 2026

CVE-2025-3184 Overview

A critical SQL injection vulnerability has been identified in Projectworlds Online Doctor Appointment Booking System version 1.0. This issue affects the processing of the file /patient/profile.php?patientId=1, where manipulation of the patientFirstName parameter enables SQL injection attacks. The vulnerability can be exploited remotely without authentication, potentially allowing attackers to extract, modify, or delete sensitive patient data from the underlying database. The exploit has been publicly disclosed, and other parameters in this application may also be affected.

Critical Impact

Remote attackers can execute arbitrary SQL commands against the application database, potentially compromising patient records, authentication credentials, and other sensitive healthcare information.

Affected Products

  • Projectworlds Online Doctor Appointment Booking System PHP and MySQL version 1.0

Discovery Timeline

  • April 3, 2025 - CVE-2025-3184 published to NVD
  • April 15, 2025 - Last updated in NVD database

Technical Details for CVE-2025-3184

Vulnerability Analysis

This SQL injection vulnerability exists due to improper handling of user-supplied input in the patient profile functionality. The application fails to properly sanitize or parameterize user input before incorporating it into SQL queries. When a user submits data through the patientFirstName parameter on the /patient/profile.php endpoint, the application directly concatenates this input into database queries without adequate validation. This allows an attacker to inject malicious SQL statements that the database server will execute with the same privileges as the application's database user.

The network-accessible nature of this vulnerability means that any attacker with internet access to the application can attempt exploitation without requiring prior authentication or special access privileges. Healthcare applications like this typically store highly sensitive Protected Health Information (PHI), making this vulnerability particularly concerning from a data privacy and regulatory compliance perspective.

Root Cause

The root cause of this vulnerability is a classic failure to implement proper input validation and parameterized queries (prepared statements) in the PHP application code. The patientFirstName parameter value is being directly incorporated into SQL query strings rather than being passed as a bound parameter to a prepared statement. This violates fundamental secure coding practices for database interaction. The vulnerability falls under CWE-89 (SQL Injection) and the broader category CWE-74 (Improper Neutralization of Special Elements in Output Used by a Downstream Component).

Attack Vector

The attack can be initiated remotely over the network without any authentication requirements. An attacker would craft a malicious HTTP request to the /patient/profile.php endpoint, injecting SQL syntax into the patientFirstName parameter. The injected SQL commands would then be executed by the database server, potentially allowing the attacker to:

  • Extract sensitive patient data including names, addresses, and medical records
  • Modify or delete database records
  • Bypass authentication mechanisms
  • Potentially gain access to other database tables or the underlying server depending on database configuration

The vulnerability affects the patient profile update functionality, and similar injection points may exist in other parameters throughout the application.

Detection Methods for CVE-2025-3184

Indicators of Compromise

  • Unusual SQL error messages in application or web server logs, particularly referencing the /patient/profile.php endpoint
  • Database query logs showing anomalous queries containing SQL keywords like UNION, SELECT, DROP, or comment sequences (--, /*)
  • Multiple failed or suspicious requests to /patient/profile.php with malformed patientFirstName parameter values
  • Unexpected database record modifications or deletions without corresponding legitimate user activity

Detection Strategies

  • Deploy Web Application Firewall (WAF) rules to detect SQL injection patterns in HTTP request parameters
  • Implement database activity monitoring to alert on suspicious query patterns or unusual data access volumes
  • Enable detailed logging on the web application and database servers to capture request parameters and query execution
  • Use intrusion detection systems (IDS) with signatures for common SQL injection attack patterns

Monitoring Recommendations

  • Monitor HTTP request logs for the /patient/profile.php endpoint, paying particular attention to the patientFirstName and similar input parameters
  • Implement anomaly detection for database query patterns that deviate from normal application behavior
  • Set up alerts for database errors related to SQL syntax, which may indicate attempted exploitation
  • Review access logs for patterns of automated scanning or repeated requests with varying payloads

How to Mitigate CVE-2025-3184

Immediate Actions Required

  • Remove or restrict public access to the Online Doctor Appointment Booking System until the vulnerability is addressed
  • Implement input validation on all user-supplied parameters, particularly patientFirstName and related profile fields
  • Deploy a Web Application Firewall (WAF) with SQL injection protection rules as an interim mitigation
  • Review database logs for evidence of prior exploitation and assess potential data breach impact

Patch Information

No official patch information is currently available from the vendor. Organizations using this application should contact Projectworlds directly for remediation guidance. In the absence of vendor patches, organizations should consider the workarounds below and evaluate whether continued use of this application is appropriate given the security risk.

For additional technical details and vulnerability discussion, see the GitHub CVE Issue Discussion and VulDB entry #303143.

Workarounds

  • Modify the application source code to use prepared statements (parameterized queries) for all database interactions involving user input
  • Implement strict input validation using allowlists for acceptable characters in patient name fields
  • Apply the principle of least privilege to database accounts used by the application to limit potential damage from successful exploitation
  • Consider implementing additional authentication requirements before accessing profile modification functionality
bash
# Example: Restrict access to the vulnerable endpoint via Apache .htaccess
# Place in the application's root directory or patient subdirectory
<Files "profile.php">
    Order Deny,Allow
    Deny from all
    # Allow only from trusted internal network
    Allow from 192.168.1.0/24
</Files>

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechProjectworlds Online Doctor Appointment Booking System Php And Mysql

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.22%

  • 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: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
  • AvailabilityLow
  • CWE References
  • CWE-74

  • CWE-89
  • Technical References
  • GitHub CVE Issue Discussion

  • VulDB CTI ID #303143

  • VulDB #303143

  • VulDB Submission ID #543844
  • Related CVEs
  • CVE-2025-3186: Doctor Appointment System SQLi Vulnerability

  • CVE-2025-3183: Online Doctor Appointment System SQLi Flaw
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