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
    • 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-14192

CVE-2025-14192: Online-Banking SQLi Vulnerability

CVE-2025-14192 is a SQL injection flaw in online-banking software affecting the auth_login.php file. Attackers can exploit the Username parameter remotely. This article covers technical details, impact, and mitigation.

Published: April 22, 2026

CVE-2025-14192 Overview

A SQL Injection vulnerability has been identified in the RashminDungrani online-banking application. The vulnerability exists in the /site/dist/auth_login.php file, where the Username parameter is improperly sanitized before being used in SQL queries. This flaw allows remote attackers to manipulate database queries through specially crafted input, potentially leading to unauthorized data access, data modification, or complete database compromise.

Critical Impact

Remote attackers can exploit this SQL injection vulnerability without authentication to access, modify, or delete sensitive banking data through the login page's Username field.

Affected Products

  • RashminDungrani online-banking (up to commit 2337ad552ea9d385b4e07b90e6f32d011b7c68a2)

Discovery Timeline

  • 2025-12-07 - CVE-2025-14192 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-14192

Vulnerability Analysis

This SQL injection vulnerability is classified under CWE-74 (Improper Neutralization of Special Elements in Output Used by a Downstream Component). The vulnerable endpoint auth_login.php processes user-supplied input from the Username parameter without adequate sanitization or parameterization, allowing attackers to inject malicious SQL statements that are then executed by the database backend.

The flaw is particularly concerning in a financial application context, as it directly affects the authentication mechanism. An attacker could potentially bypass authentication entirely, extract sensitive customer financial data, modify account balances, or perform destructive operations on the database. The exploit has been publicly disclosed, increasing the risk of exploitation in the wild.

Root Cause

The root cause of this vulnerability is improper input validation and the lack of parameterized queries (prepared statements) in the authentication logic. The Username parameter from user input is directly concatenated into SQL queries without proper escaping or sanitization, allowing attackers to break out of the intended query structure and execute arbitrary SQL commands.

Attack Vector

The attack can be initiated remotely over the network without requiring prior authentication. An attacker can manipulate the Username field in the login form at /site/dist/auth_login.php by submitting crafted SQL syntax. Common attack techniques include:

  • Authentication bypass: Using payloads like ' OR '1'='1 to bypass login checks
  • Union-based extraction: Leveraging UNION SELECT statements to extract data from other tables
  • Error-based enumeration: Crafting inputs that generate database errors revealing schema information
  • Blind SQL injection: Using time-based or boolean-based techniques when direct output is not available

Since the product uses continuous delivery with rolling releases, no specific version numbers are available for tracking affected deployments. The vendor was contacted during responsible disclosure but did not respond.

Detection Methods for CVE-2025-14192

Indicators of Compromise

  • Unusual database queries containing SQL syntax characters (', ", ;, --, /*) in the Username field
  • Authentication bypass attempts where users gain access without valid credentials
  • Database error messages appearing in application logs related to malformed queries
  • Unexpected data exfiltration or database access patterns

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect SQL injection patterns in POST parameters to auth_login.php
  • Monitor application logs for repeated failed login attempts with suspicious Username values containing SQL metacharacters
  • Deploy database activity monitoring to detect anomalous query patterns, especially from the web application service account
  • Use intrusion detection systems (IDS) with SQL injection signature rules

Monitoring Recommendations

  • Enable detailed logging for the /site/dist/auth_login.php endpoint, capturing full request parameters
  • Configure alerting for database queries containing UNION, SELECT, INSERT, UPDATE, DELETE, or DROP statements originating from user input
  • Implement rate limiting on authentication endpoints to slow down automated exploitation attempts

How to Mitigate CVE-2025-14192

Immediate Actions Required

  • Restrict network access to the affected online-banking application until patched
  • Deploy a Web Application Firewall with SQL injection protection rules in front of the application
  • Review database access logs for any signs of past exploitation
  • Consider disabling or restricting the affected /site/dist/auth_login.php endpoint if an alternative authentication method exists

Patch Information

The vendor (RashminDungrani) was contacted during responsible disclosure but did not respond. As of the last update, no official patch has been released. Organizations using this software should implement workarounds or consider alternative solutions. Monitor the GitHub repository and VulDB entry for updates.

Workarounds

  • Implement prepared statements with parameterized queries in the auth_login.php file if you have access to modify the source code
  • Deploy input validation to reject Username values containing SQL metacharacters at the application or WAF layer
  • Use stored procedures for database authentication queries to add an additional layer of protection
  • Implement network segmentation to limit database exposure from the web application tier
bash
# Example WAF rule for ModSecurity to block SQL injection in Username parameter
SecRule ARGS:Username "@detectSQLi" \
    "id:100001,\
    phase:2,\
    block,\
    msg:'SQL Injection attempt detected in Username parameter',\
    log,\
    severity:'CRITICAL'"

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechRashmindungrani

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.05%

  • 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:P/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
  • Technical References
  • GitHub Security Document

  • VulDB CTI ID #334612

  • VulDB #334612

  • VulDB Submission #699237
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31744: Linux Kernel NULL Pointer 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