CVE-2025-6567
BaseFortify
Publication date: 2025-06-24
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 |
|---|---|---|
| campcodes | online_recruitment_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
Can you explain this vulnerability to me?
CVE-2025-6567 is a critical SQL injection vulnerability in Campcodes Online Recruitment Management System version 1.0. It occurs due to improper validation and sanitization of the 'id' parameter in the file Recruitment/admin/view_application.php. This flaw allows attackers to inject malicious SQL queries remotely without authentication, enabling unauthorized access to the database. Attackers can exploit this to view, modify, or delete sensitive data, severely compromising the system's security. [1, 2, 3]
How can this vulnerability impact me? :
Exploiting this vulnerability can lead to unauthorized database access, data leakage, data tampering, and potentially full system control by attackers. It can also cause service interruptions, impacting business continuity and compromising the confidentiality, integrity, and availability of the system and its data. [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 testing the 'id' parameter in the URL Recruitment/admin/view_application.php for SQL injection. You can use tools like sqlmap to automate detection. Example sqlmap command: sqlmap -u "http://target/Recruitment/admin/view_application.php?id=1" --batch --dbs. Additionally, manual testing can be done using payloads such as boolean-based blind (id=2 AND 6089=6089), error-based, time-based blind (id=2 AND (SELECT SLEEP(5))), or UNION query injections in the 'id' parameter to observe abnormal behavior or delays. [3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include: 1) Replace the affected software with an alternative product if possible. 2) Apply input validation and sanitization to the 'id' parameter to prevent SQL injection. 3) Use prepared statements with parameter binding to separate SQL code from user input. 4) Minimize database user permissions, avoiding high-privilege accounts for routine operations. 5) Conduct security audits to identify and fix vulnerabilities promptly. [2, 3, 1]