CVE-2025-7930
BaseFortify
Publication date: 2025-07-21
Last updated on: 2026-04-29
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| carmelo | church_donation_system | 1.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-89 | The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component. Without sufficient removal or quoting of SQL syntax in user-controllable inputs, the generated SQL query can cause those inputs to be interpreted as SQL instead of ordinary user data. |
| CWE-74 | The product constructs all or part of a command, data structure, or record using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify how it is parsed or interpreted when it is sent to a downstream component. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2025-7930 is a critical SQL injection vulnerability in version 1.0 of the Church Donation System, specifically in the /members/add_members.php file. The vulnerability occurs because the 'mobile' parameter is not properly sanitized or validated before being used in SQL queries. This allows remote attackers to inject malicious SQL code without authentication, potentially executing arbitrary SQL commands on the database. [1, 2, 3]
How can this vulnerability impact me? :
Exploitation of this vulnerability can lead to unauthorized access, modification, deletion, and exposure of sensitive data stored in the database. Attackers can manipulate SQL queries to compromise confidentiality, integrity, and availability of the system. This may result in data leakage, data tampering, full system compromise, or service disruption. [1, 2, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by identifying requests to the vulnerable endpoint /members/add_members.php with the 'mobile' parameter potentially carrying SQL injection payloads. One method is to use Google dorking with the query: inurl:members/add_members.php to find exposed instances. On your system or network, monitoring HTTP requests to this endpoint for suspicious input in the 'mobile' parameter can help detect exploitation attempts. Specific commands are not provided, but using web application firewalls (WAF) logs or intrusion detection systems (IDS) to filter for SQL injection patterns in requests to /members/add_members.php is recommended. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include replacing the affected component with an alternative product if possible. If not, implement prepared statements for database queries to ensure user inputs like 'mobile' are treated as data, not executable code. Additionally, apply rigorous input validation and filtering to ensure inputs conform to expected formats. Minimizing database user permissions by avoiding high-privilege accounts for routine operations is also advised to reduce potential damage. These actions help prevent SQL injection exploitation and protect system security and data integrity. [1, 3]