Vulnerabilities > CVE-2019-14809

047910
CVSS 9.8 - CRITICAL
Attack vector
NETWORK
Attack complexity
LOW
Privileges required
NONE
Confidentiality impact
HIGH
Integrity impact
HIGH
Availability impact
HIGH
network
low complexity
golang
debian
critical
nessus

Summary

net/url in Go before 1.11.13 and 1.12.x before 1.12.8 mishandles malformed hosts in URLs, leading to an authorization bypass in some applications. This is related to a Host field with a suffix appearing in neither Hostname() nor Port(), and is related to a non-numeric port number. For example, an attacker can compose a crafted javascript:// URL that results in a hostname of google.com.

Nessus

  • NASL familyPhotonOS Local Security Checks
    NASL idPHOTONOS_PHSA-2019-3_0-0028_GO.NASL
    descriptionAn update of the go package has been released.
    last seen2020-06-01
    modified2020-06-02
    plugin id129678
    published2019-10-07
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/129678
    titlePhoton OS 3.0: Go PHSA-2019-3.0-0028
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    # The descriptive text and package checks in this plugin were
    # extracted from VMware Security Advisory PHSA-2019-3.0-0028. The text
    # itself is copyright (C) VMware, Inc.
    
    include("compat.inc");
    
    if (description)
    {
      script_id(129678);
      script_version("1.2");
      script_cvs_date("Date: 2019/12/19");
    
      script_cve_id("CVE-2019-14809");
    
      script_name(english:"Photon OS 3.0: Go PHSA-2019-3.0-0028");
    
      script_set_attribute(attribute:"synopsis", value:
    "The remote PhotonOS host is missing multiple security updates.");
      script_set_attribute(attribute:"description", value:
    "An update of the go package has been released.");
      script_set_attribute(attribute:"see_also", value:"https://github.com/vmware/photon/wiki/Security-Updates-3.0-0028.md");
      script_set_attribute(attribute:"solution", value:
    "Update the affected Linux packages.");
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P");
      script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
      script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H");
      script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
      script_set_attribute(attribute:"cvss_score_source", value:"CVE-2019-14809");
    
      script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
    
      script_set_attribute(attribute:"vuln_publication_date", value:"2019/08/13");
      script_set_attribute(attribute:"patch_publication_date", value:"2019/09/06");
      script_set_attribute(attribute:"plugin_publication_date", value:"2019/10/07");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:vmware:photonos:go");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:vmware:photonos:3.0");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"PhotonOS Local Security Checks");
    
      script_copyright(english:"This script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/PhotonOS/release", "Host/PhotonOS/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/PhotonOS/release");
    if (isnull(release) || release !~ "^VMware Photon") audit(AUDIT_OS_NOT, "PhotonOS");
    if (release !~ "^VMware Photon (?:Linux|OS) 3\.0(\D|$)") audit(AUDIT_OS_NOT, "PhotonOS 3.0");
    
    if (!get_kb_item("Host/PhotonOS/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, "PhotonOS", cpu);
    
    flag = 0;
    
    if (rpm_exists(rpm:"go-1.10", release:"PhotonOS-3.0") && rpm_check(release:"PhotonOS-3.0", reference:"go-1.10.7-3.ph3")) flag++;
    if (rpm_exists(rpm:"go-1.11", release:"PhotonOS-3.0") && rpm_check(release:"PhotonOS-3.0", reference:"go-1.11.13-1.ph3")) flag++;
    if (rpm_exists(rpm:"go-1.9", release:"PhotonOS-3.0") && rpm_check(release:"PhotonOS-3.0", reference:"go-1.9.7-6.ph3")) flag++;
    if (rpm_exists(rpm:"go-debuginfo-1.10", release:"PhotonOS-3.0") && rpm_check(release:"PhotonOS-3.0", reference:"go-debuginfo-1.10.7-3.ph3")) flag++;
    if (rpm_exists(rpm:"go-debuginfo-1.9", release:"PhotonOS-3.0") && rpm_check(release:"PhotonOS-3.0", reference:"go-debuginfo-1.9.7-6.ph3")) flag++;
    
    if (flag)
    {
      security_report_v4(
        port       : 0,
        severity   : SECURITY_HOLE,
        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, "go");
    }
    
  • NASL familyPhotonOS Local Security Checks
    NASL idPHOTONOS_PHSA-209-2_0-0175_GO.NASL
    descriptionAn update of the go package has been released.
    last seen2020-06-01
    modified2020-06-02
    plugin id128724
    published2019-09-12
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/128724
    titlePhoton OS 2.0: Go PHSA-209-2.0-0175
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    # The descriptive text and package checks in this plugin were
    # extracted from VMware Security Advisory PHSA-209-2.0-0175. The text
    # itself is copyright (C) VMware, Inc.
    
    include("compat.inc");
    
    if (description)
    {
      script_id(128724);
      script_version("1.2");
      script_cvs_date("Date: 2019/12/30");
    
      script_cve_id("CVE-2019-14809");
    
      script_name(english:"Photon OS 2.0: Go PHSA-209-2.0-0175");
    
      script_set_attribute(attribute:"synopsis", value:
    "The remote PhotonOS host is missing multiple security updates.");
      script_set_attribute(attribute:"description", value:
    "An update of the go package has been released.");
      script_set_attribute(attribute:"see_also", value:"https://github.com/vmware/photon/wiki/Security-Updates-2-175.md");
      script_set_attribute(attribute:"solution", value:
    "Update the affected Linux packages.");
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P");
      script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
      script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H");
      script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
      script_set_attribute(attribute:"cvss_score_source", value:"CVE-2019-14809");
    
      script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
    
      script_set_attribute(attribute:"vuln_publication_date", value:"2019/08/13");
      script_set_attribute(attribute:"patch_publication_date", value:"2019/09/10");
      script_set_attribute(attribute:"plugin_publication_date", value:"2019/09/12");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:vmware:photonos:go");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:vmware:photonos:2.0");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"PhotonOS Local Security Checks");
    
      script_copyright(english:"This script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/PhotonOS/release", "Host/PhotonOS/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/PhotonOS/release");
    if (isnull(release) || release !~ "^VMware Photon") audit(AUDIT_OS_NOT, "PhotonOS");
    if (release !~ "^VMware Photon (?:Linux|OS) 2\.0(\D|$)") audit(AUDIT_OS_NOT, "PhotonOS 2.0");
    
    if (!get_kb_item("Host/PhotonOS/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, "PhotonOS", cpu);
    
    flag = 0;
    
    if (rpm_exists(rpm:"go-1.10", release:"PhotonOS-2.0") && rpm_check(release:"PhotonOS-2.0", reference:"go-1.10.3-3.ph2")) flag++;
    if (rpm_exists(rpm:"go-1.11", release:"PhotonOS-2.0") && rpm_check(release:"PhotonOS-2.0", reference:"go-1.11.13-1.ph2")) flag++;
    if (rpm_exists(rpm:"go-1.9", release:"PhotonOS-2.0") && rpm_check(release:"PhotonOS-2.0", reference:"go-1.9.4-7.ph2")) flag++;
    if (rpm_exists(rpm:"go-debuginfo-1.10", release:"PhotonOS-2.0") && rpm_check(release:"PhotonOS-2.0", reference:"go-debuginfo-1.10.3-3.ph2")) flag++;
    if (rpm_exists(rpm:"go-debuginfo-1.9", release:"PhotonOS-2.0") && rpm_check(release:"PhotonOS-2.0", reference:"go-debuginfo-1.9.4-7.ph2")) flag++;
    
    if (flag)
    {
      security_report_v4(
        port       : 0,
        severity   : SECURITY_HOLE,
        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, "go");
    }
    
  • NASL familySuSE Local Security Checks
    NASL idOPENSUSE-2019-2130.NASL
    descriptionThis update for go1.12 fixes the following issues : Security issues fixed : - CVE-2019-9512: Fixed HTTP/2 flood using PING frames that results in unbounded memory growth (bsc#1146111). - CVE-2019-9514: Fixed HTTP/2 implementation that is vulnerable to a reset flood, potentially leading to a denial of service (bsc#1146115). - CVE-2019-14809: Fixed malformed hosts in URLs that leads to authorization bypass (bsc#1146123). Bugfixes : - Update to go version 1.12.9 (bsc#1141689). - Adding Web Assembly stuff from misc/wasm (bsc#1139210). This update was imported from the SUSE:SLE-15:Update update project.
    last seen2020-06-01
    modified2020-06-02
    plugin id128863
    published2019-09-16
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/128863
    titleopenSUSE Security Update : go1.12 (openSUSE-2019-2130) (Ping Flood) (Reset Flood)
  • NASL familyAmazon Linux Local Security Checks
    NASL idALA_ALAS-2019-1270.NASL
    descriptionnet/url in Go before 1.11.13 and 1.12.x before 1.12.8 mishandles malformed hosts in URLs, leading to an authorization bypass in some applications. This is related to a Host field with a suffix appearing in neither Hostname() nor Port(), and is related to a non-numeric port number. For example, an attacker can compose a crafted javascript:// URL that results in a hostname of google.com. (CVE-2019-14809) Some HTTP/2 implementations are vulnerable to ping floods, potentially leading to a denial of service. The attacker sends continual pings to an HTTP/2 peer, causing the peer to build an internal queue of responses. Depending on how efficiently this data is queued, this can consume excess CPU, memory, or both.(CVE-2019-9512) Some HTTP/2 implementations are vulnerable to a reset flood, potentially leading to a denial of service. The attacker opens a number of streams and sends an invalid request over each stream that should solicit a stream of RST_STREAM frames from the peer. Depending on how the peer queues the RST_STREAM frames, this can consume excess memory, CPU, or both.(CVE-2019-9514)
    last seen2020-06-01
    modified2020-06-02
    plugin id128293
    published2019-08-28
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/128293
    titleAmazon Linux AMI : golang (ALAS-2019-1270) (Ping Flood) (Reset Flood)
  • NASL familyAmazon Linux Local Security Checks
    NASL idAL2_ALAS-2019-1309.NASL
    descriptionnet/url in Go before 1.11.13 and 1.12.x before 1.12.8 mishandles malformed hosts in URLs, leading to an authorization bypass in some applications. This is related to a Host field with a suffix appearing in neither Hostname() nor Port(), and is related to a non-numeric port number. For example, an attacker can compose a crafted javascript:// URL that results in a hostname of google.com.(CVE-2019-14809)
    last seen2020-06-01
    modified2020-06-02
    plugin id129791
    published2019-10-11
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/129791
    titleAmazon Linux 2 : golang (ALAS-2019-1309)
  • NASL familyHuawei Local Security Checks
    NASL idEULEROS_SA-2019-1916.NASL
    descriptionAccording to the version of the golang packages installed, the EulerOS installation on the remote host is affected by the following vulnerability : - net/url in Go before 1.11.13 and 1.12.x before 1.12.8 mishandles malformed hosts in URLs, leading to an authorization bypass in some applications. This is related to a Host field with a suffix appearing in neither Hostname() nor Port(), and is related to a non-numeric port number. For example, an attacker can compose a crafted javascript:// URL that results in a hostname of google.com.(CVE-2019-14809) Note that Tenable Network Security has extracted the preceding description block directly from the EulerOS security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-05-08
    modified2019-09-16
    plugin id128839
    published2019-09-16
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/128839
    titleEulerOS 2.0 SP5 : golang (EulerOS-SA-2019-1916)
  • NASL familyRed Hat Local Security Checks
    NASL idREDHAT-RHSA-2019-3433.NASL
    descriptionAn update for the go-toolset:rhel8 module is now available for Red Hat Enterprise Linux 8. Red Hat Product Security has rated this update as having a security impact of Moderate. 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. Go Toolset provides the Go programming language tools and libraries. Go is alternatively known as golang. Security Fix(es) : * golang: malformed hosts in URLs leads to authorization bypass (CVE-2019-14809) For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section. Additional Changes : For detailed information on changes in this release, see the Red Hat Enterprise Linux 8.1 Release Notes linked from the References section.
    last seen2020-05-23
    modified2019-11-06
    plugin id130539
    published2019-11-06
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/130539
    titleRHEL 8 : go-toolset:rhel8 (RHSA-2019:3433)
  • NASL familyDebian Local Security Checks
    NASL idDEBIAN_DSA-4503.NASL
    descriptionThree vulnerabilities have been discovered in the Go programming language;
    last seen2020-06-01
    modified2020-06-02
    plugin id127930
    published2019-08-20
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/127930
    titleDebian DSA-4503-1 : golang-1.11 - security update (Ping Flood) (Reset Flood)
  • NASL familyHuawei Local Security Checks
    NASL idEULEROS_SA-2019-2078.NASL
    descriptionAccording to the versions of the golang packages installed, the EulerOS installation on the remote host is affected by the following vulnerabilities : - Some HTTP/2 implementations are vulnerable to ping floods, potentially leading to a denial of service. The attacker sends continual pings to an HTTP/2 peer, causing the peer to build an internal queue of responses. Depending on how efficiently this data is queued, this can consume excess CPU, memory, or both.(CVE-2019-9512) - Some HTTP/2 implementations are vulnerable to a reset flood, potentially leading to a denial of service. The attacker opens a number of streams and sends an invalid request over each stream that should solicit a stream of RST_STREAM frames from the peer. Depending on how the peer queues the RST_STREAM frames, this can consume excess memory, CPU, or both.(CVE-2019-9514) - net/url in Go before 1.11.13 and 1.12.x before 1.12.8 mishandles malformed hosts in URLs, leading to an authorization bypass in some applications. This is related to a Host field with a suffix appearing in neither Hostname() nor Port(), and is related to a non-numeric port number. For example, an attacker can compose a crafted javascript:// URL that results in a hostname of google.com.(CVE-2019-14809) Note that Tenable Network Security has extracted the preceding description block directly from the EulerOS security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-05-03
    modified2019-09-30
    plugin id129437
    published2019-09-30
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/129437
    titleEulerOS 2.0 SP8 : golang (EulerOS-SA-2019-2078)
  • NASL familyFedora Local Security Checks
    NASL idFEDORA_2019-65DB7AD6C7.NASL
    description - Rebase to go1.11.13 - Security fix for CVE-2019-9512, CVE-2019-9514 and CVE-2019-14809 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-01
    modified2020-06-02
    plugin id128571
    published2019-09-09
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/128571
    titleFedora 29 : golang (2019-65db7ad6c7) (Ping Flood) (Reset Flood)
  • NASL familySuSE Local Security Checks
    NASL idOPENSUSE-2019-2056.NASL
    descriptionThis update for go1.12 fixes the following issues : Security issues fixed : - CVE-2019-9512: Fixed HTTP/2 flood using PING frames that results in unbounded memory growth (bsc#1146111). - CVE-2019-9514: Fixed HTTP/2 implementation that is vulnerable to a reset flood, potentially leading to a denial of service (bsc#1146115). - CVE-2019-14809: Fixed malformed hosts in URLs that leads to authorization bypass (bsc#1146123). Bugfixes : - Update to go version 1.12.9 (bsc#1141689). - Adding Web Assembly stuff from misc/wasm (bsc#1139210). This update was imported from the SUSE:SLE-15:Update update project.
    last seen2020-06-01
    modified2020-06-02
    plugin id128462
    published2019-09-03
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/128462
    titleopenSUSE Security Update : go1.12 (openSUSE-2019-2056) (Ping Flood) (Reset Flood)
  • NASL familySuSE Local Security Checks
    NASL idSUSE_SU-2019-2213-1.NASL
    descriptionThis update for go1.11 fixes the following issues : Security issues fixed : CVE-2019-9512: Fixed HTTP/2 flood using PING frames that results in unbounded memory growth (bsc#1146111). CVE-2019-9514: Fixed HTTP/2 implementation that is vulnerable to a reset flood, potentially leading to a denial of service (bsc#1146115). CVE-2019-14809: Fixed malformed hosts in URLs that leads to authorization bypass (bsc#1146123). Bugfixes: Update to go version 1.11.13 (bsc#1141688). Note that Tenable Network Security has extracted the preceding description block directly from the SUSE 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 id128146
    published2019-08-26
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/128146
    titleSUSE SLED15 / SLES15 Security Update : go1.11 (SUSE-SU-2019:2213-1) (Ping Flood) (Reset Flood)
  • NASL familySuSE Local Security Checks
    NASL idOPENSUSE-2019-2072.NASL
    descriptionThis update for go1.11 fixes the following issues : Security issues fixed : - CVE-2019-9512: Fixed HTTP/2 flood using PING frames that results in unbounded memory growth (bsc#1146111). - CVE-2019-9514: Fixed HTTP/2 implementation that is vulnerable to a reset flood, potentially leading to a denial of service (bsc#1146115). - CVE-2019-14809: Fixed malformed hosts in URLs that leads to authorization bypass (bsc#1146123). Bugfixes : - Update to go version 1.11.13 (bsc#1141688). This update was imported from the SUSE:SLE-15:Update update project.
    last seen2020-06-01
    modified2020-06-02
    plugin id128541
    published2019-09-06
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/128541
    titleopenSUSE Security Update : go1.11 (openSUSE-2019-2072) (Ping Flood) (Reset Flood)
  • NASL familySuSE Local Security Checks
    NASL idOPENSUSE-2019-2000.NASL
    descriptionThis update for go1.12 fixes the following issues : Security issues fixed : - CVE-2019-9512: Fixed HTTP/2 flood using PING frames that results in unbounded memory growth. (bsc#1146111) - CVE-2019-9514: Fixed HTTP/2 implementation is vulnerable to a reset flood, potentially leading to a denial of service. (bsc#1146115) - CVE-2019-14809: Fixed authorization bypass due to malformed hosts in URLs. (bsc#1146123)
    last seen2020-06-01
    modified2020-06-02
    plugin id128142
    published2019-08-26
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/128142
    titleopenSUSE Security Update : go1.12 (openSUSE-2019-2000) (Ping Flood) (Reset Flood)
  • NASL familyFedora Local Security Checks
    NASL idFEDORA_2019-55D101A740.NASL
    description - Rebase to go1.12.9 - Security fix for CVE-2019-9512, CVE-2019-9514 and CVE-2019-14809 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-01
    modified2020-06-02
    plugin id128567
    published2019-09-09
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/128567
    titleFedora 30 : golang (2019-55d101a740) (Ping Flood) (Reset Flood)
  • NASL familySuSE Local Security Checks
    NASL idOPENSUSE-2019-2085.NASL
    descriptionThis update for go1.12 fixes the following issues : Security issues fixed : - CVE-2019-9512: Fixed HTTP/2 flood using PING frames that results in unbounded memory growth (bsc#1146111). - CVE-2019-9514: Fixed HTTP/2 implementation that is vulnerable to a reset flood, potentially leading to a denial of service (bsc#1146115). - CVE-2019-14809: Fixed malformed hosts in URLs that leads to authorization bypass (bsc#1146123). Bugfixes : - Update to go version 1.12.9 (bsc#1141689). - Adding Web Assembly stuff from misc/wasm (bsc#1139210). This update was imported from the SUSE:SLE-15:Update update project.
    last seen2020-06-01
    modified2020-06-02
    plugin id128605
    published2019-09-09
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/128605
    titleopenSUSE Security Update : go1.12 (openSUSE-2019-2085) (Ping Flood) (Reset Flood)
  • NASL familyPhotonOS Local Security Checks
    NASL idPHOTONOS_PHSA-2019-1_0-0250_GO.NASL
    descriptionAn update of the go package has been released.
    last seen2020-06-01
    modified2020-06-02
    plugin id128709
    published2019-09-12
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/128709
    titlePhoton OS 1.0: Go PHSA-2019-1.0-0250
  • NASL familySuSE Local Security Checks
    NASL idSUSE_SU-2019-2214-1.NASL
    descriptionThis update for go1.12 fixes the following issues : Security issues fixed : CVE-2019-9512: Fixed HTTP/2 flood using PING frames that results in unbounded memory growth (bsc#1146111). CVE-2019-9514: Fixed HTTP/2 implementation that is vulnerable to a reset flood, potentially leading to a denial of service (bsc#1146115). CVE-2019-14809: Fixed malformed hosts in URLs that leads to authorization bypass (bsc#1146123). Bugfixes: Update to go version 1.12.9 (bsc#1141689). Adding Web Assembly stuff from misc/wasm (bsc#1139210). Note that Tenable Network Security has extracted the preceding description block directly from the SUSE 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 id128147
    published2019-08-26
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/128147
    titleSUSE SLED15 / SLES15 Security Update : go1.12 (SUSE-SU-2019:2214-1) (Ping Flood) (Reset Flood)

Redhat

advisories
bugzilla
id1743129
titleCVE-2019-14809 golang: malformed hosts in URLs leads to authorization bypass
oval
OR
  • commentRed Hat Enterprise Linux must be installed
    ovaloval:com.redhat.rhba:tst:20070304026
  • AND
    • commentRed Hat Enterprise Linux 8 is installed
      ovaloval:com.redhat.rhba:tst:20193384074
    • commentModule go-toolset:rhel8 is enabled
      ovaloval:com.redhat.rhsa:tst:20191519017
    • OR
      • AND
        • commentgolang-bin is earlier than 0:1.12.8-2.module+el8.1.0+4089+be929cf8
          ovaloval:com.redhat.rhsa:tst:20193433001
        • commentgolang-bin is signed with Red Hat redhatrelease2 key
          ovaloval:com.redhat.rhsa:tst:20161538002
      • AND
        • commentgolang is earlier than 0:1.12.8-2.module+el8.1.0+4089+be929cf8
          ovaloval:com.redhat.rhsa:tst:20193433003
        • commentgolang is signed with Red Hat redhatrelease2 key
          ovaloval:com.redhat.rhsa:tst:20161538004
      • AND
        • commentgo-toolset is earlier than 0:1.12.8-1.module+el8.1.0+4089+be929cf8
          ovaloval:com.redhat.rhsa:tst:20193433005
        • commentgo-toolset is signed with Red Hat redhatrelease2 key
          ovaloval:com.redhat.rhsa:tst:20191519008
      • AND
        • commentgolang-tests is earlier than 0:1.12.8-2.module+el8.1.0+4089+be929cf8
          ovaloval:com.redhat.rhsa:tst:20193433007
        • commentgolang-tests is signed with Red Hat redhatrelease2 key
          ovaloval:com.redhat.rhsa:tst:20161538012
      • AND
        • commentgolang-src is earlier than 0:1.12.8-2.module+el8.1.0+4089+be929cf8
          ovaloval:com.redhat.rhsa:tst:20193433009
        • commentgolang-src is signed with Red Hat redhatrelease2 key
          ovaloval:com.redhat.rhsa:tst:20161538008
      • AND
        • commentgolang-misc is earlier than 0:1.12.8-2.module+el8.1.0+4089+be929cf8
          ovaloval:com.redhat.rhsa:tst:20193433011
        • commentgolang-misc is signed with Red Hat redhatrelease2 key
          ovaloval:com.redhat.rhsa:tst:20161538010
      • AND
        • commentgolang-docs is earlier than 0:1.12.8-2.module+el8.1.0+4089+be929cf8
          ovaloval:com.redhat.rhsa:tst:20193433013
        • commentgolang-docs is signed with Red Hat redhatrelease2 key
          ovaloval:com.redhat.rhsa:tst:20161538006
      • AND
        • commentgolang-race is earlier than 0:1.12.8-2.module+el8.1.0+4089+be929cf8
          ovaloval:com.redhat.rhsa:tst:20193433015
        • commentgolang-race is signed with Red Hat redhatrelease2 key
          ovaloval:com.redhat.rhsa:tst:20191519002
rhsa
idRHSA-2019:3433
released2019-11-05
severityModerate
titleRHSA-2019:3433: go-toolset:rhel8 security, bug fix, and enhancement update (Moderate)
rpms
  • go-toolset-0:1.12.8-1.module+el8.1.0+4089+be929cf8
  • golang-0:1.12.8-2.module+el8.1.0+4089+be929cf8
  • golang-bin-0:1.12.8-2.module+el8.1.0+4089+be929cf8
  • golang-docs-0:1.12.8-2.module+el8.1.0+4089+be929cf8
  • golang-misc-0:1.12.8-2.module+el8.1.0+4089+be929cf8
  • golang-race-0:1.12.8-2.module+el8.1.0+4089+be929cf8
  • golang-src-0:1.12.8-2.module+el8.1.0+4089+be929cf8
  • golang-tests-0:1.12.8-2.module+el8.1.0+4089+be929cf8