A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2025-65125

CVE-2025-65125: Online Movie Booking SQLi Vulnerability

CVE-2025-65125 is a SQL injection vulnerability in the Online Movie Booking system v5.5 that allows attackers to extract sensitive database information. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-65125 Overview

CVE-2025-65125 is a critical SQL Injection vulnerability discovered in the gosaliajainam/online-movie-booking application version 5.5. The vulnerability exists in the movie_details.php file and allows remote attackers to extract sensitive information from the underlying database through malicious SQL queries.

Critical Impact

This SQL Injection vulnerability enables unauthenticated attackers to access, modify, or delete sensitive data from the database, potentially compromising user credentials, payment information, and other confidential movie booking records.

Affected Products

  • gosaliajainam/online-movie-booking version 5.5

Discovery Timeline

  • 2026-01-02 - CVE-2025-65125 published to NVD
  • 2026-01-06 - Last updated in NVD database

Technical Details for CVE-2025-65125

Vulnerability Analysis

This SQL Injection vulnerability (CWE-89: Improper Neutralization of Special Elements used in an SQL Command) occurs when user-supplied input is incorporated into SQL queries without proper sanitization or parameterization. The movie_details.php endpoint accepts input parameters that are directly concatenated into database queries, allowing attackers to manipulate the query logic.

The vulnerability is network-accessible and requires no authentication or user interaction to exploit. An attacker can craft malicious input strings containing SQL metacharacters and additional SQL statements to extract data from the database, bypass authentication mechanisms, or potentially modify database contents.

Root Cause

The root cause is improper input validation and the use of dynamic SQL query construction in movie_details.php. The application fails to sanitize user-supplied parameters before incorporating them into SQL statements, violating secure coding practices that mandate the use of prepared statements or parameterized queries.

Attack Vector

The attack is conducted over the network by sending specially crafted HTTP requests to the movie_details.php endpoint. Attackers can inject SQL payloads through vulnerable parameters, allowing them to:

  1. Extract sensitive user data including credentials and personal information
  2. Enumerate database structure and table contents
  3. Bypass authentication controls
  4. Potentially achieve data modification or deletion depending on database permissions

The vulnerability can be exploited using common SQL injection techniques such as UNION-based injection, blind SQL injection, or error-based injection methods. Technical details regarding the specific exploitation approach are documented in the GitHub CVE Research Repository.

Detection Methods for CVE-2025-65125

Indicators of Compromise

  • Unusual SQL syntax patterns in web application logs targeting movie_details.php
  • Database error messages exposed in HTTP responses indicating SQL query failures
  • Abnormal database query patterns or timing suggesting blind SQL injection attempts
  • Unexpected data access patterns or bulk data extraction from the application database

Detection Strategies

  • Deploy Web Application Firewalls (WAF) with SQL injection detection rules
  • Implement database activity monitoring to detect anomalous queries
  • Enable detailed logging on web servers and review requests to movie_details.php for suspicious payloads
  • Utilize intrusion detection systems (IDS) with signatures for common SQL injection patterns

Monitoring Recommendations

  • Monitor HTTP request parameters for SQL metacharacters such as single quotes, double dashes, and UNION keywords
  • Set up alerts for database errors or exceptions related to malformed queries
  • Track access patterns to sensitive database tables for unusual query volumes
  • Review application logs for repeated requests with varying injection payloads

How to Mitigate CVE-2025-65125

Immediate Actions Required

  • Implement input validation and sanitization on all user-supplied parameters in movie_details.php
  • Convert dynamic SQL queries to prepared statements with parameterized queries
  • Deploy or update WAF rules to block SQL injection attack patterns
  • Restrict database user privileges to minimum required permissions
  • Consider temporarily disabling the vulnerable endpoint until a patch is applied

Patch Information

No official vendor patch has been published at this time. Users should implement the recommended mitigations and monitor the project repository for security updates. For additional technical details and research, refer to the GitHub CVE Research Repository.

Workarounds

  • Use prepared statements (parameterized queries) instead of dynamic SQL construction
  • Implement strict input validation using allowlists for expected parameter values
  • Deploy a WAF configured with SQL injection prevention rules in front of the application
  • Apply the principle of least privilege to database accounts used by the application
  • Consider implementing database query logging and anomaly detection
bash
# Example: Restrict database user permissions (MySQL)
REVOKE ALL PRIVILEGES ON moviebooking.* FROM 'webapp_user'@'localhost';
GRANT SELECT, INSERT, UPDATE ON moviebooking.bookings TO 'webapp_user'@'localhost';
GRANT SELECT ON moviebooking.movies TO 'webapp_user'@'localhost';
FLUSH PRIVILEGES;

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechGosaliajainam

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • GitHub CVE Research Repository
  • Latest CVEs
  • CVE-2024-8261: Prolizyazilim OBS Auth Bypass Vulnerability

  • CVE-2024-13068: LimonDesk Auth Bypass Vulnerability

  • CVE-2025-53679: Fortinet FortiSandbox RCE Vulnerability

  • CVE-2026-9446: Simple POS Inventory System SQLi Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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