Описание
TorrentPier is Vulnerable to Authenticated SQL Injection through Moderator Control Panel's topic_id parameter
Summary
An authenticated SQL injection vulnerability exists in the moderator control panel (modcp.php). Users with moderator permissions can exploit this vulnerability by supplying a malicious topic_id (t) parameter. This allows an authenticated moderator to execute arbitrary SQL queries, leading to the potential disclosure, modification, or deletion of any data in the database.
Details
The vulnerability is triggered when modcp.php processes a request that includes a topic_id (t parameter). The value of $topic_id is taken directly from user input and is not sanitized or parameterized before being concatenated into an SQL query.
This occurs within the initial data retrieval block for a given topic ID.
Vulnerable Code Block in modcp.php (lines 111-122):
In the WHERE t.topic_id = $topic_id clause, the $topic_id variable is directly embedded into the query string. An attacker can inject SQL syntax (e.g., boolean logic, time-based functions) into the t parameter to manipulate the query's execution.
PoC
This is a time-based blind SQL injection vulnerability that requires moderator privileges.
Prerequisites:
- A running instance of TorrentPier.
- An account with moderator permissions.
Steps to Reproduce:
- Log in as a moderator.
- Obtain the full session cookie string from the browser's developer tools.
- Use
sqlmapto automate the exploitation. The tool will test thetparameter for vulnerabilities.
sqlmap Command:
(Note: Replace https://localhost with the target URL and "your_full_cookie_string" with the actual cookie data from the browser session, e.g., "key1=value1; key2=value2").
sqlmap Output Confirmation:
The following output from sqlmap confirms successful exploitation:
Impact
This is an authenticated SQL Injection vulnerability. Although it requires moderator privileges, it is still severe. A malicious or compromised moderator account can leverage this vulnerability to:
- Read sensitive data: Extract any information from the database, including user credentials (password hashes), private messages, email addresses, and other private data.
- Modify data: Alter records in the database, such as elevating their own or other users' privileges to administrator level.
- Delete data: Corrupt or destroy forum data by dropping tables or deleting records.
Пакеты
torrentpier/torrentpier
<= 2.8.8
Отсутствует
Связанные уязвимости
TorrentPier is an open source BitTorrent Public/Private tracker engine, written in php. In versions up to and including 2.8.8, an authenticated SQL injection vulnerability exists in the moderator control panel (`modcp.php`). Users with moderator permissions can exploit this vulnerability by supplying a malicious `topic_id` (`t`) parameter. This allows an authenticated moderator to execute arbitrary SQL queries, leading to the potential disclosure, modification, or deletion of any data in the database. Although it requires moderator privileges, it is still severe. A malicious or compromised moderator account can leverage this vulnerability to read, modify, or delete data. A patch is available at commit 6a0f6499d89fa5d6e2afa8ee53802a1ad11ece80.