Overview
The vulnerability, CVE-2025-29390, relates to an issue found in the jerryhanjj ERP 1.0 system. This vulnerability is particularly severe because it allows for SQL Injection attacks, which could potentially compromise the entire system or lead to data leakage. SQL Injection attacks are a pervasive threat in the world of cybersecurity, affecting numerous applications and systems worldwide. This vulnerability is significant as it affects a critical component of the jerryhanjj ERP system, which is widely used in various business operations.
Vulnerability Summary
CVE ID: CVE-2025-29390
Severity: High (8.8 CVSS score)
Attack Vector: Network
Privileges Required: Low
User Interaction: None
Impact: System compromise and potential data leakage
Affected Products
No phone number, email, or personal info required.
Product | Affected Versions
jerryhanjj ERP | 1.0
How the Exploit Works
The vulnerability lies in the set_password function in application/controllers/home.php of jerryhanjj ERP 1.0. An attacker could exploit this weakness by injecting malicious SQL code. Since the software does not adequately sanitize user-supplied input, the attacker’s injected code could be executed in the database, potentially granting unauthorized access or disclosing sensitive information.
Conceptual Example Code
Here’s a hypothetical example of how an attacker might exploit this vulnerability:
POST /set_password HTTP/1.1
Host: target.example.com
Content-Type: application/x-www-form-urlencoded
username=admin&password=' OR '1'='1'; DROP TABLE users; --
In the above example, the attacker attempts to change the password of the ‘admin’ user. The attacker uses SQL Injection to manipulate the statement into always being true (OR ‘1’=’1′) and subsequently adding an additional SQL command to drop the “users” table, causing data loss or system compromise.
Mitigation and Prevention
The most effective solution to this vulnerability is to apply the vendor-supplied patch as soon as possible. The patch aims to rectify the issue by correctly sanitizing user input to prevent SQL Injection attacks. As a temporary measure, a Web Application Firewall (WAF) or Intrusion Detection System (IDS) can be used to detect and block potential SQL Injection attempts. However, these measures should be seen as a stopgap until the patch can be applied, as they may not block all possible attack vectors.