CVE-2025-9733
BaseFortify
Publication date: 2025-08-31
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 |
|---|---|---|
| fabian | human_resource_integrated_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 version 1.0 of the code-projects Human Resource Integrated System, specifically in the file /login_timeee.php. The emp_id parameter is not properly filtered or sanitized before being used in SQL queries, allowing an attacker to inject malicious SQL code remotely. This can lead to unauthorized access or manipulation of the database. [1, 2]
How can this vulnerability impact me? :
Exploiting this vulnerability can compromise the confidentiality, integrity, and availability of the affected system's database. An attacker can remotely execute arbitrary SQL commands, potentially accessing sensitive data, modifying or deleting records, or disrupting system operations without any authentication. [2]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by identifying instances of the vulnerable file `/login_timeee.php` on your system or network. One method is to use Google dorking with the query `inurl:login_timeee.php` to find exposed endpoints. Additionally, monitoring web server logs for suspicious requests manipulating the `emp_id` parameter may help detect exploitation attempts. Specific commands are not provided in the resources. [2]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include replacing the affected software with an alternative product, as no known countermeasures or patches have been documented. Avoid exposing the vulnerable endpoint `/login_timeee.php` to the internet, and consider implementing network-level protections such as web application firewalls to block malicious SQL injection attempts targeting the `emp_id` parameter. [2]