CVE-2025-10197
BaseFortify
Publication date: 2025-09-10
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 |
|---|---|---|
| hjsoft | hcm_human_resources_management_system | * |
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-10197 is a SQL injection vulnerability in the HJSoft HCM Human Resources Management System up to version 20250822. It occurs due to improper handling of the 'ID' parameter in the downlawbase interface, allowing attackers to inject malicious SQL code. This flaw enables unauthorized access or manipulation of the system's database remotely without authentication. [1, 2]
How can this vulnerability impact me? :
This vulnerability can impact you by compromising the confidentiality, integrity, and availability of your system. Attackers can remotely exploit the SQL injection flaw to access or manipulate sensitive data within the database, potentially leading to data breaches, unauthorized data modification, or disruption of services. [2]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
Detection can be performed by testing the vulnerable endpoint /templates/attestation/../../selfservice/lawresource/downlawbase for SQL injection via the ID parameter. You can use tools like curl or sqlmap to test for injection. For example, a curl command to test might be: curl -v 'http://<target>/templates/attestation/../../selfservice/lawresource/downlawbase?ID=1' and then try injecting SQL payloads such as ' OR '1'='1 to observe if the response indicates SQL injection. Alternatively, sqlmap can be used: sqlmap -u 'http://<target>/templates/attestation/../../selfservice/lawresource/downlawbase?ID=1' --batch --dbs to automate detection. [1, 2]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include disabling or restricting access to the vulnerable downlawbase endpoint if possible, applying input validation and sanitization on the ID parameter, or replacing the affected component or product since no official patch or vendor response is available. Network-level protections such as Web Application Firewalls (WAF) can be configured to detect and block SQL injection attempts targeting this endpoint. Monitoring and blocking suspicious requests can reduce risk until a permanent fix is applied. [2]