Vulnerabilities > CVE-2018-1000135 - Information Exposure vulnerability in multiple products

047910
CVSS 5.0 - MEDIUM
Attack vector
NETWORK
Attack complexity
LOW
Privileges required
NONE
Confidentiality impact
PARTIAL
Integrity impact
NONE
Availability impact
NONE
network
low complexity
gnome
canonical
CWE-200
nessus

Summary

GNOME NetworkManager version 1.10.2 and earlier contains a Information Exposure (CWE-200) vulnerability in DNS resolver that can result in Private DNS queries leaked to local network's DNS servers, while on VPN. This vulnerability appears to have been fixed in Some Ubuntu 16.04 packages were fixed, but later updates removed the fix. cf. https://bugs.launchpad.net/ubuntu/+bug/1754671 an upstream fix does not appear to be available at this time.

Vulnerable Configurations

Part Description Count
Application
Gnome
112
OS
Canonical
1

Common Weakness Enumeration (CWE)

Common Attack Pattern Enumeration and Classification (CAPEC)

  • Subverting Environment Variable Values
    The attacker directly or indirectly modifies environment variables used by or controlling the target software. The attacker's goal is to cause the target software to deviate from its expected operation in a manner that benefits the attacker.
  • Footprinting
    An attacker engages in probing and exploration activity to identify constituents and properties of the target. Footprinting is a general term to describe a variety of information gathering techniques, often used by attackers in preparation for some attack. It consists of using tools to learn as much as possible about the composition, configuration, and security mechanisms of the targeted application, system or network. Information that might be collected during a footprinting effort could include open ports, applications and their versions, network topology, and similar information. While footprinting is not intended to be damaging (although certain activities, such as network scans, can sometimes cause disruptions to vulnerable applications inadvertently) it may often pave the way for more damaging attacks.
  • Exploiting Trust in Client (aka Make the Client Invisible)
    An attack of this type exploits a programs' vulnerabilities in client/server communication channel authentication and data integrity. It leverages the implicit trust a server places in the client, or more importantly, that which the server believes is the client. An attacker executes this type of attack by placing themselves in the communication channel between client and server such that communication directly to the server is possible where the server believes it is communicating only with a valid client. There are numerous variations of this type of attack.
  • Browser Fingerprinting
    An attacker carefully crafts small snippets of Java Script to efficiently detect the type of browser the potential victim is using. Many web-based attacks need prior knowledge of the web browser including the version of browser to ensure successful exploitation of a vulnerability. Having this knowledge allows an attacker to target the victim with attacks that specifically exploit known or zero day weaknesses in the type and version of the browser used by the victim. Automating this process via Java Script as a part of the same delivery system used to exploit the browser is considered more efficient as the attacker can supply a browser fingerprinting method and integrate it with exploit code, all contained in Java Script and in response to the same web page request by the browser.
  • Session Credential Falsification through Prediction
    This attack targets predictable session ID in order to gain privileges. The attacker can predict the session ID used during a transaction to perform spoofing and session hijacking.

Nessus

  • NASL familyPhotonOS Local Security Checks
    NASL idPHOTONOS_PHSA-2020-1_0-0291_NETWORKMANAGER.NASL
    descriptionAn update of the NetworkManager package has been released.
    last seen2020-05-09
    modified2020-05-07
    plugin id136405
    published2020-05-07
    reporterThis script is Copyright (C) 2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/136405
    titlePhoton OS 1.0: Networkmanager PHSA-2020-1.0-0291
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    
    # The descriptive text and package checks in this plugin were
    # extracted from VMware Security Advisory PHSA-2020-1.0-0291. The text
    # itself is copyright (C) VMware, Inc.
    
    
    include('compat.inc');
    
    if (description)
    {
      script_id(136405);
      script_version("1.2");
      script_set_attribute(attribute:"plugin_modification_date", value:"2020/05/08");
    
      script_cve_id("CVE-2018-1000135");
      script_bugtraq_id(103478);
    
      script_name(english:"Photon OS 1.0: Networkmanager PHSA-2020-1.0-0291");
    
      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 NetworkManager package has been released.");
      script_set_attribute(attribute:"see_also", value:"https://github.com/vmware/photon/wiki/Security-Updates-1.0-291.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:N/A:N");
      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:N/A:N");
      script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
      script_set_attribute(attribute:"cvss_score_source", value:"CVE-2018-1000135");
    
      script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
    
      script_set_attribute(attribute:"vuln_publication_date", value:"2018/03/20");
      script_set_attribute(attribute:"patch_publication_date", value:"2020/04/30");
      script_set_attribute(attribute:"plugin_publication_date", value:"2020/05/07");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:vmware:photonos:NetworkManager");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:vmware:photonos:1.0");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"PhotonOS Local Security Checks");
    
      script_copyright(english:"This script is Copyright (C) 2020 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) 1\.0(\D|$)") audit(AUDIT_OS_NOT, "PhotonOS 1.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$" && "aarch64" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "PhotonOS", cpu);
    
    flag = 0;
    
    if (rpm_check(release:"PhotonOS-1.0", cpu:"x86_64", reference:"NetworkManager-1.22.10-1.ph1")) flag++;
    if (rpm_check(release:"PhotonOS-1.0", cpu:"x86_64", reference:"NetworkManager-debuginfo-1.22.10-1.ph1")) flag++;
    if (rpm_check(release:"PhotonOS-1.0", cpu:"x86_64", reference:"NetworkManager-devel-1.22.10-1.ph1")) 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, "NetworkManager");
    }
    
  • NASL familySuSE Local Security Checks
    NASL idSUSE_SU-2019-1369-1.NASL
    descriptionThis update for NetworkManager fixes the following issues : Following security issue was fixed : CVE-2018-1000135: A potential leak of private DNS queries to other DNS servers could happen while on VPN (bsc#1086263, bgo#746422). 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 id125539
    published2019-05-29
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/125539
    titleSUSE SLED15 / SLES15 Security Update : NetworkManager (SUSE-SU-2019:1369-1)
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    # The descriptive text and package checks in this plugin were
    # extracted from SUSE update advisory SUSE-SU-2019:1369-1.
    # The text itself is copyright (C) SUSE.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(125539);
      script_version("1.3");
      script_cvs_date("Date: 2020/01/15");
    
      script_cve_id("CVE-2018-1000135");
    
      script_name(english:"SUSE SLED15 / SLES15 Security Update : NetworkManager (SUSE-SU-2019:1369-1)");
      script_summary(english:"Checks rpm output for the updated packages.");
    
      script_set_attribute(
        attribute:"synopsis", 
        value:"The remote SUSE host is missing one or more security updates."
      );
      script_set_attribute(
        attribute:"description", 
        value:
    "This update for NetworkManager fixes the following issues :
    
    Following security issue was fixed :
    
    CVE-2018-1000135: A potential leak of private DNS queries to other DNS
    servers could happen while on VPN (bsc#1086263, bgo#746422).
    
    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."
      );
      script_set_attribute(
        attribute:"see_also",
        value:"https://bugzilla.suse.com/show_bug.cgi?id=1086263"
      );
      script_set_attribute(
        attribute:"see_also",
        value:"https://www.suse.com/security/cve/CVE-2018-1000135/"
      );
      # https://www.suse.com/support/update/announcement/2019/suse-su-20191369-1/
      script_set_attribute(
        attribute:"see_also",
        value:"http://www.nessus.org/u?78672c05"
      );
      script_set_attribute(
        attribute:"solution", 
        value:
    "To install this SUSE Security Update use the SUSE recommended
    installation methods like YaST online_update or 'zypper patch'.
    
    Alternatively you can run the command listed for your product :
    
    SUSE Linux Enterprise Workstation Extension 15:zypper in -t patch
    SUSE-SLE-Product-WE-15-2019-1369=1
    
    SUSE Linux Enterprise Module for Open Buildservice Development Tools
    15:zypper in -t patch
    SUSE-SLE-Module-Development-Tools-OBS-15-2019-1369=1
    
    SUSE Linux Enterprise Module for Desktop Applications 15:zypper in -t
    patch SUSE-SLE-Module-Desktop-Applications-15-2019-1369=1
    
    SUSE Linux Enterprise Module for Basesystem 15:zypper in -t patch
    SUSE-SLE-Module-Basesystem-15-2019-1369=1"
      );
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N");
      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:N/A:N");
      script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
      script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:NetworkManager");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:NetworkManager-debuginfo");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:NetworkManager-debugsource");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:NetworkManager-devel");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:libnm-glib-vpn1");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:libnm-glib-vpn1-debuginfo");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:libnm-glib4");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:libnm-glib4-debuginfo");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:libnm-util2");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:libnm-util2-debuginfo");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:libnm0");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:libnm0-debuginfo");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:typelib-1_0-NM");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:typelib-1_0-NMClient");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:typelib-1_0-NetworkManager");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:novell:suse_linux:15");
    
      script_set_attribute(attribute:"vuln_publication_date", value:"2018/03/20");
      script_set_attribute(attribute:"patch_publication_date", value:"2019/05/28");
      script_set_attribute(attribute:"plugin_publication_date", value:"2019/05/29");
      script_set_attribute(attribute:"generated_plugin", value:"current");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_copyright(english:"This script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");
      script_family(english:"SuSE Local Security Checks");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/cpu", "Host/SuSE/release", "Host/SuSE/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/SuSE/release");
    if (isnull(release) || release !~ "^(SLED|SLES)") audit(AUDIT_OS_NOT, "SUSE");
    os_ver = pregmatch(pattern: "^(SLE(S|D)\d+)", string:release);
    if (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, "SUSE");
    os_ver = os_ver[1];
    if (! preg(pattern:"^(SLED15|SLES15)$", string:os_ver)) audit(AUDIT_OS_NOT, "SUSE SLED15 / SLES15", "SUSE " + os_ver);
    
    if (!get_kb_item("Host/SuSE/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING);
    
    cpu = get_kb_item("Host/cpu");
    if (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);
    if (cpu !~ "^i[3-6]86$" && "x86_64" >!< cpu && "s390x" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "SUSE " + os_ver, cpu);
    
    sp = get_kb_item("Host/SuSE/patchlevel");
    if (isnull(sp)) sp = "0";
    if (os_ver == "SLES15" && (! preg(pattern:"^(0)$", string:sp))) audit(AUDIT_OS_NOT, "SLES15 SP0", os_ver + " SP" + sp);
    if (os_ver == "SLED15" && (! preg(pattern:"^(0)$", string:sp))) audit(AUDIT_OS_NOT, "SLED15 SP0", os_ver + " SP" + sp);
    
    
    flag = 0;
    if (rpm_check(release:"SLES15", sp:"0", reference:"NetworkManager-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"NetworkManager-debuginfo-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"NetworkManager-debugsource-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"NetworkManager-devel-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"libnm-glib-vpn1-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"libnm-glib-vpn1-debuginfo-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"libnm-glib4-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"libnm-glib4-debuginfo-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"libnm-util2-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"libnm-util2-debuginfo-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"typelib-1_0-NMClient-1_0-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"typelib-1_0-NetworkManager-1_0-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"NetworkManager-debuginfo-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"NetworkManager-debugsource-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"libnm0-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"libnm0-debuginfo-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLES15", sp:"0", reference:"typelib-1_0-NM-1_0-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"NetworkManager-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"NetworkManager-debuginfo-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"NetworkManager-debugsource-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"NetworkManager-devel-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"libnm-glib-vpn1-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"libnm-glib-vpn1-debuginfo-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"libnm-glib4-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"libnm-glib4-debuginfo-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"libnm-util2-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"libnm-util2-debuginfo-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"typelib-1_0-NMClient-1_0-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"typelib-1_0-NetworkManager-1_0-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"NetworkManager-debuginfo-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"NetworkManager-debugsource-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"libnm0-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"libnm0-debuginfo-1.10.6-5.6.1")) flag++;
    if (rpm_check(release:"SLED15", sp:"0", reference:"typelib-1_0-NM-1_0-1.10.6-5.6.1")) 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, "NetworkManager");
    }
    
  • NASL familyHuawei Local Security Checks
    NASL idEULEROS_SA-2019-2636.NASL
    descriptionAccording to the version of the NetworkManager packages installed, the EulerOS installation on the remote host is affected by the following vulnerability : - GNOME NetworkManager version 1.10.2 and earlier contains a Information Exposure (CWE-200) vulnerability in DNS resolver that can result in Private DNS queries leaked to local network
    last seen2020-05-08
    modified2019-12-18
    plugin id132171
    published2019-12-18
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/132171
    titleEulerOS 2.0 SP3 : NetworkManager (EulerOS-SA-2019-2636)
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(132171);
      script_version("1.3");
      script_set_attribute(attribute:"plugin_modification_date", value:"2020/05/07");
    
      script_cve_id(
        "CVE-2018-1000135"
      );
    
      script_name(english:"EulerOS 2.0 SP3 : NetworkManager (EulerOS-SA-2019-2636)");
      script_summary(english:"Checks the rpm output for the updated package.");
    
      script_set_attribute(attribute:"synopsis", value:
    "The remote EulerOS host is missing a security update.");
      script_set_attribute(attribute:"description", value:
    "According to the version of the NetworkManager packages installed,
    the EulerOS installation on the remote host is affected by the
    following vulnerability :
    
      - GNOME NetworkManager version 1.10.2 and earlier
        contains a Information Exposure (CWE-200) vulnerability
        in DNS resolver that can result in Private DNS queries
        leaked to local network's DNS servers, while on VPN.
        This vulnerability appears to have been fixed in Some
        Ubuntu 16.04 packages were fixed, but later updates
        removed the fix. cf.
        https://bugs.launchpad.net/ubuntu/+bug/1754671 an
        upstream fix does not appear to be available at this
        time.(CVE-2018-1000135)
    
    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.");
      # https://developer.huaweicloud.com/ict/en/site-euleros/euleros/security-advisories/EulerOS-SA-2019-2636
      script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?c12762b2");
      script_set_attribute(attribute:"solution", value:
    "Update the affected NetworkManager package.");
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N");
      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:N/A:N");
      script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
      script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
    
      script_set_attribute(attribute:"patch_publication_date", value:"2019/12/18");
      script_set_attribute(attribute:"plugin_publication_date", value:"2019/12/18");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-adsl");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-bluetooth");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-config-server");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-glib");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-libnm");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-team");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-tui");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-wifi");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-wwan");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:huawei:euleros:2.0");
      script_set_attribute(attribute:"generated_plugin", value:"current");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"Huawei Local Security Checks");
    
      script_copyright(english:"This script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/EulerOS/release", "Host/EulerOS/rpm-list", "Host/EulerOS/sp");
      script_exclude_keys("Host/EulerOS/uvp_version");
    
      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/EulerOS/release");
    if (isnull(release) || release !~ "^EulerOS") audit(AUDIT_OS_NOT, "EulerOS");
    if (release !~ "^EulerOS release 2\.0(\D|$)") audit(AUDIT_OS_NOT, "EulerOS 2.0");
    
    sp = get_kb_item("Host/EulerOS/sp");
    if (isnull(sp) || sp !~ "^(3)$") audit(AUDIT_OS_NOT, "EulerOS 2.0 SP3");
    
    uvp = get_kb_item("Host/EulerOS/uvp_version");
    if (!empty_or_null(uvp)) audit(AUDIT_OS_NOT, "EulerOS 2.0 SP3", "EulerOS UVP " + uvp);
    
    if (!get_kb_item("Host/EulerOS/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$" && "aarch64" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "EulerOS", cpu);
    if ("x86_64" >!< cpu && cpu !~ "^i[3-6]86$") audit(AUDIT_ARCH_NOT, "i686 / x86_64", cpu);
    
    flag = 0;
    
    pkgs = ["NetworkManager-1.10.2-16.h9",
            "NetworkManager-adsl-1.10.2-16.h9",
            "NetworkManager-bluetooth-1.10.2-16.h9",
            "NetworkManager-config-server-1.10.2-16.h9",
            "NetworkManager-glib-1.10.2-16.h9",
            "NetworkManager-libnm-1.10.2-16.h9",
            "NetworkManager-team-1.10.2-16.h9",
            "NetworkManager-tui-1.10.2-16.h9",
            "NetworkManager-wifi-1.10.2-16.h9",
            "NetworkManager-wwan-1.10.2-16.h9"];
    
    foreach (pkg in pkgs)
      if (rpm_check(release:"EulerOS-2.0", sp:"3", reference:pkg)) 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, "NetworkManager");
    }
    
  • NASL familyHuawei Local Security Checks
    NASL idEULEROS_SA-2019-2371.NASL
    descriptionAccording to the version of the NetworkManager packages installed, the EulerOS installation on the remote host is affected by the following vulnerability : - GNOME NetworkManager version 1.10.2 and earlier contains a Information Exposure (CWE-200) vulnerability in DNS resolver that can result in Private DNS queries leaked to local network
    last seen2020-05-08
    modified2019-12-10
    plugin id131863
    published2019-12-10
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/131863
    titleEulerOS 2.0 SP2 : NetworkManager (EulerOS-SA-2019-2371)
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(131863);
      script_version("1.3");
      script_set_attribute(attribute:"plugin_modification_date", value:"2020/05/07");
    
      script_cve_id(
        "CVE-2018-1000135"
      );
    
      script_name(english:"EulerOS 2.0 SP2 : NetworkManager (EulerOS-SA-2019-2371)");
      script_summary(english:"Checks the rpm output for the updated package.");
    
      script_set_attribute(attribute:"synopsis", value:
    "The remote EulerOS host is missing a security update.");
      script_set_attribute(attribute:"description", value:
    "According to the version of the NetworkManager packages installed,
    the EulerOS installation on the remote host is affected by the
    following vulnerability :
    
      - GNOME NetworkManager version 1.10.2 and earlier
        contains a Information Exposure (CWE-200) vulnerability
        in DNS resolver that can result in Private DNS queries
        leaked to local network's DNS servers, while on VPN.
        This vulnerability appears to have been fixed in Some
        Ubuntu 16.04 packages were fixed, but later updates
        removed the fix. cf.
        https://bugs.launchpad.net/ubuntu/+bug/1754671 an
        upstream fix does not appear to be available at this
        time.(CVE-2018-1000135)
    
    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.");
      # https://developer.huaweicloud.com/ict/en/site-euleros/euleros/security-advisories/EulerOS-SA-2019-2371
      script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?200b357f");
      script_set_attribute(attribute:"solution", value:
    "Update the affected NetworkManager package.");
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N");
      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:N/A:N");
      script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
      script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
    
      script_set_attribute(attribute:"patch_publication_date", value:"2019/12/04");
      script_set_attribute(attribute:"plugin_publication_date", value:"2019/12/10");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-adsl");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-bluetooth");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-config-server");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-glib");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-libnm");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-team");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-tui");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-wifi");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-wwan");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:huawei:euleros:2.0");
      script_set_attribute(attribute:"generated_plugin", value:"current");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"Huawei Local Security Checks");
    
      script_copyright(english:"This script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/EulerOS/release", "Host/EulerOS/rpm-list", "Host/EulerOS/sp");
      script_exclude_keys("Host/EulerOS/uvp_version");
    
      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/EulerOS/release");
    if (isnull(release) || release !~ "^EulerOS") audit(AUDIT_OS_NOT, "EulerOS");
    if (release !~ "^EulerOS release 2\.0(\D|$)") audit(AUDIT_OS_NOT, "EulerOS 2.0");
    
    sp = get_kb_item("Host/EulerOS/sp");
    if (isnull(sp) || sp !~ "^(2)$") audit(AUDIT_OS_NOT, "EulerOS 2.0 SP2");
    
    uvp = get_kb_item("Host/EulerOS/uvp_version");
    if (!empty_or_null(uvp)) audit(AUDIT_OS_NOT, "EulerOS 2.0 SP2", "EulerOS UVP " + uvp);
    
    if (!get_kb_item("Host/EulerOS/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$" && "aarch64" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "EulerOS", cpu);
    if ("x86_64" >!< cpu && cpu !~ "^i[3-6]86$") audit(AUDIT_ARCH_NOT, "i686 / x86_64", cpu);
    
    flag = 0;
    
    pkgs = ["NetworkManager-1.10.2-16.h8",
            "NetworkManager-adsl-1.10.2-16.h8",
            "NetworkManager-bluetooth-1.10.2-16.h8",
            "NetworkManager-config-server-1.10.2-16.h8",
            "NetworkManager-glib-1.10.2-16.h8",
            "NetworkManager-libnm-1.10.2-16.h8",
            "NetworkManager-team-1.10.2-16.h8",
            "NetworkManager-tui-1.10.2-16.h8",
            "NetworkManager-wifi-1.10.2-16.h8",
            "NetworkManager-wwan-1.10.2-16.h8"];
    
    foreach (pkg in pkgs)
      if (rpm_check(release:"EulerOS-2.0", sp:"2", reference:pkg)) 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, "NetworkManager");
    }
    
  • NASL familyHuawei Local Security Checks
    NASL idEULEROS_SA-2019-2698.NASL
    descriptionAccording to the version of the NetworkManager packages installed, the EulerOS installation on the remote host is affected by the following vulnerability : - GNOME NetworkManager version 1.10.2 and earlier contains a Information Exposure (CWE-200) vulnerability in DNS resolver that can result in Private DNS queries leaked to local network
    last seen2020-05-08
    modified2019-12-23
    plugin id132365
    published2019-12-23
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/132365
    titleEulerOS 2.0 SP5 : NetworkManager (EulerOS-SA-2019-2698)
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(132365);
      script_version("1.3");
      script_set_attribute(attribute:"plugin_modification_date", value:"2020/05/07");
    
      script_cve_id(
        "CVE-2018-1000135"
      );
    
      script_name(english:"EulerOS 2.0 SP5 : NetworkManager (EulerOS-SA-2019-2698)");
      script_summary(english:"Checks the rpm output for the updated package.");
    
      script_set_attribute(attribute:"synopsis", value:
    "The remote EulerOS host is missing a security update.");
      script_set_attribute(attribute:"description", value:
    "According to the version of the NetworkManager packages installed,
    the EulerOS installation on the remote host is affected by the
    following vulnerability :
    
      - GNOME NetworkManager version 1.10.2 and earlier
        contains a Information Exposure (CWE-200) vulnerability
        in DNS resolver that can result in Private DNS queries
        leaked to local network's DNS servers, while on VPN.
        This vulnerability appears to have been fixed in Some
        Ubuntu 16.04 packages were fixed, but later updates
        removed the fix. cf.
        https://bugs.launchpad.net/ubuntu/+bug/1754671 an
        upstream fix does not appear to be available at this
        time.(CVE-2018-1000135)
    
    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.");
      # https://developer.huaweicloud.com/ict/en/site-euleros/euleros/security-advisories/EulerOS-SA-2019-2698
      script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?f5208be1");
      script_set_attribute(attribute:"solution", value:
    "Update the affected NetworkManager package.");
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N");
      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:N/A:N");
      script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
      script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
    
      script_set_attribute(attribute:"patch_publication_date", value:"2019/12/23");
      script_set_attribute(attribute:"plugin_publication_date", value:"2019/12/23");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-adsl");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-bluetooth");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-config-server");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-glib");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-libnm");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-team");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-tui");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-wifi");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:NetworkManager-wwan");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:huawei:euleros:2.0");
      script_set_attribute(attribute:"generated_plugin", value:"current");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"Huawei Local Security Checks");
    
      script_copyright(english:"This script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/EulerOS/release", "Host/EulerOS/rpm-list", "Host/EulerOS/sp");
      script_exclude_keys("Host/EulerOS/uvp_version");
    
      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/EulerOS/release");
    if (isnull(release) || release !~ "^EulerOS") audit(AUDIT_OS_NOT, "EulerOS");
    if (release !~ "^EulerOS release 2\.0(\D|$)") audit(AUDIT_OS_NOT, "EulerOS 2.0");
    
    sp = get_kb_item("Host/EulerOS/sp");
    if (isnull(sp) || sp !~ "^(5)$") audit(AUDIT_OS_NOT, "EulerOS 2.0 SP5");
    
    uvp = get_kb_item("Host/EulerOS/uvp_version");
    if (!empty_or_null(uvp)) audit(AUDIT_OS_NOT, "EulerOS 2.0 SP5", "EulerOS UVP " + uvp);
    
    if (!get_kb_item("Host/EulerOS/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$" && "aarch64" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "EulerOS", cpu);
    if ("x86_64" >!< cpu && cpu !~ "^i[3-6]86$") audit(AUDIT_ARCH_NOT, "i686 / x86_64", cpu);
    
    flag = 0;
    
    pkgs = ["NetworkManager-1.10.2-16.h5.eulerosv2r7",
            "NetworkManager-adsl-1.10.2-16.h5.eulerosv2r7",
            "NetworkManager-bluetooth-1.10.2-16.h5.eulerosv2r7",
            "NetworkManager-config-server-1.10.2-16.h5.eulerosv2r7",
            "NetworkManager-glib-1.10.2-16.h5.eulerosv2r7",
            "NetworkManager-libnm-1.10.2-16.h5.eulerosv2r7",
            "NetworkManager-team-1.10.2-16.h5.eulerosv2r7",
            "NetworkManager-tui-1.10.2-16.h5.eulerosv2r7",
            "NetworkManager-wifi-1.10.2-16.h5.eulerosv2r7",
            "NetworkManager-wwan-1.10.2-16.h5.eulerosv2r7"];
    
    foreach (pkg in pkgs)
      if (rpm_check(release:"EulerOS-2.0", sp:"5", reference:pkg)) 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, "NetworkManager");
    }
    
  • NASL familySuSE Local Security Checks
    NASL idOPENSUSE-2019-1494.NASL
    descriptionThis update for NetworkManager fixes the following issues : Following security issue was fixed : - CVE-2018-1000135: A potential leak of private DNS queries to other DNS servers could happen while on VPN (bsc#1086263, bgo#746422). This update was imported from the SUSE:SLE-15:Update update project.
    last seen2020-06-01
    modified2020-06-02
    plugin id125694
    published2019-06-04
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/125694
    titleopenSUSE Security Update : NetworkManager (openSUSE-2019-1494)
  • NASL familyHuawei Local Security Checks
    NASL idEULEROS_SA-2020-1524.NASL
    descriptionAccording to the version of the NetworkManager packages installed, the EulerOS Virtualization for ARM 64 installation on the remote host is affected by the following vulnerability : - An information exposure vulnerability has been found in NetworkManager when dnsmasq is used in DNS processing mode. An attacker in control of a DNS server could receive DNS queries even though a Virtual Private Network (VPN) was configured on the vulnerable machine.(CVE-2018-1000135) 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
    modified2020-05-01
    plugin id136227
    published2020-05-01
    reporterThis script is Copyright (C) 2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/136227
    titleEulerOS Virtualization for ARM 64 3.0.2.0 : NetworkManager (EulerOS-SA-2020-1524)