CVE-2025-10448
BaseFortify
Publication date: 2025-09-15
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_job_finder_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-10448 is a critical SQL injection vulnerability in Campcodes Online Job Finder System version 1.0. It occurs due to improper handling and inadequate validation of input parameters (such as 'SEARCH' or 'searchfor') in certain files, allowing attackers to inject malicious SQL code. This enables unauthorized access to the database, potentially leading to data leakage, modification, deletion, or full system compromise. The vulnerability can be exploited remotely without authentication. [1, 2, 3]
How can this vulnerability impact me? :
This vulnerability can severely impact you by allowing attackers to access, modify, or delete sensitive data stored in the database. It compromises the confidentiality, integrity, and availability of the system. Attackers can exploit this remotely without authentication, potentially leading to data breaches, service disruption, and full system compromise. [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 vulnerable parameter for SQL injection using tools like sqlmap. For example, you can use sqlmap with crafted HTTP POST requests targeting the 'SEARCH' or 'searchfor' parameter in the affected files (/index.php?q=result&searchfor=bycompany or /eris/searchbycompany.php). Example sqlmap command: sqlmap -u "http://target/index.php?q=result&searchfor=bycompany" --data="SEARCH=1" --risk=3 --level=5 --batch. Additionally, manual testing with payloads such as boolean-based, time-based, or union-based SQL injection strings can help confirm the vulnerability. [3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include implementing prepared statements with parameter binding to prevent SQL injection, applying strict input validation and filtering on user inputs, and minimizing database user permissions by avoiding high-privilege accounts for application connections. Regular security audits should be conducted to detect and fix vulnerabilities promptly. If possible, replacing the affected product with a secure alternative is recommended as no known countermeasures or patches currently exist. [2, 3]