CVE-2025-15211
SQL Injection in Refugee Food Management System Remote Module
Publication date: 2025-12-30
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-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?
This vulnerability is a SQL injection flaw in the Refugee Food Management System 1.0, specifically in an unknown function within the file /home/refugee.php. By manipulating certain input arguments such as refNo, Fname, Lname, sex, age, contact, or nationality_nid, an attacker can inject malicious SQL code. This can be exploited remotely without user interaction.
How can this vulnerability impact me? :
The vulnerability can allow an attacker to execute unauthorized SQL commands on the database, potentially leading to unauthorized data access, data modification, or data deletion. This can compromise the confidentiality, integrity, and availability of the system's data.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring for requests targeting the file /home/refugee.php with suspicious manipulation of parameters such as refNo, Fname, Lname, sex, age, contact, and nationality_nid that may indicate SQL injection attempts. Attackers may use Google dorking with queries like "inurl:home/refugee.php" to identify vulnerable targets. Network or web server logs can be searched for such patterns. Specific commands could include using grep or similar tools to find requests containing these parameters or suspicious SQL keywords. For example, on a Linux server, you might run: grep -iE 'refNo=|Fname=|Lname=|sex=|age=|contact=|nationality_nid=' /var/log/apache2/access.log or equivalent web server logs to identify potentially malicious requests. [3]
What immediate steps should I take to mitigate this vulnerability?
No known countermeasures or mitigations are currently available for this vulnerability. It is recommended to replace the affected component (code-projects Refugee Food Management System version 1.0) with an alternative product. Additionally, as an immediate step, you should restrict access to the vulnerable endpoint /home/refugee.php, apply web application firewall (WAF) rules to block SQL injection attempts targeting the specified parameters, and monitor for exploitation attempts. Patching or updating the software when a fix becomes available is also advised. [3]