CVE-2025-15183
SQL Injection in Refugee Food Management System Remote Exploit
Publication date: 2025-12-29
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 |
|---|---|---|
| code-projects | refugee_food_management_system | 1.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| 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. |
| 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. |
Attack-Flow Graph
AI Powered Q&A
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the 'tfid' parameter in the /home/viewtakenfd.php file for SQL injection. One approach is to use automated tools like sqlmap to test the endpoint remotely. For example, a command such as `sqlmap -u "http://target/home/viewtakenfd.php?tfid=1" --batch` can be used to detect SQL injection vulnerabilities. Additionally, attackers can be identified by monitoring for suspicious requests targeting 'viewtakenfd.php' with unusual or crafted 'tfid' parameter values. Google dorking with queries like `inurl:home/viewtakenfd.php` can also help identify vulnerable instances externally. [5, 6]
Can you explain this vulnerability to me?
This vulnerability is a SQL injection in the Refugee Food Management System 1.0, specifically in the /home/viewtakenfd.php file. An attacker can manipulate the 'tfid' argument to inject malicious SQL code. This can be exploited remotely and the exploit has been publicly disclosed.
How can this vulnerability impact me? :
The SQL injection vulnerability can allow an attacker to access, modify, or delete data in the database without authorization. This can lead to data breaches, loss of data integrity, and potentially full system compromise depending on the database and system configuration.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include: 1) Implementing prepared statements with parameter binding to separate SQL code from user input, preventing injection. 2) Applying rigorous input validation and filtering to ensure the 'tfid' parameter only accepts expected formats. 3) Minimizing database user permissions by avoiding elevated privilege accounts for routine operations. 4) If possible, replacing the affected component with an alternative product. These actions are critical to protect system security and maintain data integrity. [5, 6]