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-2024-10163

CVE-2024-10163: Movie Rating System SQL Injection Flaw

CVE-2024-10163 is a critical SQL injection vulnerability in Sentiment Based Movie Rating System 1.0 that enables remote attackers to manipulate database queries. This article covers technical details, affected versions, and mitigation.

Published: May 26, 2026

CVE-2024-10163 Overview

CVE-2024-10163 is a SQL injection vulnerability in SourceCodester Sentiment Based Movie Rating System 1.0. The flaw resides in the /msrps/movie_details.php script, where the id parameter is passed directly into a SQL query without proper sanitization. An authenticated remote attacker can manipulate the id argument to inject arbitrary SQL statements against the backend database. The exploit details have been publicly disclosed, increasing the likelihood of opportunistic exploitation against exposed instances. The vulnerability is tracked under CWE-89 (Improper Neutralization of Special Elements used in an SQL Command).

Critical Impact

Successful exploitation allows remote attackers to read, modify, or extract data from the application database through crafted requests to movie_details.php.

Affected Products

  • SourceCodester Sentiment Based Movie Rating System 1.0
  • Vendor: oretnom23
  • Vulnerable component: /msrps/movie_details.php (id parameter)

Discovery Timeline

  • 2024-10-20 - CVE-2024-10163 published to NVD
  • 2024-10-22 - Last updated in NVD database

Technical Details for CVE-2024-10163

Vulnerability Analysis

The vulnerability is a classic SQL injection in the movie details endpoint of the Sentiment Based Movie Rating System. The movie_details.php script accepts an id parameter via HTTP request and incorporates the value into a SQL query without parameterization or input validation. Attackers can supply crafted payloads such as UNION-based or boolean-based injection strings to manipulate query logic. The attack is reachable over the network and requires only low-level privileges within the application context.

Root Cause

The root cause is improper neutralization of user-supplied input before it is concatenated into a SQL statement. The application uses dynamic query construction rather than prepared statements or parameterized queries. Any value passed through the id request parameter is interpreted by the database engine, allowing an attacker to break out of the intended query structure.

Attack Vector

An attacker sends an HTTP request to /msrps/movie_details.php with a malicious id value. Because the parameter is consumed directly by the SQL query, payloads can be used to extract data using UNION SELECT statements, enumerate database schemas, or bypass authentication-related checks. Exploitation does not require user interaction, and the attack can be automated against exposed deployments.

For technical proof-of-concept details, see the GitHub PoC Repository and the VulDB entry #280950.

Detection Methods for CVE-2024-10163

Indicators of Compromise

  • HTTP requests to /msrps/movie_details.php containing SQL metacharacters such as ', ", --, UNION, SELECT, or SLEEP( in the id parameter.
  • Unusually long or URL-encoded id parameter values in web server access logs.
  • Database error messages returned in HTTP responses originating from movie_details.php.
  • Outbound database queries against information_schema or system tables initiated by the web application user.

Detection Strategies

  • Inspect web server access logs for anomalous request patterns targeting movie_details.php, especially repetitive probes with varying id payloads.
  • Deploy Web Application Firewall (WAF) signatures for SQL injection patterns matching CWE-89.
  • Enable database query logging and alert on queries originating from the application that reference metadata tables or use stacked statements.
  • Correlate failed query errors with the source IP to identify automated injection tooling.

Monitoring Recommendations

  • Monitor for sudden spikes in HTTP 500 responses from movie_details.php, which often indicate injection probing.
  • Track outbound data volumes from the database host to identify potential bulk exfiltration.
  • Alert on access to sensitive tables (users, credentials) from the web application service account.

How to Mitigate CVE-2024-10163

Immediate Actions Required

  • Restrict public access to the Sentiment Based Movie Rating System pending a vendor fix, using network ACLs or reverse proxy authentication.
  • Deploy a WAF rule blocking SQL metacharacters and UNION-based payloads against /msrps/movie_details.php.
  • Rotate any database credentials and review database logs for evidence of prior exploitation.
  • Limit the database account used by the application to least-privilege read access where possible.

Patch Information

No official vendor patch is currently listed in the NVD record for CVE-2024-10163. Administrators should monitor SourceCodester for an updated release and apply source-code fixes manually by replacing dynamic SQL concatenation in movie_details.php with parameterized queries using PHP Data Objects (PDO) or mysqli prepared statements.

Workarounds

  • Modify movie_details.php to validate that the id parameter is a numeric integer before use, for example via intval() or filter_var($id, FILTER_VALIDATE_INT).
  • Implement prepared statements with bound parameters to eliminate dynamic SQL construction.
  • Place the application behind an authenticating reverse proxy if it is not intended for public exposure.
  • Disable verbose database error reporting in production to reduce information leakage to attackers.
bash
# Example WAF rule (ModSecurity) blocking SQLi against movie_details.php
SecRule REQUEST_URI "@contains /msrps/movie_details.php" \
    "id:1010163,phase:2,deny,status:403,\
     chain,msg:'CVE-2024-10163 SQLi attempt'"
    SecRule ARGS:id "@detectSQLi" "t:none,t:urlDecodeUni"

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechOretnom23 Sentiment Based Movie Rating System

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/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-89
  • Technical References
  • GitHub PoC Repository

  • VulDB CTI ID #280950

  • VulDB #280950

  • VulDB Submission #425464

  • SourceCodester Security Resources
  • Related CVEs
  • CVE-2024-8343: Movie Rating System SQL Injection 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