Vulnerabilities > CVE-2017-5664 - Improper Handling of Exceptional Conditions vulnerability in Apache Tomcat

047910
CVSS 7.5 - HIGH
Attack vector
NETWORK
Attack complexity
LOW
Privileges required
NONE
Confidentiality impact
NONE
Integrity impact
HIGH
Availability impact
NONE
network
low complexity
apache
CWE-755
nessus

Summary

The error page mechanism of the Java Servlet Specification requires that, when an error occurs and an error page is configured for the error that occurred, the original request and response are forwarded to the error page. This means that the request is presented to the error page with the original HTTP method. If the error page is a static file, expected behaviour is to serve content of the file as if processing a GET request, regardless of the actual HTTP method. The Default Servlet in Apache Tomcat 9.0.0.M1 to 9.0.0.M20, 8.5.0 to 8.5.14, 8.0.0.RC1 to 8.0.43 and 7.0.0 to 7.0.77 did not do this. Depending on the original request this could lead to unexpected and undesirable results for static error pages including, if the DefaultServlet is configured to permit writes, the replacement or removal of the custom error page. Notes for other user provided error pages: (1) Unless explicitly coded otherwise, JSPs ignore the HTTP method. JSPs used as error pages must must ensure that they handle any error dispatch as a GET request, regardless of the actual method. (2) By default, the response generated by a Servlet does depend on the HTTP method. Custom Servlets used as error pages must ensure that they handle any error dispatch as a GET request, regardless of the actual method.

Vulnerable Configurations

Part Description Count
Application
Apache
161

Nessus

  • NASL familyFedora Local Security Checks
    NASL idFEDORA_2017-794C18B62D.NASL
    descriptionThis update includes a rebase from 8.0.43 up to 8.0.44 which resolves a single CVE along with various other bugs/features : - rhbz#1459160 CVE-2017-5664 tomcat: Security constrained bypass in error page mechanism Note that Tenable Network Security has extracted the preceding description block directly from the Fedora update system website. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-06-05
    modified2017-07-17
    plugin id101661
    published2017-07-17
    reporterThis script is Copyright (C) 2017-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/101661
    titleFedora 26 : 1:tomcat (2017-794c18b62d)
    code
    #%NASL_MIN_LEVEL 80502
    #
    # (C) Tenable Network Security, Inc.
    #
    # The descriptive text and package checks in this plugin were  
    # extracted from Fedora Security Advisory FEDORA-2017-794c18b62d.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(101661);
      script_version("3.6");
      script_set_attribute(attribute:"plugin_modification_date", value:"2020/06/04");
    
      script_cve_id("CVE-2017-5664");
      script_xref(name:"FEDORA", value:"2017-794c18b62d");
    
      script_name(english:"Fedora 26 : 1:tomcat (2017-794c18b62d)");
      script_summary(english:"Checks rpm output for the updated package.");
    
      script_set_attribute(
        attribute:"synopsis", 
        value:"The remote Fedora host is missing a security update."
      );
      script_set_attribute(
        attribute:"description", 
        value:
    "This update includes a rebase from 8.0.43 up to 8.0.44 which resolves
    a single CVE along with various other bugs/features :
    
      - rhbz#1459160 CVE-2017-5664 tomcat: Security constrained
        bypass in error page mechanism
    
    Note that Tenable Network Security has extracted the preceding
    description block directly from the Fedora update system website.
    Tenable has attempted to automatically clean and format it as much as
    possible without introducing additional issues."
      );
      script_set_attribute(
        attribute:"see_also",
        value:"https://bodhi.fedoraproject.org/updates/FEDORA-2017-794c18b62d"
      );
      script_set_attribute(
        attribute:"solution", 
        value:"Update the affected 1:tomcat package."
      );
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:P/A:N");
      script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:fedoraproject:fedora:1:tomcat");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:fedoraproject:fedora:26");
    
      script_set_attribute(attribute:"vuln_publication_date", value:"2017/06/06");
      script_set_attribute(attribute:"patch_publication_date", value:"2017/07/07");
      script_set_attribute(attribute:"plugin_publication_date", value:"2017/07/17");
      script_set_attribute(attribute:"generated_plugin", value:"current");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_copyright(english:"This script is Copyright (C) 2017-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");
      script_family(english:"Fedora Local Security Checks");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/RedHat/release", "Host/RedHat/rpm-list");
    
      exit(0);
    }
    
    
    include("audit.inc");
    include("global_settings.inc");
    include("rpm.inc");
    
    
    if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
    release = get_kb_item("Host/RedHat/release");
    if (isnull(release) || "Fedora" >!< release) audit(AUDIT_OS_NOT, "Fedora");
    os_ver = pregmatch(pattern: "Fedora.*release ([0-9]+)", string:release);
    if (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, "Fedora");
    os_ver = os_ver[1];
    if (! preg(pattern:"^26([^0-9]|$)", string:os_ver)) audit(AUDIT_OS_NOT, "Fedora 26", "Fedora " + os_ver);
    
    if (!get_kb_item("Host/RedHat/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING);
    
    
    cpu = get_kb_item("Host/cpu");
    if (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);
    if ("x86_64" >!< cpu && cpu !~ "^i[3-6]86$") audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "Fedora", cpu);
    
    
    flag = 0;
    if (rpm_check(release:"FC26", reference:"tomcat-8.0.44-1.fc26", epoch:"1")) flag++;
    
    
    if (flag)
    {
      security_report_v4(
        port       : 0,
        severity   : SECURITY_WARNING,
        extra      : rpm_report_get()
      );
      exit(0);
    }
    else
    {
      tested = pkg_tests_get();
      if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);
      else audit(AUDIT_PACKAGE_NOT_INSTALLED, "1:tomcat");
    }
    
  • NASL familyFedora Local Security Checks
    NASL idFEDORA_2017-63789C8C29.NASL
    descriptionThis update includes a rebase from 8.0.43 up to 8.0.44 which resolves a single CVE along with various other bugs/features : - rhbz#1459160 CVE-2017-5664 tomcat: Security constrained bypass in error page mechanism Note that Tenable Network Security has extracted the preceding description block directly from the Fedora update system website. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-06-05
    modified2017-06-30
    plugin id101123
    published2017-06-30
    reporterThis script is Copyright (C) 2017-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/101123
    titleFedora 25 : 1:tomcat (2017-63789c8c29)
    code
    #%NASL_MIN_LEVEL 80502
    #
    # (C) Tenable Network Security, Inc.
    #
    # The descriptive text and package checks in this plugin were  
    # extracted from Fedora Security Advisory FEDORA-2017-63789c8c29.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(101123);
      script_version("3.6");
      script_set_attribute(attribute:"plugin_modification_date", value:"2020/06/04");
    
      script_cve_id("CVE-2017-5664");
      script_xref(name:"FEDORA", value:"2017-63789c8c29");
    
      script_name(english:"Fedora 25 : 1:tomcat (2017-63789c8c29)");
      script_summary(english:"Checks rpm output for the updated package.");
    
      script_set_attribute(
        attribute:"synopsis", 
        value:"The remote Fedora host is missing a security update."
      );
      script_set_attribute(
        attribute:"description", 
        value:
    "This update includes a rebase from 8.0.43 up to 8.0.44 which resolves
    a single CVE along with various other bugs/features :
    
      - rhbz#1459160 CVE-2017-5664 tomcat: Security constrained
        bypass in error page mechanism
    
    Note that Tenable Network Security has extracted the preceding
    description block directly from the Fedora update system website.
    Tenable has attempted to automatically clean and format it as much as
    possible without introducing additional issues."
      );
      script_set_attribute(
        attribute:"see_also",
        value:"https://bodhi.fedoraproject.org/updates/FEDORA-2017-63789c8c29"
      );
      script_set_attribute(
        attribute:"solution", 
        value:"Update the affected 1:tomcat package."
      );
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:P/A:N");
      script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:fedoraproject:fedora:1:tomcat");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:fedoraproject:fedora:25");
    
      script_set_attribute(attribute:"vuln_publication_date", value:"2017/06/06");
      script_set_attribute(attribute:"patch_publication_date", value:"2017/06/29");
      script_set_attribute(attribute:"plugin_publication_date", value:"2017/06/30");
      script_set_attribute(attribute:"generated_plugin", value:"current");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_copyright(english:"This script is Copyright (C) 2017-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");
      script_family(english:"Fedora Local Security Checks");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/RedHat/release", "Host/RedHat/rpm-list");
    
      exit(0);
    }
    
    
    include("audit.inc");
    include("global_settings.inc");
    include("rpm.inc");
    
    
    if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
    release = get_kb_item("Host/RedHat/release");
    if (isnull(release) || "Fedora" >!< release) audit(AUDIT_OS_NOT, "Fedora");
    os_ver = pregmatch(pattern: "Fedora.*release ([0-9]+)", string:release);
    if (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, "Fedora");
    os_ver = os_ver[1];
    if (! preg(pattern:"^25([^0-9]|$)", string:os_ver)) audit(AUDIT_OS_NOT, "Fedora 25", "Fedora " + os_ver);
    
    if (!get_kb_item("Host/RedHat/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING);
    
    
    cpu = get_kb_item("Host/cpu");
    if (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);
    if ("x86_64" >!< cpu && cpu !~ "^i[3-6]86$") audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "Fedora", cpu);
    
    
    flag = 0;
    if (rpm_check(release:"FC25", reference:"tomcat-8.0.44-1.fc25", epoch:"1")) flag++;
    
    
    if (flag)
    {
      security_report_v4(
        port       : 0,
        severity   : SECURITY_WARNING,
        extra      : rpm_report_get()
      );
      exit(0);
    }
    else
    {
      tested = pkg_tests_get();
      if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);
      else audit(AUDIT_PACKAGE_NOT_INSTALLED, "1:tomcat");
    }
    
  • NASL familyAmazon Linux Local Security Checks
    NASL idALA_ALAS-2017-862.NASL
    descriptionSecurity constrained bypass in error page mechanism : A vulnerability was discovered in the error page mechanism in Tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id102177
    published2017-08-04
    reporterThis script is Copyright (C) 2017-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/102177
    titleAmazon Linux AMI : tomcat8 (ALAS-2017-862)
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    # The descriptive text and package checks in this plugin were
    # extracted from Amazon Linux AMI Security Advisory ALAS-2017-862.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(102177);
      script_version("3.8");
      script_cvs_date("Date: 2018/04/18 15:09:36");
    
      script_cve_id("CVE-2017-5664", "CVE-2017-7674");
      script_xref(name:"ALAS", value:"2017-862");
    
      script_name(english:"Amazon Linux AMI : tomcat8 (ALAS-2017-862)");
      script_summary(english:"Checks rpm output for the updated packages");
    
      script_set_attribute(
        attribute:"synopsis", 
        value:"The remote Amazon Linux AMI host is missing a security update."
      );
      script_set_attribute(
        attribute:"description", 
        value:
    "Security constrained bypass in error page mechanism :
    
    A vulnerability was discovered in the error page mechanism in Tomcat's
    DefaultServlet implementation. A crafted HTTP request could cause
    undesired side effects, possibly including the removal or replacement
    of the custom error page. (CVE-2017-5664)
    
    The CORS Filter in Apache Tomcat 9.0.0.M1 to 9.0.0.M21, 8.5.0 to
    8.5.15, 8.0.0.RC1 to 8.0.44 and 7.0.41 to 7.0.78 did not add an HTTP
    Vary header indicating that the response varies depending on Origin.
    This permitted client and server side cache poisoning in some
    circumstances. (CVE-2017-7674)"
      );
      script_set_attribute(
        attribute:"see_also",
        value:"https://alas.aws.amazon.com/ALAS-2017-862.html"
      );
      script_set_attribute(
        attribute:"solution", 
        value:"Run 'yum update tomcat8' to update your system."
      );
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:P/A:N");
      script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:tomcat8");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:tomcat8-admin-webapps");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:tomcat8-docs-webapp");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:tomcat8-el-3.0-api");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:tomcat8-javadoc");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:tomcat8-jsp-2.3-api");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:tomcat8-lib");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:tomcat8-log4j");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:tomcat8-servlet-3.1-api");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:tomcat8-webapps");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:amazon:linux");
    
      script_set_attribute(attribute:"patch_publication_date", value:"2017/08/03");
      script_set_attribute(attribute:"plugin_publication_date", value:"2017/08/04");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_copyright(english:"This script is Copyright (C) 2017-2018 Tenable Network Security, Inc.");
      script_family(english:"Amazon Linux Local Security Checks");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/AmazonLinux/release", "Host/AmazonLinux/rpm-list");
    
      exit(0);
    }
    
    
    include("audit.inc");
    include("global_settings.inc");
    include("rpm.inc");
    
    
    if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
    
    release = get_kb_item("Host/AmazonLinux/release");
    if (isnull(release) || !strlen(release)) audit(AUDIT_OS_NOT, "Amazon Linux");
    os_ver = pregmatch(pattern: "^AL(A|\d)", string:release);
    if (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, "Amazon Linux");
    os_ver = os_ver[1];
    if (os_ver != "A")
    {
      if (os_ver == 'A') os_ver = 'AMI';
      audit(AUDIT_OS_NOT, "Amazon Linux AMI", "Amazon Linux " + os_ver);
    }
    
    if (!get_kb_item("Host/AmazonLinux/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING);
    
    
    flag = 0;
    if (rpm_check(release:"ALA", reference:"tomcat8-8.0.45-1.72.amzn1")) flag++;
    if (rpm_check(release:"ALA", reference:"tomcat8-admin-webapps-8.0.45-1.72.amzn1")) flag++;
    if (rpm_check(release:"ALA", reference:"tomcat8-docs-webapp-8.0.45-1.72.amzn1")) flag++;
    if (rpm_check(release:"ALA", reference:"tomcat8-el-3.0-api-8.0.45-1.72.amzn1")) flag++;
    if (rpm_check(release:"ALA", reference:"tomcat8-javadoc-8.0.45-1.72.amzn1")) flag++;
    if (rpm_check(release:"ALA", reference:"tomcat8-jsp-2.3-api-8.0.45-1.72.amzn1")) flag++;
    if (rpm_check(release:"ALA", reference:"tomcat8-lib-8.0.45-1.72.amzn1")) flag++;
    if (rpm_check(release:"ALA", reference:"tomcat8-log4j-8.0.45-1.72.amzn1")) flag++;
    if (rpm_check(release:"ALA", reference:"tomcat8-servlet-3.1-api-8.0.45-1.72.amzn1")) flag++;
    if (rpm_check(release:"ALA", reference:"tomcat8-webapps-8.0.45-1.72.amzn1")) flag++;
    
    if (flag)
    {
      if (report_verbosity > 0) security_warning(port:0, extra:rpm_report_get());
      else security_warning(0);
      exit(0);
    }
    else
    {
      tested = pkg_tests_get();
      if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);
      else audit(AUDIT_PACKAGE_NOT_INSTALLED, "tomcat8 / tomcat8-admin-webapps / tomcat8-docs-webapp / etc");
    }
    
  • NASL familyHuawei Local Security Checks
    NASL idEULEROS_SA-2017-1191.NASL
    descriptionAccording to the versions of the tomcat packages installed, the EulerOS installation on the remote host is affected by the following vulnerabilities : - The Realm implementations did not process the supplied password if the supplied user name did not exist. This made a timing attack possible to determine valid user names. Note that the default configuration includes the LockOutRealm which makes exploitation of this vulnerability harder. (CVE-2016-0762) - It was discovered that a malicious web application could bypass a configured SecurityManager via a Tomcat utility method that was accessible to web applications. (CVE-2016-5018) - It was discovered that when a SecurityManager was configured, Tomcat
    last seen2020-05-06
    modified2017-09-08
    plugin id103029
    published2017-09-08
    reporterThis script is Copyright (C) 2017-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/103029
    titleEulerOS 2.0 SP1 : tomcat (EulerOS-SA-2017-1191)
  • NASL familyWeb Servers
    NASL idTOMCAT_6_0_24.NASL
    descriptionThe version of Apache Tomcat installed on the remote host is 6.0.x prior to 6.0.24. It is, therefore, affected by multiple vulnerabilities : - An unspecified flaw exists in the handling of pipelined requests when
    last seen2020-03-18
    modified2017-11-02
    plugin id104358
    published2017-11-02
    reporterThis script is Copyright (C) 2017-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/104358
    titleApache Tomcat 6.0.x < 6.0.24 Multiple Vulnerabilities
  • NASL familyJunos Local Security Checks
    NASL idJUNIPER_SPACE_JSA_10838.NASL
    descriptionAccording to its self-reported version number, the remote Junos Space version is prior to 17.2R1. It is, therefore, affected by multiple vulnerabilities.
    last seen2020-06-01
    modified2020-06-02
    plugin id108520
    published2018-03-21
    reporterThis script is Copyright (C) 2018-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/108520
    titleJuniper Junos Space < 17.2R1 Multiple Vulnerabilities (JSA10838)
  • NASL familyScientific Linux Local Security Checks
    NASL idSL_20170727_TOMCAT_ON_SL7_X.NASL
    descriptionSecurity Fix(es) : - A vulnerability was discovered in the error page mechanism in Tomcat
    last seen2020-03-18
    modified2017-07-28
    plugin id102032
    published2017-07-28
    reporterThis script is Copyright (C) 2017-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/102032
    titleScientific Linux Security Update : tomcat on SL7.x (noarch) (20170727)
  • NASL familyDebian Local Security Checks
    NASL idDEBIAN_DSA-3891.NASL
    descriptionAniket Nandkishor Kulkarni discovered that in tomcat8, a servlet and JSP engine, static error pages used the original request
    last seen2020-06-01
    modified2020-06-02
    plugin id101008
    published2017-06-23
    reporterThis script is Copyright (C) 2017-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/101008
    titleDebian DSA-3891-1 : tomcat8 - security update
  • NASL familyCentOS Local Security Checks
    NASL idCENTOS_RHSA-2017-1809.NASL
    descriptionAn update for tomcat is now available for Red Hat Enterprise Linux 7. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. Apache Tomcat is a servlet container for the Java Servlet and JavaServer Pages (JSP) technologies. Security Fix(es) : * A vulnerability was discovered in the error page mechanism in Tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id102020
    published2017-07-28
    reporterThis script is Copyright (C) 2017-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/102020
    titleCentOS 7 : tomcat (CESA-2017:1809)
  • NASL familyVirtuozzo Local Security Checks
    NASL idVIRTUOZZO_VZLSA-2017-3080.NASL
    descriptionAn update for tomcat6 is now available for Red Hat Enterprise Linux 6. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. Apache Tomcat is a servlet container for the Java Servlet and JavaServer Pages (JSP) technologies. Security Fix(es) : * A vulnerability was discovered in Tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id119237
    published2018-11-27
    reporterThis script is Copyright (C) 2018-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/119237
    titleVirtuozzo 6 : tomcat6 / tomcat6-admin-webapps / etc (VZLSA-2017-3080)
  • NASL familyOracle Linux Local Security Checks
    NASL idORACLELINUX_ELSA-2017-3080.NASL
    descriptionFrom Red Hat Security Advisory 2017:3080 : An update for tomcat6 is now available for Red Hat Enterprise Linux 6. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. Apache Tomcat is a servlet container for the Java Servlet and JavaServer Pages (JSP) technologies. Security Fix(es) : * A vulnerability was discovered in Tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id104247
    published2017-10-30
    reporterThis script is Copyright (C) 2017-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/104247
    titleOracle Linux 6 : tomcat6 (ELSA-2017-3080)
  • NASL familyRed Hat Local Security Checks
    NASL idREDHAT-RHSA-2017-2635.NASL
    descriptionAn update is now available for Red Hat JBoss Enterprise Application Platform 6.4 for Red Hat Enterprise Linux 6. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. Red Hat JBoss Enterprise Application Platform is a platform for Java applications based on the JBoss Application Server. This release of Red Hat JBoss Enterprise Application Platform 6.4.17 serves as a replacement for Red Hat JBoss Enterprise Application Platform 6.4.16, and includes bug fixes and enhancements, which are documented in the Release Notes document linked to in the References. Security Fix(es) : * It was found that when using remote logging with log4j socket server the log4j server would deserialize any log event received via TCP or UDP. An attacker could use this flaw to send a specially crafted log event that, during deserialization, would execute arbitrary code in the context of the logger application. (CVE-2017-5645) * A vulnerability was discovered in the error page mechanism in Tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id103041
    published2017-09-08
    reporterThis script is Copyright (C) 2017-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/103041
    titleRHEL 6 : JBoss EAP (RHSA-2017:2635)
  • NASL familyRed Hat Local Security Checks
    NASL idREDHAT-RHSA-2017-1809.NASL
    descriptionAn update for tomcat is now available for Red Hat Enterprise Linux 7. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. Apache Tomcat is a servlet container for the Java Servlet and JavaServer Pages (JSP) technologies. Security Fix(es) : * A vulnerability was discovered in the error page mechanism in Tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id102012
    published2017-07-27
    reporterThis script is Copyright (C) 2017-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/102012
    titleRHEL 7 : tomcat (RHSA-2017:1809)
  • NASL familyOracle Linux Local Security Checks
    NASL idORACLELINUX_ELSA-2017-1809.NASL
    descriptionFrom Red Hat Security Advisory 2017:1809 : An update for tomcat is now available for Red Hat Enterprise Linux 7. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. Apache Tomcat is a servlet container for the Java Servlet and JavaServer Pages (JSP) technologies. Security Fix(es) : * A vulnerability was discovered in the error page mechanism in Tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id102031
    published2017-07-28
    reporterThis script is Copyright (C) 2017-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/102031
    titleOracle Linux 7 : tomcat (ELSA-2017-1809)
  • NASL familyRed Hat Local Security Checks
    NASL idREDHAT-RHSA-2017-1801.NASL
    descriptionAn update is now available for Red Hat JBoss Web Server 3.1 for RHEL 6 and Red Hat JBoss Web Server 3.1 for RHEL 7. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. Red Hat JBoss Web Server is a fully integrated and certified set of components for hosting Java web applications. It is comprised of the Apache HTTP Server, the Apache Tomcat Servlet container, Apache Tomcat Connector (mod_jk), JBoss HTTP Connector (mod_cluster), Hibernate, and the Tomcat Native library. This release of Red Hat JBoss Web Server 3.1 Service Pack 1 serves as a replacement for Red Hat JBoss Web Server 3.1, and includes bug fixes, which are documented in the Release Notes document linked to in the References. Security Fix(es) : * It was found that when using remote logging with log4j socket server the log4j server would deserialize any log event received via TCP or UDP. An attacker could use this flaw to send a specially crafted log event that, during deserialization, would execute arbitrary code in the context of the logger application. (CVE-2017-5645) * A vulnerability was discovered in tomcat
    last seen2020-05-09
    modified2018-08-29
    plugin id112177
    published2018-08-29
    reporterThis script is Copyright (C) 2018-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/112177
    titleRHEL 6 / 7 : Red Hat JBoss Web Server 3.1.0 Service Pack 1 (RHSA-2017:1801)
  • NASL familyScientific Linux Local Security Checks
    NASL idSL_20171030_TOMCAT6_ON_SL6_X.NASL
    descriptionSecurity Fix(es) : - A vulnerability was discovered in Tomcat
    last seen2020-03-18
    modified2017-10-31
    plugin id104268
    published2017-10-31
    reporterThis script is Copyright (C) 2017-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/104268
    titleScientific Linux Security Update : tomcat6 on SL6.x (noarch) (20171030)
  • NASL familyCentOS Local Security Checks
    NASL idCENTOS_RHSA-2017-3080.NASL
    descriptionAn update for tomcat6 is now available for Red Hat Enterprise Linux 6. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. Apache Tomcat is a servlet container for the Java Servlet and JavaServer Pages (JSP) technologies. Security Fix(es) : * A vulnerability was discovered in Tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id104256
    published2017-10-31
    reporterThis script is Copyright (C) 2017-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/104256
    titleCentOS 6 : tomcat6 (CESA-2017:3080)
  • NASL familySuSE Local Security Checks
    NASL idOPENSUSE-2017-1299.NASL
    descriptionThis update for tomcat fixes the following issues : Security issues fixed : - CVE-2017-5664: A problem in handling error pages was fixed, to avoid potential file overwrites during error page handling. (bsc#1042910). - CVE-2017-7674: A CORS Filter issue could lead to client and server side cache poisoning (bsc#1053352) - CVE-2017-12617: A remote code execution possibility via JSP Upload was fixed (bsc#1059554) Non security bugs fixed : - Fix tomcat-digest classpath error (bsc#977410) - Fix packaged /etc/alternatives symlinks for api libs that caused rpm -V to report link mismatch (bsc#1019016) This update was imported from the SUSE:SLE-12-SP2:Update update project.
    last seen2020-06-05
    modified2017-11-27
    plugin id104765
    published2017-11-27
    reporterThis script is Copyright (C) 2017-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/104765
    titleopenSUSE Security Update : tomcat (openSUSE-2017-1299)
  • NASL familyCGI abuses
    NASL idMYSQL_ENTERPRISE_MONITOR_3_4_3_4225.NASL
    descriptionAccording to its self-reported version, the MySQL Enterprise Monitor application running on the remote host is 3.2.x prior to 3.2.9.2249, 3.3.x prior to 3.3.5.3292, or 3.4.x prior to 3.4.3.4225. It is, therefore, affected by multiple vulnerabilities as noted in the October 2017 Critical Patch Update advisory. Please consult the CVRF details for the applicable CVEs for additional information. Note that Nessus has not tested for these issues but has instead relied only on the application
    last seen2020-06-01
    modified2020-06-02
    plugin id103536
    published2017-09-28
    reporterThis script is Copyright (C) 2017-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/103536
    titleMySQL Enterprise Monitor 3.2.x < 3.2.9.2249 / 3.3.x < 3.3.5.3292 / 3.4.x < 3.4.3.4225 Multiple Vulnerabilities (October 2017 CPU)
  • NASL familyMisc.
    NASL idSYMANTEC_CONTENT_ANALYSIS_SYMSA1419.NASL
    descriptionThe version of Symantec Content Analysis running on the remote host is prior to version 2.3.5.1. It is, therefore, affected by multiple vulnerabilities: - A bug in the handling of the pipelined requests in Apache Tomcat 9.0.0.M1 to 9.0.0.M18, 8.5.0 to 8.5.12, 8.0.0.RC1 to 8.0.42, 7.0.0 to 7.0.76, and 6.0.0 to 6.0.52, when send file was used, results in the pipelined request being lost when send file processing of the previous request completed. This could result in responses appearing to be sent for the wrong request. (CVE-2017-5647) - The error page mechanism of the Java Servlet Specification requires that, when an error occurs and an error page is configured for the error that occurred, the original request and response are forwarded to the error page. This means that the request is presented to the error page with the original HTTP method. If the error page is a static file, expected behaviour is to serve content of the file as if processing a GET request, regardless of the actual HTTP method. (CVE-2017-5664)
    last seen2020-06-01
    modified2020-06-02
    plugin id125633
    published2019-05-31
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/125633
    titleSymantec Content Analysis < 2.3.5.1 affected by Multiple Vulnerabilities (SYMSA1419)
  • NASL familyNewStart CGSL Local Security Checks
    NASL idNEWSTART_CGSL_NS-SA-2019-0117_TOMCAT6.NASL
    descriptionThe remote NewStart CGSL host, running version MAIN 4.05, has tomcat6 packages installed that are affected by multiple vulnerabilities: - It was discovered that the code that parsed the HTTP request line permitted invalid characters. This could be exploited, in conjunction with a proxy that also permitted the invalid characters but with a different interpretation, to inject data into the HTTP response. By manipulating the HTTP response the attacker could poison a web-cache, perform an XSS attack, or obtain sensitive information from requests other then their own. (CVE-2016-6816) - A vulnerability was discovered in Tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id127359
    published2019-08-12
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/127359
    titleNewStart CGSL MAIN 4.05 : tomcat6 Multiple Vulnerabilities (NS-SA-2019-0117)
  • NASL familyDebian Local Security Checks
    NASL idDEBIAN_DLA-996.NASL
    descriptionThe error page mechanism of the Java Servlet Specification requires that, when an error occurs and an error page is configured for the error that occurred, the original request and response are forwarded to the error page. This means that the request is presented to the error page with the original HTTP method. If the error page is a static file, expected behaviour is to serve content of the file as if processing a GET request, regardless of the actual HTTP method. The Default Servlet in Apache Tomcat did not do this. Depending on the original request this could lead to unexpected and undesirable results for static error pages including, if the DefaultServlet is configured to permit writes, the replacement or removal of the custom error page. For Debian 7
    last seen2020-03-17
    modified2017-06-21
    plugin id100941
    published2017-06-21
    reporterThis script is Copyright (C) 2017-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/100941
    titleDebian DLA-996-1 : tomcat7 security update
  • NASL familyRed Hat Local Security Checks
    NASL idREDHAT-RHSA-2017-2637.NASL
    descriptionAn update is now available for Red Hat JBoss Enterprise Application Platform 6.4 for Red Hat Enterprise Linux 5. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. Red Hat JBoss Enterprise Application Platform is a platform for Java applications based on the JBoss Application Server. This release of Red Hat JBoss Enterprise Application Platform 6.4.17 serves as a replacement for Red Hat JBoss Enterprise Application Platform 6.4.16, and includes bug fixes and enhancements, which are documented in the Release Notes document linked to in the References. Security Fix(es) : * It was found that when using remote logging with log4j socket server the log4j server would deserialize any log event received via TCP or UDP. An attacker could use this flaw to send a specially crafted log event that, during deserialization, would execute arbitrary code in the context of the logger application. (CVE-2017-5645) * A vulnerability was discovered in the error page mechanism in Tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id103043
    published2017-09-08
    reporterThis script is Copyright (C) 2017-2019 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/103043
    titleRHEL 5 : JBoss EAP (RHSA-2017:2637)
  • NASL familyAmazon Linux Local Security Checks
    NASL idALA_ALAS-2017-853.NASL
    descriptionSecurity constrained bypass in error page mechanism : A vulnerability was discovered in the error page mechanism in Tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id101270
    published2017-07-07
    reporterThis script is Copyright (C) 2017-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/101270
    titleAmazon Linux AMI : tomcat7 (ALAS-2017-853)
  • NASL familyRed Hat Local Security Checks
    NASL idREDHAT-RHSA-2017-3080.NASL
    descriptionAn update for tomcat6 is now available for Red Hat Enterprise Linux 6. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. Apache Tomcat is a servlet container for the Java Servlet and JavaServer Pages (JSP) technologies. Security Fix(es) : * A vulnerability was discovered in Tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id104250
    published2017-10-30
    reporterThis script is Copyright (C) 2017-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/104250
    titleRHEL 6 : tomcat6 (RHSA-2017:3080)
  • NASL familyWeb Servers
    NASL idTOMCAT_8_5_15.NASL
    descriptionAccording to its self-reported version number, the Apache Tomcat service running on the remote host is 7.0.x prior to 7.0.78, 8.0.x prior to 8.0.44, 8.5.x prior to 8.5.15, or 9.0.x prior to 9.0.0.M21. It is, therefore, affected by an implementation flaw in the error page reporting mechanism in which it does not conform to the Java Servlet Specification that requires static error pages to be processed as an HTTP GET request nothwithstanding the HTTP request method that was originally used when the error occurred. Depending on the original request and the configuration of the Default Servlet, an unauthenticated, remote attacker can exploit this issue to replace or remove custom error pages. Note that Nessus has not attempted to exploit this issue but has instead relied only on the application
    last seen2020-03-18
    modified2017-06-08
    plugin id100681
    published2017-06-08
    reporterThis script is Copyright (C) 2017-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/100681
    titleApache Tomcat 7.0.x < 7.0.78 / 8.0.x < 8.0.44 / 8.5.x < 8.5.15 / 9.0.x < 9.0.0.M21 Remote Error Page Manipulation
  • NASL familyRed Hat Local Security Checks
    NASL idREDHAT-RHSA-2017-2493.NASL
    descriptionAn update is now available for Red Hat JBoss Enterprise Web Server 2.1.2 for Red Hat Enterprise Linux 6 and Red Hat JBoss Enterprise Web Server 2.1.2 for Red Hat Enterprise Linux 7. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. OpenSSL is a toolkit that implements the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols, as well as a full-strength general-purpose cryptography library. Apache Tomcat is a servlet container for the Java Servlet and JavaServer Pages (JSP) technologies. This release provides an update to OpenSSL and Tomcat 6/7 for Red Hat JBoss Web Server 2.1.2. The updates are documented in the Release Notes document linked to in the References. Users of Red Hat JBoss Web Server 2.1.2 should upgrade to these updated packages, which resolve several security issues. Security Fix(es) : * A memory leak flaw was found in the way OpenSSL handled TLS status request extension data during session renegotiation. A remote attacker could cause a TLS server using OpenSSL to consume an excessive amount of memory and, possibly, exit unexpectedly after exhausting all available memory, if it enabled OCSP stapling support. (CVE-2016-6304) * A vulnerability was discovered in tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id102692
    published2017-08-23
    reporterThis script is Copyright (C) 2017-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/102692
    titleRHEL 6 / 7 : JBoss Web Server (RHSA-2017:2493)
  • NASL familyHuawei Local Security Checks
    NASL idEULEROS_SA-2017-1192.NASL
    descriptionAccording to the versions of the tomcat packages installed, the EulerOS installation on the remote host is affected by the following vulnerabilities : - The Realm implementations did not process the supplied password if the supplied user name did not exist. This made a timing attack possible to determine valid user names. Note that the default configuration includes the LockOutRealm which makes exploitation of this vulnerability harder. (CVE-2016-0762) - It was discovered that a malicious web application could bypass a configured SecurityManager via a Tomcat utility method that was accessible to web applications. (CVE-2016-5018) - It was discovered that when a SecurityManager was configured, Tomcat
    last seen2020-05-06
    modified2017-09-08
    plugin id103030
    published2017-09-08
    reporterThis script is Copyright (C) 2017-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/103030
    titleEulerOS 2.0 SP2 : tomcat (EulerOS-SA-2017-1192)
  • NASL familyAmazon Linux Local Security Checks
    NASL idALA_ALAS-2017-854.NASL
    descriptionSecurity constrained bypass in error page mechanism : A vulnerability was discovered in the error page mechanism in Tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id101271
    published2017-07-07
    reporterThis script is Copyright (C) 2017-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/101271
    titleAmazon Linux AMI : tomcat8 (ALAS-2017-854)
  • NASL familyRed Hat Local Security Checks
    NASL idREDHAT-RHSA-2017-2638.NASL
    descriptionAn update for jboss-ec2-eap is now available for Red Hat JBoss Enterprise Application Platform 6.4 for Red Hat Enterprise Linux 6. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. The jboss-ec2-eap packages provide scripts for Red Hat JBoss Enterprise Application Platform running on the Amazon Web Services (AWS) Elastic Compute Cloud (EC2). With this update, the jboss-ec2-eap package has been updated to ensure compatibility with Red Hat JBoss Enterprise Application Platform 6.4.17. Security Fix(es) : * It was found that when using remote logging with log4j socket server the log4j server would deserialize any log event received via TCP or UDP. An attacker could use this flaw to send a specially crafted log event that, during deserialization, would execute arbitrary code in the context of the logger application. (CVE-2017-5645) * A vulnerability was discovered in the error page mechanism in Tomcat
    last seen2020-05-09
    modified2017-09-08
    plugin id103044
    published2017-09-08
    reporterThis script is Copyright (C) 2017-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/103044
    titleRHEL 6 : jboss-ec2-eap (RHSA-2017:2638)
  • NASL familyRed Hat Local Security Checks
    NASL idREDHAT-RHSA-2017-2636.NASL
    descriptionAn update is now available for Red Hat JBoss Enterprise Application Platform 6.4 for Red Hat Enterprise Linux 7. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. Red Hat JBoss Enterprise Application Platform is a platform for Java applications based on the JBoss Application Server. This release of Red Hat JBoss Enterprise Application Platform 6.4.17 serves as a replacement for Red Hat JBoss Enterprise Application Platform 6.4.16, and includes bug fixes and enhancements, which are documented in the Release Notes document linked to in the References. Security Fix(es) : * It was found that when using remote logging with log4j socket server the log4j server would deserialize any log event received via TCP or UDP. An attacker could use this flaw to send a specially crafted log event that, during deserialization, would execute arbitrary code in the context of the logger application. (CVE-2017-5645) * A vulnerability was discovered in the error page mechanism in Tomcat
    last seen2020-06-01
    modified2020-06-02
    plugin id103042
    published2017-09-08
    reporterThis script is Copyright (C) 2017-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/103042
    titleRHEL 7 : JBoss EAP (RHSA-2017:2636)
  • NASL familyDebian Local Security Checks
    NASL idDEBIAN_DSA-3892.NASL
    descriptionAniket Nandkishor Kulkarni discovered that in tomcat7, a servlet and JSP engine, static error pages used the original request
    last seen2020-06-01
    modified2020-06-02
    plugin id101009
    published2017-06-23
    reporterThis script is Copyright (C) 2017-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/101009
    titleDebian DSA-3892-1 : tomcat7 - security update
  • NASL familyAmazon Linux Local Security Checks
    NASL idALA_ALAS-2017-873.NASL
    descriptionSecurity constrained bypass in error page mechanism : While investigating bug 60718, it was noticed that some calls to application listeners in Apache Tomcat 9.0.0.M1 to 9.0.0.M17, 8.5.0 to 8.5.11, 8.0.0.RC1 to 8.0.41, and 7.0.0 to 7.0.75 did not use the appropriate facade object. When running an untrusted application under a SecurityManager, it was therefore possible for that untrusted application to retain a reference to the request or response object and thereby access and/or modify information associated with another web application.(CVE-2017-5664 ) Calls to application listeners did not use the appropriate facade object : A vulnerability was discovered in tomcat. When running an untrusted application under a SecurityManager it was possible, under some circumstances, for that application to retain references to the request or response objects and thereby access and/or modify information associated with another web application. (CVE-2017-5648) The CORS Filter in Apache Tomcat 9.0.0.M1 to 9.0.0.M21, 8.5.0 to 8.5.15, 8.0.0.RC1 to 8.0.44 and 7.0.41 to 7.0.78 did not add an HTTP Vary header indicating that the response varies depending on Origin. This permitted client and server side cache poisoning in some circumstances.(CVE-2017-7674)
    last seen2020-06-01
    modified2020-06-02
    plugin id102547
    published2017-08-18
    reporterThis script is Copyright (C) 2017-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/102547
    titleAmazon Linux AMI : tomcat7 (ALAS-2017-873)
  • NASL familyFedora Local Security Checks
    NASL idFEDORA_2017-E4638A345C.NASL
    descriptionThis update includes a rebase from 8.0.43 up to 8.0.44 which resolves a single CVE along with various other bugs/features : - rhbz#1459160 CVE-2017-5664 tomcat: Security constrained bypass in error page mechanism Note that Tenable Network Security has extracted the preceding description block directly from the Fedora update system website. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-06-05
    modified2017-07-03
    plugin id101185
    published2017-07-03
    reporterThis script is Copyright (C) 2017-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/101185
    titleFedora 24 : 1:tomcat (2017-e4638a345c)
  • NASL familyUbuntu Local Security Checks
    NASL idUBUNTU_USN-3519-1.NASL
    descriptionIt was discovered that Tomcat incorrectly handled certain pipelined requests when sendfile was used. A remote attacker could use this issue to obtain wrong responses possibly containing sensitive information. (CVE-2017-5647) It was discovered that Tomcat incorrectly used the appropriate facade object. A malicious application could possibly use this to bypass Security Manager restrictions. (CVE-2017-5648) It was discovered that Tomcat incorrectly handled error pages. A remote attacker could possibly use this issue to replace or remove the custom error page. (CVE-2017-5664) It was discovered that Tomcat incorrectly handled the CORS filter. A remote attacker could possibly use this issue to perform cache poisoning. (CVE-2017-7674). Note that Tenable Network Security has extracted the preceding description block directly from the Ubuntu security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-06-01
    modified2020-06-02
    plugin id105687
    published2018-01-09
    reporterUbuntu Security Notice (C) 2018-2019 Canonical, Inc. / NASL script (C) 2018-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/105687
    titleUbuntu 14.04 LTS / 16.04 LTS / 17.04 : tomcat7, tomcat8 vulnerabilities (USN-3519-1)

Redhat

advisories
  • bugzilla
    id1459158
    titleCVE-2017-5664 tomcat: Security constrained bypass in error page mechanism
    oval
    OR
    • commentRed Hat Enterprise Linux must be installed
      ovaloval:com.redhat.rhba:tst:20070304026
    • AND
      • commentRed Hat Enterprise Linux 7 is installed
        ovaloval:com.redhat.rhba:tst:20150364027
      • OR
        • AND
          • commenttomcat-jsp-2.2-api is earlier than 0:7.0.69-12.el7_3
            ovaloval:com.redhat.rhsa:tst:20171809001
          • commenttomcat-jsp-2.2-api is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20140686004
        • AND
          • commenttomcat-jsvc is earlier than 0:7.0.69-12.el7_3
            ovaloval:com.redhat.rhsa:tst:20171809003
          • commenttomcat-jsvc is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20140686020
        • AND
          • commenttomcat-javadoc is earlier than 0:7.0.69-12.el7_3
            ovaloval:com.redhat.rhsa:tst:20171809005
          • commenttomcat-javadoc is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20140686018
        • AND
          • commenttomcat-docs-webapp is earlier than 0:7.0.69-12.el7_3
            ovaloval:com.redhat.rhsa:tst:20171809007
          • commenttomcat-docs-webapp is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20140686016
        • AND
          • commenttomcat-el-2.2-api is earlier than 0:7.0.69-12.el7_3
            ovaloval:com.redhat.rhsa:tst:20171809009
          • commenttomcat-el-2.2-api is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20140686014
        • AND
          • commenttomcat-webapps is earlier than 0:7.0.69-12.el7_3
            ovaloval:com.redhat.rhsa:tst:20171809011
          • commenttomcat-webapps is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20140686010
        • AND
          • commenttomcat-lib is earlier than 0:7.0.69-12.el7_3
            ovaloval:com.redhat.rhsa:tst:20171809013
          • commenttomcat-lib is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20140686012
        • AND
          • commenttomcat-admin-webapps is earlier than 0:7.0.69-12.el7_3
            ovaloval:com.redhat.rhsa:tst:20171809015
          • commenttomcat-admin-webapps is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20140686002
        • AND
          • commenttomcat is earlier than 0:7.0.69-12.el7_3
            ovaloval:com.redhat.rhsa:tst:20171809017
          • commenttomcat is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20140686006
        • AND
          • commenttomcat-servlet-3.0-api is earlier than 0:7.0.69-12.el7_3
            ovaloval:com.redhat.rhsa:tst:20171809019
          • commenttomcat-servlet-3.0-api is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20140686008
    rhsa
    idRHSA-2017:1809
    released2017-07-27
    severityImportant
    titleRHSA-2017:1809: tomcat security update (Important)
  • bugzilla
    id1494283
    titleCVE-2017-12617 tomcat: Remote Code Execution bypass for CVE-2017-12615
    oval
    OR
    • commentRed Hat Enterprise Linux must be installed
      ovaloval:com.redhat.rhba:tst:20070304026
    • AND
      • commentRed Hat Enterprise Linux 6 is installed
        ovaloval:com.redhat.rhba:tst:20111656003
      • OR
        • AND
          • commenttomcat6-javadoc is earlier than 0:6.0.24-111.el6_9
            ovaloval:com.redhat.rhsa:tst:20173080001
          • commenttomcat6-javadoc is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20110335012
        • AND
          • commenttomcat6-webapps is earlier than 0:6.0.24-111.el6_9
            ovaloval:com.redhat.rhsa:tst:20173080003
          • commenttomcat6-webapps is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20110335020
        • AND
          • commenttomcat6-docs-webapp is earlier than 0:6.0.24-111.el6_9
            ovaloval:com.redhat.rhsa:tst:20173080005
          • commenttomcat6-docs-webapp is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20110335016
        • AND
          • commenttomcat6-admin-webapps is earlier than 0:6.0.24-111.el6_9
            ovaloval:com.redhat.rhsa:tst:20173080007
          • commenttomcat6-admin-webapps is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20110335004
        • AND
          • commenttomcat6-servlet-2.5-api is earlier than 0:6.0.24-111.el6_9
            ovaloval:com.redhat.rhsa:tst:20173080009
          • commenttomcat6-servlet-2.5-api is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20110335002
        • AND
          • commenttomcat6 is earlier than 0:6.0.24-111.el6_9
            ovaloval:com.redhat.rhsa:tst:20173080011
          • commenttomcat6 is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20110335008
        • AND
          • commenttomcat6-el-2.1-api is earlier than 0:6.0.24-111.el6_9
            ovaloval:com.redhat.rhsa:tst:20173080013
          • commenttomcat6-el-2.1-api is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20110335018
        • AND
          • commenttomcat6-jsp-2.1-api is earlier than 0:6.0.24-111.el6_9
            ovaloval:com.redhat.rhsa:tst:20173080015
          • commenttomcat6-jsp-2.1-api is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20110335006
        • AND
          • commenttomcat6-lib is earlier than 0:6.0.24-111.el6_9
            ovaloval:com.redhat.rhsa:tst:20173080017
          • commenttomcat6-lib is signed with Red Hat redhatrelease2 key
            ovaloval:com.redhat.rhsa:tst:20110335010
    rhsa
    idRHSA-2017:3080
    released2017-10-30
    severityImportant
    titleRHSA-2017:3080: tomcat6 security update (Important)
  • rhsa
    idRHSA-2017:1801
  • rhsa
    idRHSA-2017:1802
  • rhsa
    idRHSA-2017:2493
  • rhsa
    idRHSA-2017:2494
  • rhsa
    idRHSA-2017:2633
  • rhsa
    idRHSA-2017:2635
  • rhsa
    idRHSA-2017:2636
  • rhsa
    idRHSA-2017:2637
  • rhsa
    idRHSA-2017:2638
rpms
  • log4j-eap6-0:1.2.16-12.redhat_3.1.ep6.el6
  • log4j-eap6-0:1.2.16-12.redhat_3.1.ep6.el7
  • tomcat-native-0:1.2.8-10.redhat_10.ep7.el6
  • tomcat-native-0:1.2.8-10.redhat_10.ep7.el7
  • tomcat-native-debuginfo-0:1.2.8-10.redhat_10.ep7.el6
  • tomcat-native-debuginfo-0:1.2.8-10.redhat_10.ep7.el7
  • tomcat7-0:7.0.70-22.ep7.el6
  • tomcat7-0:7.0.70-22.ep7.el7
  • tomcat7-admin-webapps-0:7.0.70-22.ep7.el6
  • tomcat7-admin-webapps-0:7.0.70-22.ep7.el7
  • tomcat7-docs-webapp-0:7.0.70-22.ep7.el6
  • tomcat7-docs-webapp-0:7.0.70-22.ep7.el7
  • tomcat7-el-2.2-api-0:7.0.70-22.ep7.el6
  • tomcat7-el-2.2-api-0:7.0.70-22.ep7.el7
  • tomcat7-javadoc-0:7.0.70-22.ep7.el6
  • tomcat7-javadoc-0:7.0.70-22.ep7.el7
  • tomcat7-jsp-2.2-api-0:7.0.70-22.ep7.el6
  • tomcat7-jsp-2.2-api-0:7.0.70-22.ep7.el7
  • tomcat7-jsvc-0:7.0.70-22.ep7.el6
  • tomcat7-jsvc-0:7.0.70-22.ep7.el7
  • tomcat7-lib-0:7.0.70-22.ep7.el6
  • tomcat7-lib-0:7.0.70-22.ep7.el7
  • tomcat7-log4j-0:7.0.70-22.ep7.el6
  • tomcat7-log4j-0:7.0.70-22.ep7.el7
  • tomcat7-selinux-0:7.0.70-22.ep7.el6
  • tomcat7-selinux-0:7.0.70-22.ep7.el7
  • tomcat7-servlet-3.0-api-0:7.0.70-22.ep7.el6
  • tomcat7-servlet-3.0-api-0:7.0.70-22.ep7.el7
  • tomcat7-webapps-0:7.0.70-22.ep7.el6
  • tomcat7-webapps-0:7.0.70-22.ep7.el7
  • tomcat8-0:8.0.36-24.ep7.el6
  • tomcat8-0:8.0.36-24.ep7.el7
  • tomcat8-admin-webapps-0:8.0.36-24.ep7.el6
  • tomcat8-admin-webapps-0:8.0.36-24.ep7.el7
  • tomcat8-docs-webapp-0:8.0.36-24.ep7.el6
  • tomcat8-docs-webapp-0:8.0.36-24.ep7.el7
  • tomcat8-el-2.2-api-0:8.0.36-24.ep7.el6
  • tomcat8-el-2.2-api-0:8.0.36-24.ep7.el7
  • tomcat8-javadoc-0:8.0.36-24.ep7.el6
  • tomcat8-javadoc-0:8.0.36-24.ep7.el7
  • tomcat8-jsp-2.3-api-0:8.0.36-24.ep7.el6
  • tomcat8-jsp-2.3-api-0:8.0.36-24.ep7.el7
  • tomcat8-jsvc-0:8.0.36-24.ep7.el6
  • tomcat8-jsvc-0:8.0.36-24.ep7.el7
  • tomcat8-lib-0:8.0.36-24.ep7.el6
  • tomcat8-lib-0:8.0.36-24.ep7.el7
  • tomcat8-log4j-0:8.0.36-24.ep7.el6
  • tomcat8-log4j-0:8.0.36-24.ep7.el7
  • tomcat8-selinux-0:8.0.36-24.ep7.el6
  • tomcat8-selinux-0:8.0.36-24.ep7.el7
  • tomcat8-servlet-3.1-api-0:8.0.36-24.ep7.el6
  • tomcat8-servlet-3.1-api-0:8.0.36-24.ep7.el7
  • tomcat8-webapps-0:8.0.36-24.ep7.el6
  • tomcat8-webapps-0:8.0.36-24.ep7.el7
  • tomcat-0:7.0.69-12.el7_3
  • tomcat-admin-webapps-0:7.0.69-12.el7_3
  • tomcat-docs-webapp-0:7.0.69-12.el7_3
  • tomcat-el-2.2-api-0:7.0.69-12.el7_3
  • tomcat-javadoc-0:7.0.69-12.el7_3
  • tomcat-jsp-2.2-api-0:7.0.69-12.el7_3
  • tomcat-jsvc-0:7.0.69-12.el7_3
  • tomcat-lib-0:7.0.69-12.el7_3
  • tomcat-servlet-3.0-api-0:7.0.69-12.el7_3
  • tomcat-webapps-0:7.0.69-12.el7_3
  • jbcs-httpd24-openssl-1:1.0.2h-13.jbcs.el6
  • jbcs-httpd24-openssl-1:1.0.2h-13.jbcs.el7
  • jbcs-httpd24-openssl-debuginfo-1:1.0.2h-13.jbcs.el6
  • jbcs-httpd24-openssl-debuginfo-1:1.0.2h-13.jbcs.el7
  • jbcs-httpd24-openssl-devel-1:1.0.2h-13.jbcs.el6
  • jbcs-httpd24-openssl-devel-1:1.0.2h-13.jbcs.el7
  • jbcs-httpd24-openssl-libs-1:1.0.2h-13.jbcs.el6
  • jbcs-httpd24-openssl-libs-1:1.0.2h-13.jbcs.el7
  • jbcs-httpd24-openssl-perl-1:1.0.2h-13.jbcs.el6
  • jbcs-httpd24-openssl-perl-1:1.0.2h-13.jbcs.el7
  • jbcs-httpd24-openssl-static-1:1.0.2h-13.jbcs.el6
  • jbcs-httpd24-openssl-static-1:1.0.2h-13.jbcs.el7
  • tomcat6-0:6.0.41-17_patch_04.ep6.el6
  • tomcat6-0:6.0.41-17_patch_04.ep6.el7
  • tomcat6-admin-webapps-0:6.0.41-17_patch_04.ep6.el6
  • tomcat6-admin-webapps-0:6.0.41-17_patch_04.ep6.el7
  • tomcat6-docs-webapp-0:6.0.41-17_patch_04.ep6.el6
  • tomcat6-docs-webapp-0:6.0.41-17_patch_04.ep6.el7
  • tomcat6-el-2.1-api-0:6.0.41-17_patch_04.ep6.el6
  • tomcat6-el-2.1-api-0:6.0.41-17_patch_04.ep6.el7
  • tomcat6-javadoc-0:6.0.41-17_patch_04.ep6.el6
  • tomcat6-javadoc-0:6.0.41-17_patch_04.ep6.el7
  • tomcat6-jsp-2.1-api-0:6.0.41-17_patch_04.ep6.el6
  • tomcat6-jsp-2.1-api-0:6.0.41-17_patch_04.ep6.el7
  • tomcat6-lib-0:6.0.41-17_patch_04.ep6.el6
  • tomcat6-lib-0:6.0.41-17_patch_04.ep6.el7
  • tomcat6-log4j-0:6.0.41-17_patch_04.ep6.el6
  • tomcat6-log4j-0:6.0.41-17_patch_04.ep6.el7
  • tomcat6-maven-devel-0:6.0.41-17_patch_04.ep6.el6
  • tomcat6-maven-devel-0:6.0.41-17_patch_04.ep6.el7
  • tomcat6-servlet-2.5-api-0:6.0.41-17_patch_04.ep6.el6
  • tomcat6-servlet-2.5-api-0:6.0.41-17_patch_04.ep6.el7
  • tomcat6-webapps-0:6.0.41-17_patch_04.ep6.el6
  • tomcat6-webapps-0:6.0.41-17_patch_04.ep6.el7
  • tomcat7-0:7.0.54-25_patch_05.ep6.el6
  • tomcat7-0:7.0.54-25_patch_05.ep6.el7
  • tomcat7-admin-webapps-0:7.0.54-25_patch_05.ep6.el6
  • tomcat7-admin-webapps-0:7.0.54-25_patch_05.ep6.el7
  • tomcat7-docs-webapp-0:7.0.54-25_patch_05.ep6.el6
  • tomcat7-docs-webapp-0:7.0.54-25_patch_05.ep6.el7
  • tomcat7-el-2.2-api-0:7.0.54-25_patch_05.ep6.el6
  • tomcat7-el-2.2-api-0:7.0.54-25_patch_05.ep6.el7
  • tomcat7-javadoc-0:7.0.54-25_patch_05.ep6.el6
  • tomcat7-javadoc-0:7.0.54-25_patch_05.ep6.el7
  • tomcat7-jsp-2.2-api-0:7.0.54-25_patch_05.ep6.el6
  • tomcat7-jsp-2.2-api-0:7.0.54-25_patch_05.ep6.el7
  • tomcat7-lib-0:7.0.54-25_patch_05.ep6.el6
  • tomcat7-lib-0:7.0.54-25_patch_05.ep6.el7
  • tomcat7-log4j-0:7.0.54-25_patch_05.ep6.el6
  • tomcat7-log4j-0:7.0.54-25_patch_05.ep6.el7
  • tomcat7-maven-devel-0:7.0.54-25_patch_05.ep6.el6
  • tomcat7-maven-devel-0:7.0.54-25_patch_05.ep6.el7
  • tomcat7-servlet-3.0-api-0:7.0.54-25_patch_05.ep6.el6
  • tomcat7-servlet-3.0-api-0:7.0.54-25_patch_05.ep6.el7
  • tomcat7-webapps-0:7.0.54-25_patch_05.ep6.el6
  • tomcat7-webapps-0:7.0.54-25_patch_05.ep6.el7
  • apache-cxf-0:2.7.18-7.SP6_redhat_1.1.ep6.el6
  • codehaus-jackson-0:1.9.9-11.redhat_5.1.ep6.el6
  • codehaus-jackson-core-asl-0:1.9.9-11.redhat_5.1.ep6.el6
  • codehaus-jackson-jaxrs-0:1.9.9-11.redhat_5.1.ep6.el6
  • codehaus-jackson-mapper-asl-0:1.9.9-11.redhat_5.1.ep6.el6
  • codehaus-jackson-xc-0:1.9.9-11.redhat_5.1.ep6.el6
  • hibernate4-core-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el6
  • hibernate4-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el6
  • hibernate4-entitymanager-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el6
  • hibernate4-envers-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el6
  • hibernate4-infinispan-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el6
  • hornetq-0:2.3.25-22.SP20_redhat_1.1.ep6.el6
  • infinispan-0:5.2.22-1.Final_redhat_1.1.ep6.el6
  • infinispan-cachestore-jdbc-0:5.2.22-1.Final_redhat_1.1.ep6.el6
  • infinispan-cachestore-remote-0:5.2.22-1.Final_redhat_1.1.ep6.el6
  • infinispan-client-hotrod-0:5.2.22-1.Final_redhat_1.1.ep6.el6
  • infinispan-core-0:5.2.22-1.Final_redhat_1.1.ep6.el6
  • jboss-as-appclient-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-cli-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-client-all-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-clustering-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-cmp-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-configadmin-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-connector-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-controller-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-controller-client-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-core-security-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-deployment-repository-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-deployment-scanner-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-domain-http-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-domain-management-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-ee-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-ee-deployment-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-ejb3-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-embedded-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-host-controller-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-jacorb-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-jaxr-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-jaxrs-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-jdr-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-jmx-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-jpa-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-jsf-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-jsr77-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-logging-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-mail-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-management-client-content-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-messaging-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-modcluster-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-naming-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-network-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-osgi-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-osgi-configadmin-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-osgi-service-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-picketlink-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-platform-mbean-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-pojo-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-process-controller-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-protocol-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-remoting-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-sar-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-security-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-server-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-system-jmx-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-threads-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-transactions-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-version-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-web-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-webservices-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-weld-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-as-xts-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jboss-marshalling-0:1.4.10-3.SP3_redhat_1.1.ep6.el6
  • jboss-metadata-0:7.2.3-1.Final_redhat_1.1.ep6.el6
  • jboss-metadata-appclient-0:7.2.3-1.Final_redhat_1.1.ep6.el6
  • jboss-metadata-common-0:7.2.3-1.Final_redhat_1.1.ep6.el6
  • jboss-metadata-ear-0:7.2.3-1.Final_redhat_1.1.ep6.el6
  • jboss-metadata-ejb-0:7.2.3-1.Final_redhat_1.1.ep6.el6
  • jboss-metadata-web-0:7.2.3-1.Final_redhat_1.1.ep6.el6
  • jboss-modules-0:1.3.10-1.Final_redhat_1.1.ep6.el6
  • jboss-remoting3-0:3.3.10-1.Final_redhat_1.1.ep6.el6
  • jboss-vfs2-0:3.2.12-1.Final_redhat_1.1.ep6.el6
  • jbossas-appclient-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jbossas-bundles-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jbossas-core-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jbossas-domain-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jbossas-javadocs-0:7.5.17-4.Final_redhat_4.1.ep6.el6
  • jbossas-modules-eap-0:7.5.17-1.Final_redhat_4.1.ep6.el6
  • jbossas-product-eap-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jbossas-standalone-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jbossas-welcome-content-eap-0:7.5.17-2.Final_redhat_4.1.ep6.el6
  • jbossweb-0:7.5.24-1.Final_redhat_1.1.ep6.el6
  • log4j-eap6-0:1.2.16-12.redhat_3.1.ep6.el6
  • log4j-jboss-logmanager-0:1.1.4-1.Final_redhat_1.1.ep6.el6
  • picketlink-bindings-0:2.5.4-17.SP15_redhat_1.1.ep6.el6
  • picketlink-federation-0:2.5.4-17.SP15_redhat_1.1.ep6.el6
  • apache-cxf-0:2.7.18-7.SP6_redhat_1.1.ep6.el7
  • codehaus-jackson-0:1.9.9-11.redhat_5.1.ep6.el7
  • codehaus-jackson-core-asl-0:1.9.9-11.redhat_5.1.ep6.el7
  • codehaus-jackson-jaxrs-0:1.9.9-11.redhat_5.1.ep6.el7
  • codehaus-jackson-mapper-asl-0:1.9.9-11.redhat_5.1.ep6.el7
  • codehaus-jackson-xc-0:1.9.9-11.redhat_5.1.ep6.el7
  • hibernate4-core-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el7
  • hibernate4-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el7
  • hibernate4-entitymanager-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el7
  • hibernate4-envers-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el7
  • hibernate4-infinispan-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el7
  • hornetq-0:2.3.25-22.SP20_redhat_1.1.ep6.el7
  • infinispan-0:5.2.22-1.Final_redhat_1.1.ep6.el7
  • infinispan-cachestore-jdbc-0:5.2.22-1.Final_redhat_1.1.ep6.el7
  • infinispan-cachestore-remote-0:5.2.22-1.Final_redhat_1.1.ep6.el7
  • infinispan-client-hotrod-0:5.2.22-1.Final_redhat_1.1.ep6.el7
  • infinispan-core-0:5.2.22-1.Final_redhat_1.1.ep6.el7
  • jboss-as-appclient-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-cli-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-client-all-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-clustering-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-cmp-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-configadmin-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-connector-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-controller-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-controller-client-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-core-security-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-deployment-repository-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-deployment-scanner-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-domain-http-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-domain-management-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-ee-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-ee-deployment-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-ejb3-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-embedded-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-host-controller-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-jacorb-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-jaxr-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-jaxrs-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-jdr-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-jmx-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-jpa-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-jsf-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-jsr77-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-logging-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-mail-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-management-client-content-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-messaging-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-modcluster-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-naming-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-network-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-osgi-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-osgi-configadmin-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-osgi-service-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-picketlink-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-platform-mbean-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-pojo-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-process-controller-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-protocol-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-remoting-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-sar-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-security-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-server-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-system-jmx-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-threads-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-transactions-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-version-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-web-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-webservices-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-weld-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-as-xts-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jboss-marshalling-0:1.4.10-3.SP3_redhat_1.1.ep6.el7
  • jboss-metadata-0:7.2.3-1.Final_redhat_1.1.ep6.el7
  • jboss-metadata-appclient-0:7.2.3-1.Final_redhat_1.1.ep6.el7
  • jboss-metadata-common-0:7.2.3-1.Final_redhat_1.1.ep6.el7
  • jboss-metadata-ear-0:7.2.3-1.Final_redhat_1.1.ep6.el7
  • jboss-metadata-ejb-0:7.2.3-1.Final_redhat_1.1.ep6.el7
  • jboss-metadata-web-0:7.2.3-1.Final_redhat_1.1.ep6.el7
  • jboss-modules-0:1.3.10-1.Final_redhat_1.1.ep6.el7
  • jboss-remoting3-0:3.3.10-1.Final_redhat_1.1.ep6.el7
  • jboss-vfs2-0:3.2.12-1.Final_redhat_1.1.ep6.el7
  • jbossas-appclient-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jbossas-bundles-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jbossas-core-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jbossas-domain-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jbossas-javadocs-0:7.5.17-4.Final_redhat_4.1.ep6.el7
  • jbossas-modules-eap-0:7.5.17-1.Final_redhat_4.1.ep6.el7
  • jbossas-product-eap-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jbossas-standalone-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jbossas-welcome-content-eap-0:7.5.17-2.Final_redhat_4.1.ep6.el7
  • jbossweb-0:7.5.24-1.Final_redhat_1.1.ep6.el7
  • log4j-eap6-0:1.2.16-12.redhat_3.1.ep6.el7
  • log4j-jboss-logmanager-0:1.1.4-1.Final_redhat_1.1.ep6.el7
  • picketlink-bindings-0:2.5.4-17.SP15_redhat_1.1.ep6.el7
  • picketlink-federation-0:2.5.4-17.SP15_redhat_1.1.ep6.el7
  • apache-cxf-0:2.7.18-7.SP6_redhat_1.1.ep6.el5
  • codehaus-jackson-0:1.9.9-11.redhat_5.1.ep6.el5
  • codehaus-jackson-core-asl-0:1.9.9-11.redhat_5.1.ep6.el5
  • codehaus-jackson-jaxrs-0:1.9.9-11.redhat_5.1.ep6.el5
  • codehaus-jackson-mapper-asl-0:1.9.9-11.redhat_5.1.ep6.el5
  • codehaus-jackson-xc-0:1.9.9-11.redhat_5.1.ep6.el5
  • hibernate4-core-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el5
  • hibernate4-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el5
  • hibernate4-entitymanager-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el5
  • hibernate4-envers-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el5
  • hibernate4-infinispan-eap6-0:4.2.27-1.Final_redhat_1.1.ep6.el5
  • hornetq-0:2.3.25-22.SP20_redhat_1.1.ep6.el5
  • infinispan-0:5.2.22-1.Final_redhat_1.1.ep6.el5
  • infinispan-cachestore-jdbc-0:5.2.22-1.Final_redhat_1.1.ep6.el5
  • infinispan-cachestore-remote-0:5.2.22-1.Final_redhat_1.1.ep6.el5
  • infinispan-client-hotrod-0:5.2.22-1.Final_redhat_1.1.ep6.el5
  • infinispan-core-0:5.2.22-1.Final_redhat_1.1.ep6.el5
  • jboss-as-appclient-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-cli-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-client-all-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-clustering-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-cmp-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-configadmin-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-connector-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-controller-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-controller-client-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-core-security-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-deployment-repository-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-deployment-scanner-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-domain-http-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-domain-management-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-ee-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-ee-deployment-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-ejb3-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-embedded-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-host-controller-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-jacorb-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-jaxr-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-jaxrs-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-jdr-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-jmx-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-jpa-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-jsf-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-jsr77-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-logging-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-mail-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-management-client-content-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-messaging-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-modcluster-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-naming-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-network-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-osgi-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-osgi-configadmin-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-osgi-service-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-picketlink-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-platform-mbean-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-pojo-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-process-controller-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-protocol-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-remoting-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-sar-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-security-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-server-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-system-jmx-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-threads-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-transactions-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-version-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-web-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-webservices-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-weld-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-as-xts-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jboss-marshalling-0:1.4.10-3.SP3_redhat_1.1.ep6.el5
  • jboss-metadata-0:7.2.3-1.Final_redhat_1.1.ep6.el5
  • jboss-metadata-appclient-0:7.2.3-1.Final_redhat_1.1.ep6.el5
  • jboss-metadata-common-0:7.2.3-1.Final_redhat_1.1.ep6.el5
  • jboss-metadata-ear-0:7.2.3-1.Final_redhat_1.1.ep6.el5
  • jboss-metadata-ejb-0:7.2.3-1.Final_redhat_1.1.ep6.el5
  • jboss-metadata-web-0:7.2.3-1.Final_redhat_1.1.ep6.el5
  • jboss-modules-0:1.3.10-1.Final_redhat_1.1.ep6.el5
  • jboss-remoting3-0:3.3.10-1.Final_redhat_1.1.ep6.el5
  • jboss-vfs2-0:3.2.12-1.Final_redhat_1.1.ep6.el5
  • jbossas-appclient-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jbossas-bundles-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jbossas-core-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jbossas-domain-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jbossas-javadocs-0:7.5.17-4.Final_redhat_4.1.ep6.el5
  • jbossas-modules-eap-0:7.5.17-1.Final_redhat_4.1.ep6.el5
  • jbossas-product-eap-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jbossas-standalone-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jbossas-welcome-content-eap-0:7.5.17-2.Final_redhat_4.1.ep6.el5
  • jbossweb-0:7.5.24-1.Final_redhat_1.1.ep6.el5
  • log4j-eap6-0:1.2.16-12.redhat_3.1.ep6.el5
  • log4j-jboss-logmanager-0:1.1.4-1.Final_redhat_1.1.ep6.el5
  • picketlink-bindings-0:2.5.4-17.SP15_redhat_1.1.ep6.el5
  • picketlink-federation-0:2.5.4-17.SP15_redhat_1.1.ep6.el5
  • jboss-ec2-eap-0:7.5.17-1.Final_redhat_4.ep6.el6
  • jboss-ec2-eap-samples-0:7.5.17-1.Final_redhat_4.ep6.el6
  • tomcat6-0:6.0.24-111.el6_9
  • tomcat6-admin-webapps-0:6.0.24-111.el6_9
  • tomcat6-docs-webapp-0:6.0.24-111.el6_9
  • tomcat6-el-2.1-api-0:6.0.24-111.el6_9
  • tomcat6-javadoc-0:6.0.24-111.el6_9
  • tomcat6-jsp-2.1-api-0:6.0.24-111.el6_9
  • tomcat6-lib-0:6.0.24-111.el6_9
  • tomcat6-servlet-2.5-api-0:6.0.24-111.el6_9
  • tomcat6-webapps-0:6.0.24-111.el6_9

Seebug

bulletinFamilyexploit
description### Several recent Tomcat CVE * CVE-2017-5664 Tomcat Security Constraint Bypass * CVE-2017-12615 remote code execution vulnerability * CVE-2017-12616 information disclosure vulnerability ### Common Is tasteless With JspServlet and DefaultServlet about the system. CVE-2017-12615 this remote code execution are everywhere, and it seems like no one is watching CVE-2017-12616 cause JSP source code leakage problems. Here simply write about it. CVE-2017-12616 ### Requirements Target the use of VirtualDirContext to mount the virtual directory. Mount the virtual catalog of the demand should still have some, so should be larger than the opening and PUT the probability to be larger, but is also tasteless. ### A brief analysis To cause Jsp source code disclosure, definitely need to let the DefaultServlet to handle jsp requests. Tomcat use similar JNDI way to manage Web resources, JSP, static file, Class, etc. By default, resources by FileDirContext to manage. And the use of VirtualDirContext mount the virtual catalog, is by the VirtualDirContext to manage. Through the similar to CVE-2017-12615 use way to access the virtual directory of resources, allowing the request by the DefaultServlet processing, the Tomcat from VirtualDirContext management of resources to obtain access to the jsp files through the doLookup method, directly to the content returned, resulting in source code disclosure. Why only the virtual directory for the existence of this vulnerability? Because of the non-virtual directory default by FileDirContext management. FileDirContext in the presence of a named file check method. `` protected File file(String name) { File file = new File(base, name); if (file. the exists() && file. the canRead()) { if (allowLinking) return file; // Check that this file belongs to our root path String canPath = null; try { canPath = file. getCanonicalPath(); } catch (IOException e) { // Ignore } if (canPath == null) return null; // Check to see if going outside of the web application root if (! canPath. startsWith(absoluteBase)) { return null; } // Case sensitivity check - this is now always done String fileAbsPath = file. getAbsolutePath(); if (fileAbsPath. endsWith(".")) fileAbsPath = fileAbsPath + "/"; String absPath = normalize(fileAbsPath); canPath = normalize(canPath); if ((absoluteBase. length() < absPath. length()) && (absoluteBase. length() < canPath. length())) { absPath = absPath. substring(absoluteBase. length() + 1); if (absPath. equals("")) absPath = "/"; canPath = canPath. substring(absoluteBase. length() + 1); if (canPath. equals("")) canPath = "/"; if (! canPath. equals(absPath)) return null; } } else { return null; } return file; } `` This method can not prevent /a. jsp/ this URL, but DefaultServlet then have a check at the end of the/, leading to / Can't be used. And the new version of the fix mode is also the code for the small-scale reconstruction, the above method of checking the disassembly to called the validate method, and re-wrote VirtualDirContext in a lot of method, call the validate access to the file to be checked. ### Use With CVE-2017-12615 similar, to achieve the view Jsp file source code of the effect.
idSSV:96562
last seen2017-11-19
modified2017-09-21
published2017-09-21
reporterRoot
titleTomcat information disclosure Vulnerability(CVE-2017-12616 )analysis

References