Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2019-25491

CVE-2019-25491: Homey BNB V4 SQL Injection Vulnerability

CVE-2019-25491 is an SQL injection flaw in Homey BNB V4 allowing unauthenticated attackers to manipulate database queries via the catid parameter. This article covers the technical details, exploitation methods, and mitigation.

Published: March 6, 2026

CVE-2019-25491 Overview

CVE-2019-25491 is a SQL injection vulnerability affecting Homey BNB V4, an Airbnb clone script. The vulnerability allows unauthenticated attackers to manipulate database queries by injecting malicious SQL code through the catid parameter. Attackers can send specially crafted GET requests to the admin/cms_getpagetitle.php endpoint with malicious catid values to extract sensitive database information, potentially compromising the entire application database.

Critical Impact

Unauthenticated attackers can exploit this SQL injection vulnerability to extract sensitive database contents including user credentials, personal information, and financial data stored in the Homey BNB application.

Affected Products

  • Homey BNB V4 (Airbnb Clone Script)

Discovery Timeline

  • 2026-02-27 - CVE CVE-2019-25491 published to NVD
  • 2026-03-02 - Last updated in NVD database

Technical Details for CVE-2019-25491

Vulnerability Analysis

This SQL injection vulnerability (CWE-89) exists in the Homey BNB V4 application due to insufficient input validation in the cms_getpagetitle.php file located within the admin directory. The application fails to properly sanitize user-supplied input passed through the catid GET parameter before incorporating it into SQL queries. This classic injection flaw allows attackers to break out of the intended query context and execute arbitrary SQL commands against the backend database.

The vulnerability is particularly severe because it requires no authentication to exploit. Any remote attacker with network access to the vulnerable application can craft malicious requests targeting the endpoint. Successful exploitation could lead to unauthorized data extraction, data modification, or in some configurations, complete database server compromise.

Root Cause

The root cause of this vulnerability is improper input validation and the lack of parameterized queries or prepared statements when processing the catid parameter. The application directly concatenates user input into SQL queries without sanitization, escaping, or type validation. This allows attackers to inject SQL syntax that modifies the intended query logic.

Attack Vector

The attack vector is network-based, requiring only HTTP/HTTPS access to the vulnerable endpoint. An attacker sends a GET request to admin/cms_getpagetitle.php with a malicious payload in the catid parameter. The payload breaks out of the expected numeric context and appends additional SQL commands. Common exploitation techniques include UNION-based injection to extract data from other tables, boolean-based blind injection to enumerate database contents character by character, or time-based blind injection when direct output is not visible.

The vulnerability can be exploited using standard SQL injection techniques. For detailed technical information and proof-of-concept code, refer to the Exploit-DB #46616 entry and the VulnCheck Advisory.

Detection Methods for CVE-2019-25491

Indicators of Compromise

  • Unusual GET requests to admin/cms_getpagetitle.php containing SQL keywords such as UNION, SELECT, OR, AND, or comment sequences (--, /*)
  • Web server logs showing requests with encoded SQL injection payloads in the catid parameter
  • Database query logs revealing anomalous queries or syntax errors from the cms_getpagetitle functionality
  • Unexpected database access patterns or data exfiltration attempts from the application

Detection Strategies

  • Deploy Web Application Firewall (WAF) rules to detect and block SQL injection patterns targeting the catid parameter
  • Monitor web server access logs for suspicious requests to admin/cms_getpagetitle.php with non-numeric catid values
  • Implement database query monitoring to alert on unusual query structures or errors from the affected endpoint
  • Use intrusion detection systems (IDS) with SQL injection signatures to identify exploitation attempts

Monitoring Recommendations

  • Enable verbose logging on web servers and database servers to capture detailed request and query information
  • Set up alerting for failed SQL query attempts that may indicate injection testing
  • Review access logs regularly for patterns consistent with automated SQL injection tools such as sqlmap
  • Monitor for unusual database read operations that may indicate data exfiltration

How to Mitigate CVE-2019-25491

Immediate Actions Required

  • Restrict access to the admin/cms_getpagetitle.php endpoint through IP whitelisting or authentication requirements
  • Deploy WAF rules to filter SQL injection payloads in the catid parameter
  • Consider disabling or removing the vulnerable endpoint if it is not critical to application functionality
  • Review database permissions to ensure the application uses least-privilege database accounts

Patch Information

No official vendor patch information is currently available for this vulnerability. Organizations using Homey BNB V4 should contact DOD IT Solutions for guidance on available updates or fixes. In the absence of an official patch, implementing the workarounds below is strongly recommended.

Workarounds

  • Implement server-side input validation to ensure the catid parameter only accepts numeric values
  • Use prepared statements or parameterized queries to prevent SQL injection in the affected code
  • Apply a WAF or reverse proxy with SQL injection filtering capabilities in front of the application
  • Restrict network access to the admin directory to trusted IP addresses only
  • Consider migrating to a more actively maintained vacation rental platform if no vendor support is available
bash
# Example: Apache .htaccess restriction for admin directory
<Directory "/var/www/html/admin">
    # Restrict access to trusted IPs only
    Require ip 192.168.1.0/24
    Require ip 10.0.0.0/8
    
    # Block requests with SQL injection patterns in query string
    RewriteEngine On
    RewriteCond %{QUERY_STRING} (union|select|insert|delete|drop|update|;|--) [NC]
    RewriteRule .* - [F,L]
</Directory>

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechN/A

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:L/VA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-89
  • Technical References
  • DOD IT Solutions Airbnb Clone

  • Exploit-DB #46616

  • VulnCheck Advisory: Homey BNB SQL Injection
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected 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