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-5360

CVE-2024-5360: Zoo Management System SQL Injection Flaw

CVE-2024-5360 is a critical SQL injection vulnerability in PHPGurukul Zoo Management System 2.1 affecting the admin panel. Attackers can exploit the fromdate parameter remotely. This article covers technical details, impact, and mitigation.

Published: May 26, 2026

CVE-2024-5360 Overview

CVE-2024-5360 is a SQL injection vulnerability in PHPGurukul Zoo Management System 2.1. The flaw resides in the /admin/foreigner-bwdates-reports-details.php script, where the fromdate parameter is passed into a database query without proper sanitization. Attackers can exploit the issue remotely over the network with low-privilege authenticated access. Public disclosure of the exploit increases the likelihood of opportunistic scanning and abuse against exposed instances. The weakness is tracked as CWE-89 and indexed in VulDB as entry 266272.

Critical Impact

Authenticated attackers can manipulate backend SQL queries to read, modify, or destroy data within the Zoo Management System database.

Affected Products

  • PHPGurukul Zoo Management System 2.1
  • Component: /admin/foreigner-bwdates-reports-details.php
  • Vulnerable parameter: fromdate

Discovery Timeline

  • 2024-05-26 - CVE-2024-5360 published to NVD
  • 2025-02-21 - Last updated in NVD database

Technical Details for CVE-2024-5360

Vulnerability Analysis

The vulnerability is a classic SQL injection flaw in the administrative reporting module of PHPGurukul Zoo Management System 2.1. The foreigner-bwdates-reports-details.php script accepts a fromdate value from an HTTP request and concatenates it directly into a SQL statement used to filter foreigner visitor reports by date range.

Because the application does not use parameterized queries or input validation on fromdate, an attacker can break out of the intended string context. Crafted payloads can append UNION SELECT statements, boolean conditions, or stacked queries depending on the underlying MySQL configuration. Successful exploitation exposes administrative data, including authentication credentials stored in the database.

The issue is reachable remotely. The attacker must possess low-privilege access to the admin interface, but credential reuse and weak default deployments make this barrier limited in practice.

Root Cause

The root cause is improper neutralization of special elements in a SQL command [CWE-89]. The fromdate parameter is incorporated into the query string without prepared statements, bound parameters, or type-casting to a date format. PHP code paths that build queries through string concatenation propagate untrusted input directly to the MySQL backend.

Attack Vector

Exploitation occurs over HTTP against the admin endpoint /admin/foreigner-bwdates-reports-details.php. An attacker submits a POST or GET request where the fromdate field contains SQL metacharacters such as single quotes, comments, and UNION clauses. The injected payload executes within the database context of the application user, returning data in the rendered report page or via blind boolean and time-based techniques. Technical details and proof-of-concept references are available at the VulDB entry 266272 and the Yuque security writeup.

Detection Methods for CVE-2024-5360

Indicators of Compromise

  • HTTP requests to /admin/foreigner-bwdates-reports-details.php containing SQL metacharacters such as ', --, UNION, SLEEP(, or INFORMATION_SCHEMA in the fromdate parameter.
  • Web server access logs showing unusually long query strings or repeated requests to the foreigner reports endpoint from a single source.
  • Database error messages referencing syntax errors near fromdate values returned in HTTP responses.

Detection Strategies

  • Deploy web application firewall rules that inspect the fromdate parameter against the endpoint and block payloads matching common SQLi signatures.
  • Enable MySQL general query logging during incident response to correlate suspicious admin requests with unexpected query structures.
  • Hunt for anomalous response sizes on the reports endpoint, which can indicate UNION-based data extraction.

Monitoring Recommendations

  • Forward web server and database logs to a centralized analytics platform and alert on SQL keywords appearing in date-typed fields.
  • Monitor for new or unusual admin session creation immediately followed by access to reporting modules.
  • Track outbound traffic from the web server host, since attackers often chain SQLi with file write primitives to stage secondary payloads.

How to Mitigate CVE-2024-5360

Immediate Actions Required

  • Restrict access to the /admin/ directory to trusted IP ranges or place the application behind a VPN until a patched build is available.
  • Rotate all administrator credentials and any database account passwords reachable from the application.
  • Audit the tblforeignertrack and user tables for unauthorized rows or modifications.

Patch Information

No vendor patch is currently referenced in the NVD or VulDB advisories for PHPGurukul Zoo Management System 2.1. Operators should monitor the PHPGurukul project page for updated releases and apply fixes as soon as they are published. Until then, source-level remediation requires rewriting the affected query to use mysqli_prepare with bound parameters and validating that fromdate conforms to a strict date format.

Workarounds

  • Implement a server-side filter that rejects any fromdate value not matching the regular expression ^\d{4}-\d{2}-\d{2}$ before the value reaches the query.
  • Place a WAF rule in front of the application that blocks SQL keywords in the fromdate parameter for the affected URL.
  • Apply database least-privilege by restricting the web application's MySQL account to read-only access on the reporting tables where feasible.
bash
# Example ModSecurity rule to block SQLi attempts against the vulnerable endpoint
SecRule REQUEST_URI "@contains /admin/foreigner-bwdates-reports-details.php" \
    "chain,phase:2,deny,status:403,id:1005360,msg:'CVE-2024-5360 SQLi attempt on fromdate'"
    SecRule ARGS:fromdate "!@rx ^\d{4}-\d{2}-\d{2}$" "t:none"

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechPhpgurukul Zoo Management 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
  • VulDB #266272

  • VulDB #266272

  • VulDB Submission #343722

  • Yuque Security Article
  • Related CVEs
  • CVE-2025-7160: Zoo Management System SQL Injection Flaw

  • CVE-2025-4765: Zoo Management System SQL Injection Flaw

  • CVE-2025-4766: Zoo Management System SQL Injection Flaw

  • CVE-2025-4911: Zoo Management 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