CVE-2025-10444
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-10444 is a critical SQL injection vulnerability in Campcodes Online Job Finder System version 1.0, specifically in the /advancesearch.php file. It occurs due to improper handling and insufficient validation of the 'username' or 'SEARCH' parameter, allowing attackers to inject malicious SQL code. This enables unauthorized access to the database, allowing attackers to retrieve, modify, or delete sensitive data remotely without authentication. [1, 2, 3]
How can this vulnerability impact me? :
Exploitation of this vulnerability can lead to unauthorized database access, data leakage, modification, or deletion of sensitive information, and potential disruption of service availability. Attackers can perform these actions remotely without any authentication, possibly resulting in full system compromise and severe impact on system security and business continuity. [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 crafted payloads. Specifically, the 'SEARCH' POST parameter in /eris/advancesearch.php can be tested with boolean-based blind, time-based blind, and UNION query injection payloads. Example commands include using sqlmap to automate detection and exploitation, such as: sqlmap -u "http://target/eris/advancesearch.php" --data="SEARCH=1" --risk=3 --level=5 --technique=BEUST. Additionally, manual testing with curl or other HTTP tools can be done by sending payloads like: curl -X POST -d "SEARCH=1') AND 7765=(SELECT (CASE WHEN (7765=7765) THEN 7765 ELSE (SELECT 1241 UNION SELECT 3717) END))-- -" http://target/eris/advancesearch.php to observe SQL injection behavior. Google dorking with "inurl:advancesearch.php" can help identify potentially vulnerable targets. [2, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include: 1) Implement prepared statements with parameter binding to prevent SQL injection. 2) Apply strict input validation and filtering on the 'SEARCH' parameter to ensure only expected input is accepted. 3) Limit database user permissions to the minimum necessary, avoiding use of high-privilege accounts for routine operations. 4) Conduct regular security audits and code reviews to identify and fix vulnerabilities. If possible, replace or update the affected component. These actions help prevent exploitation and reduce risk. [1, 2, 3]