GitLab < 13.8.8, 13.9.x < 13.9.6, 13.10.x < 13.10.3 RCE Vulnerability - Active Check
🗓️ 08 Nov 2021 00:00:00Reported by Copyright (C) 2021 Greenbone Networks GmbHType
openvas🔗 plugins.openvas.org👁 432 Views
| Reporter | Title | Published | Views | Family All 107 |
|---|---|---|---|---|
| Exploit for Code Injection in Gitlab | 5 Jun 202115:42 | – | githubexploit | |
| Exploit for Code Injection in Gitlab | 30 Oct 202111:54 | – | githubexploit | |
| Exploit for Code Injection in Gitlab | 29 Oct 202104:15 | – | githubexploit | |
| Exploit for Code Injection in Gitlab | 9 Nov 202118:19 | – | githubexploit | |
| Exploit for Code Injection in Gitlab | 1 Nov 202315:19 | – | githubexploit | |
| Exploit for Code Injection in Gitlab | 4 Nov 202109:01 | – | githubexploit | |
| Exploit for Code Injection in Gitlab | 28 Oct 202106:29 | – | githubexploit | |
| Exploit for Code Injection in Gitlab | 29 Oct 202104:15 | – | githubexploit | |
| Exploit for Code Injection in Gitlab | 19 Nov 202509:50 | – | githubexploit | |
| Exploit for Code Injection in Gitlab | 1 Nov 202106:06 | – | githubexploit |
10
# Copyright (C) 2021 Greenbone Networks GmbH
# 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-or-later
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
CPE = "cpe:/a:gitlab:gitlab";
if (description)
{
script_oid("1.3.6.1.4.1.25623.1.0.147118");
script_version("2022-08-09T10:11:17+0000");
script_tag(name:"last_modification", value:"2022-08-09 10:11:17 +0000 (Tue, 09 Aug 2022)");
script_tag(name:"creation_date", value:"2021-11-08 08:00:48 +0000 (Mon, 08 Nov 2021)");
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:C/C:H/I:H/A:H");
script_tag(name:"severity_origin", value:"NVD");
script_tag(name:"severity_date", value:"2021-11-30 21:38:00 +0000 (Tue, 30 Nov 2021)");
script_xref(name:"CISA", value:"Known Exploited Vulnerability (KEV) catalog");
script_xref(name:"URL", value:"https://www.cisa.gov/known-exploited-vulnerabilities-catalog");
script_cve_id("CVE-2021-22205");
script_tag(name:"qod_type", value:"remote_analysis");
script_tag(name:"solution_type", value:"VendorFix");
script_name("GitLab < 13.8.8, 13.9.x < 13.9.6, 13.10.x < 13.10.3 RCE Vulnerability - Active Check");
script_category(ACT_ATTACK);
script_copyright("Copyright (C) 2021 Greenbone Networks GmbH");
script_family("Web application abuses");
script_dependencies("gb_gitlab_consolidation.nasl");
script_mandatory_keys("gitlab/http/detected");
script_require_ports("Services/www", 443);
script_tag(name:"summary", value:"GitLab is prone to a remote code execution (RCE) vulnerability.");
script_tag(name:"vuldetect", value:"Sends a crafted HTTP POST request and checks the response.");
script_tag(name:"insight", value:"An issue has been discovered in GitLab CE/EE. GitLab was not
properly validating image files that were passed to a file parser which resulted in a remote
command execution.");
script_tag(name:"affected", value:"GitLab prior to version 13.8.8, 13.9.x through 13.9.5 and
13.10.x through 13.10.2.");
script_tag(name:"solution", value:"Update to version 13.8.8, 13.9.6, 13.10.3 or later.");
script_xref(name:"URL", value:"https://about.gitlab.com/releases/2021/04/14/security-release-gitlab-13-10-3-released/");
script_xref(name:"URL", value:"https://gitlab.com/gitlab-org/gitlab/-/issues/327121");
script_xref(name:"URL", value:"https://packetstormsecurity.com/files/164768/GitLab-Unauthenticated-Remote-ExifTool-Command-Injection.html");
script_xref(name:"URL", value:"https://attackerkb.com/topics/D41jRUXCiJ/cve-2021-22205/rapid7-analysis");
exit(0);
}
include("host_details.inc");
include("http_func.inc");
include("http_keepalive.inc");
include("list_array_func.inc");
include("misc_func.inc");
if (!port = get_app_port(cpe: CPE, service: "www"))
exit(0);
if (!get_app_location(cpe: CPE, port: port, nofork: TRUE))
exit(0);
vt_strings = get_vt_strings();
bound = '_' + vt_strings["default_rand"];
file = vt_strings["default"] + rand();
url = "/" + rand_str(length: 8, charset: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz");
headers = make_array("Content-Type", "multipart/form-data; boundary=" + bound);
data = '--' + bound + '\r\n' +
'Content-Disposition: form-data; name="file"; filename="' + file + '.jpg"\r\n' +
'Content-Type: image/jpeg\r\n' +
'Content-Transfer-Encoding: binary\r\n\r\n' +
rand_str(length: 32, charset: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz") + '\r\n' +
'--' + bound + '--\r\n';
req = http_post_put_req(port: port, url: url, data: data, add_headers: headers);
res = http_keepalive_send_recv(port: port, data: req);
if (res =~ "^HTTP/1\.[01] 422" && "The change you requested was rejected" >< res) {
info["HTTP Method"] = "POST";
info["Affected URL"] = http_report_vuln_url(port: port, url: url, url_only: TRUE);
info['HTTP "POST" body'] = data;
info['HTTP "Content-Type" header'] = headers["Content-Type"];
report = 'The error response to the following HTTP request:\n\n';
report += text_format_table(array: info) + '\n\n';
report += 'indicates that the host is not patched.';
report += '\n\nResult (truncated):\n\n' + substr(res, 0, 800);
expert_info = 'Request:\n\n' + req + '\n\nResponse:\n\n' + res;
security_message(port: port, data: report, expert_info: expert_info);
exit(0);
}
exit(0);
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
09 Aug 2022 00:00Current
9.9High risk
Vulners AI Score9.9
CVSS 27.5
CVSS 3.110
EPSS0.99731
SSVC