标题: CVE-2025-0561 [打印本页] 作者: 用户云卷云舒 时间: 2025-1-20 05:02 标题: CVE-2025-0561 Itsourcecode Farm Management System In PHP v1.0 add-pig.php SQL injection
AFFECTED AND/OR FIXED VERSION(S)
submitter
weiwei-abc
Vulnerable File
add-pig.php
VERSION(S)
V1.0
PROBLEM TYPE
Vulnerability Type
SQL injection
Root Cause
A SQL injection vulnerability was found in the ‘add-pig.php’ file of the ‘Farm Management System In PHP’ project. The reason for this issue is that attackers inject malicious code from the parameter “pigno” and use it directly in SQL queries without appropriate cleaning or validation. This allows attackers to forge input values, thereby manipulating SQL queries and performing unauthorized operations.
Impact
Attackers can exploit this SQL injection vulnerability to achieve unauthorized database access, sensitive data leakage, data tampering, comprehensive system control, and even service interruption, posing a serious threat to system security and business continuity.
DESCRIPTION
Due to insufficient user input verification for the “pigno” parameter, a serious SQL injection vulnerability has been discovered in the login function of the “Farm Management System In PHP”, allowing attackers to inject malicious SQL queries. Therefore, attackers can gain unauthorized access to databases, modify or delete data, and access sensitive information. Immediate remedial measures are needed to ensure system security and protect data integrity.
Vulnerability details and POC
POST /add-pig.php HTTP/1.1
Host: 192.168.1.136:1219
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0
The following are screenshots of some specific information obtained from testing and running with the sqlmap tool:
sqlmap -r 123 --batch --dbs
复制代码
Suggested repair
Use prepared statements and parameter binding:
Preparing statements can prevent SQL injection as they separate SQL code from user input data. When using prepare statements, the value entered by the user is treated as pure data and will not be interpreted as SQL code.
Input validation and filtering:
Strictly validate and filter user input data to ensure it conforms to the expected format.
Minimize database user permissions:
Ensure that the account used to connect to the database has the minimum necessary permissions. Avoid using accounts with advanced permissions (such as’ root ‘or’ admin ') for daily operations.
Regular security audits:
Regularly conduct code and system security audits to promptly identify and fix potential security vulnerabilities.