Lucene search
+L

Apache Tomcat Request Smuggling Vulnerability (Nov 2023) - Linux

🗓️ 29 Nov 2023 00:00:00Reported by Copyright (C) 2023 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 20 Views

Apache Tomcat Request Smuggling Vulnerability (Nov 2023) - Linux. Vulnerable to crafted trailer headers. Update to fixed version

Related
Refs
Code
ReporterTitlePublishedViews
Family
ibm
IBM Security Bulletins
Security Bulletin: IBM Security SOAR is using a component with known vulnerabilities (CVE-2023-46589)
5 Mar 202408:50
ibm
ibm
IBM Security Bulletins
Security Bulletin: IBM Integration Bus is vulnerable to HTTP request smuggling and a denial of service due to Apache Tomcat. (CVE-2023-46589, CVE-2023-42794)
3 Jan 202414:43
ibm
ibm
IBM Security Bulletins
Security Bulletin: due to the use of Apache Tomcat, IBM webMethods developer portal is affected by Multiple Vulnerabilities
30 Sep 202510:47
ibm
ibm
IBM Security Bulletins
Security Bulletin: Due to use of Apache Tomcat, App Connect Professional is vulnerable to HTTP request smuggling.
16 Feb 202413:14
ibm
ibm
IBM Security Bulletins
Security Bulletin: IBM Cloud Pak for Network Automation 2.6.5 fixes multiple security vulnerabilities
26 Mar 202503:58
ibm
ibm
IBM Security Bulletins
Security Bulletin: IBM DevOps Release 7.0.0.1 addresses multiple vulnerabilities.
27 Mar 202417:25
ibm
ibm
IBM Security Bulletins
Security Bulletin: IBM DevOps Deploy / IBM UrbanCode Deploy (UCD) may be vulnerable to HTTP request smuggling (CVE-2023-46589)
5 Feb 202413:26
ibm
ibm
IBM Security Bulletins
Security Bulletin: IBM Sterling B2B Integrator Document Service container vulnerable to multiple issues due to Apache Tomcat
11 Apr 202413:22
ibm
ibm
IBM Security Bulletins
Security Bulletin: IBM DevOps Build 7.0.0.1 addresses multiple vulnerabilities.
27 Mar 202417:19
ibm
ibm
IBM Security Bulletins
Security Bulletin: IBM Security SOAR is using a component with known vulnerabilities (CVE-2023-46589)
11 Sep 202410:22
ibm
Rows per page
# SPDX-FileCopyrightText: 2023 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:apache:tomcat";

if (description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.151316");
  script_version("2023-12-07T05:05:41+0000");
  script_tag(name:"last_modification", value:"2023-12-07 05:05:41 +0000 (Thu, 07 Dec 2023)");
  script_tag(name:"creation_date", value:"2023-11-29 03:02:57 +0000 (Wed, 29 Nov 2023)");
  script_tag(name:"cvss_base", value:"7.8");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:C/A:N");
  script_tag(name:"severity_vector", value:"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N");
  script_tag(name:"severity_origin", value:"NVD");
  script_tag(name:"severity_date", value:"2023-12-04 19:11:00 +0000 (Mon, 04 Dec 2023)");

  script_cve_id("CVE-2023-46589");

  script_tag(name:"qod_type", value:"remote_banner_unreliable");

  script_tag(name:"solution_type", value:"VendorFix");

  script_name("Apache Tomcat Request Smuggling Vulnerability (Nov 2023) - Linux");

  script_category(ACT_GATHER_INFO);

  script_copyright("Copyright (C) 2023 Greenbone AG");
  script_family("Web Servers");
  script_dependencies("gb_apache_tomcat_consolidation.nasl", "os_detection.nasl");
  script_mandatory_keys("apache/tomcat/detected", "Host/runs_unixoide");

  script_tag(name:"summary", value:"Apache Tomcat is prone to a request smuggling vulnerability.");

  script_tag(name:"vuldetect", value:"Checks if a vulnerable version is present on the target host.");

  script_tag(name:"insight", value:"Tomcat does not correctly parse HTTP trailer headers. A
  specially crafted trailer header that exceeds the header size limit could cause Tomcat to treat a
  single request as multiple requests leading to the possibility of request smuggling when behind a
  reverse proxy.");

  script_tag(name:"affected", value:"Apache Tomcat versions 8.5.0 through 8.5.95, 9.0.0-M1 through
  9.0.82, 10.1.0-M1 through 10.1.15 and 11.0.0-M1 through 11.0.0-M10.");

  script_tag(name:"solution", value:"Update to version 8.5.96, 9.0.83, 10.1.16, 11.0.0-M11 or
  later.");

  script_xref(name:"URL", value:"https://lists.apache.org/thread/0rqq6ktozqc42ro8hhxdmmdjm1k1tpxr");
  script_xref(name:"URL", value:"https://tomcat.apache.org/security-11.html#Fixed_in_Apache_Tomcat_11.0.0-M11");
  script_xref(name:"URL", value:"https://tomcat.apache.org/security-10.html#Fixed_in_Apache_Tomcat_10.1.16");
  script_xref(name:"URL", value:"https://tomcat.apache.org/security-9.html#Fixed_in_Apache_Tomcat_9.0.83");
  script_xref(name:"URL", value:"https://tomcat.apache.org/security-8.html#Fixed_in_Apache_Tomcat_8.5.96");

  exit(0);
}

include("host_details.inc");
include("version_func.inc");

if (isnull(port = get_app_port(cpe: CPE)))
  exit(0);

if (!infos = get_app_version_and_location(cpe: CPE, port: port, exit_no_version: TRUE))
  exit(0);

version = infos["version"];
location = infos["location"];

if (version_in_range_exclusive(version: version, test_version_lo: "8.5.0", test_version_up: "8.5.96")) {
  report = report_fixed_ver(installed_version: version, fixed_version: "8.5.96", install_path: location);
  security_message(port: port, data: report);
  exit(0);
}

if (version_in_range_exclusive(version: version, test_version_lo: "9.0.0.M1", test_version_up: "9.0.83")) {
  report = report_fixed_ver(installed_version: version, fixed_version: "9.0.83", install_path: location);
  security_message(port: port, data: report);
  exit(0);
}

if (version_in_range_exclusive(version: version, test_version_lo: "10.1.0.M1", test_version_up: "10.1.16")) {
  report = report_fixed_ver(installed_version: version, fixed_version: "10.1.16", install_path: location);
  security_message(port: port, data: report);
  exit(0);
}

if (version_in_range_exclusive(version: version, test_version_lo: "11.0.0.M1", test_version_up: "11.0.0.M11")) {
  report = report_fixed_ver(installed_version: version, fixed_version: "11.0.0-M11", install_path: location);
  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

07 Dec 2023 00:00Current
7.6High risk
Vulners AI Score7.6
CVSS 3.17.5
EPSS0.02651
SSVC
20