Lucene search

K
nessusThis script is Copyright (C) 2018-2024 and is owned by Tenable, Inc. or an Affiliate thereof.HUAWEI-SA-20180207-01-SOAP-EN.NASL
HistorySep 10, 2018 - 12:00 a.m.

Huawei Multiple Vulnerabilities

2018-09-1000:00:00
This script is Copyright (C) 2018-2024 and is owned by Tenable, Inc. or an Affiliate thereof.
www.tenable.com
26

CVSS2

5.5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

SINGLE

Confidentiality Impact

NONE

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

AV:N/AC:L/Au:S/C:N/I:P/A:P

CVSS3

5.4

Attack Vector

NETWORK

Attack Complexity

LOW

Privileges Required

LOW

User Interaction

NONE

Scope

UNCHANGED

Confidentiality Impact

NONE

Integrity Impact

LOW

Availability Impact

LOW

CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L

AI Score

4.8

Confidence

High

EPSS

0.001

Percentile

43.9%

The remote Huawei product is affected by multiple vulnerabilities.

#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#

include('deprecated_nasl_level.inc');
include('compat.inc');

if (description)
{
  script_id(117395);
  script_version("1.6");
  script_set_attribute(attribute:"plugin_modification_date", value:"2024/08/08");

  script_cve_id(
    "CVE-2017-17182",
    "CVE-2017-17183",
    "CVE-2017-17184",
    "CVE-2017-17185",
    "CVE-2017-17186",
    "CVE-2017-17187"
  );

  script_name(english:"Huawei Multiple Vulnerabilities");

  script_set_attribute(attribute:"synopsis", value:
"The remote device is affected by multiple vulnerabilities.");
  script_set_attribute(attribute:"description", value:
"The remote Huawei product is affected by multiple 
vulnerabilities.");
  # https://www.huawei.com/en/psirt/security-advisories/huawei-sa-20180207-01-soap-en
  script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?ea2c0196");
  script_set_attribute(attribute:"solution", value:
"Apply the appropriate firmware patch according to the vendor advisory.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:S/C:N/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:L/UI:N/S:U/C:N/I:L/A:L");
  script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
  script_set_attribute(attribute:"cvss_score_source", value:"CVE-2017-17186");

  script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
  script_set_attribute(attribute:"exploit_available", value:"false");

  script_set_attribute(attribute:"vuln_publication_date", value:"2018/02/07");
  script_set_attribute(attribute:"patch_publication_date", value:"2018/02/07");
  script_set_attribute(attribute:"plugin_publication_date", value:"2018/09/10");

  script_set_attribute(attribute:"potential_vulnerability", value:"true");
  script_set_attribute(attribute:"plugin_type", value:"combined");
  script_set_attribute(attribute:"cpe", value:"cpe:/o:huawei:versatile_routing_platform");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"Huawei Local Security Checks");

  script_copyright(english:"This script is Copyright (C) 2018-2024 and is owned by Tenable, Inc. or an Affiliate thereof.");

  script_dependencies("huawei_vrp_version.nbin");
  script_require_keys("Host/Huawei/VRP/Series", "Host/Huawei/VRP/Version", "Host/Huawei/VRP/Model", "Settings/ParanoidReport");

  exit(0);
}

include("huawei_version.inc");

if (report_paranoia < 2) audit(AUDIT_PARANOID);

patchlist = get_kb_item_or_exit("Host/Huawei/VRP/display_patch-information");
model = get_kb_item_or_exit("Host/Huawei/VRP/Model");
series = get_kb_item_or_exit("Host/Huawei/VRP/Series");
version = get_kb_item_or_exit("Host/Huawei/VRP/Version");

reference = make_nested_list(
    make_array(
      "series", make_list("^DP300$"),
      "checks", make_nested_list(
        make_array("vuln", "V500R002C00", "fix", "Upgrade to version V500R002C00SPCb00.")
      )
    ),
    make_array(
      "series", make_list("^RP200$"),
      "checks", make_nested_list(
        make_array("vuln", "V500R002C00", "fix", "Upgrade to version V600R006C00SPC400", "patches", make_list("TEX0")),
        make_array("vuln", "V600R006C00", "fix", "Upgrade to version V600R006C00SPC400", "patches", make_list("TEX0"))
      )
    ),
    make_array(
      "series", make_list("^TE[36]0$"),
      "checks", make_nested_list(
        make_array("vuln", "V100R001C10", "fix", "Upgrade to version V600R006C00SPC400", "patches", make_list("TEX0")),
        make_array("vuln", "V500R002C00", "fix", "Upgrade to version V600R006C00SPC400", "patches", make_list("TEX0")),
        make_array("vuln", "V600R006C00", "fix", "Upgrade to version V600R006C00SPC400", "patches", make_list("TEX0"))
      )
    ),
    make_array(
      "series", make_list("^TE[45]0$"),
      "checks", make_nested_list(
        make_array("vuln", "V100R001C10", "fix", "Upgrade to version V600R006C00SPC400", "patches", make_list("TEX0")),
        make_array("vuln", "V500R002C00", "fix", "Upgrade to version V600R006C00SPC400", "patches", make_list("TEX0")),
        make_array("vuln", "V600R006C00", "fix", "Upgrade to version V600R006C00SPC400", "patches", make_list("TEX0"))
      )
    )
);

huawei_check_and_report(
  model:model,
  series:series,
  version:version,
  reference:reference,
  patchlist:patchlist,
  severity:SECURITY_WARNING
);

CVSS2

5.5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

SINGLE

Confidentiality Impact

NONE

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

AV:N/AC:L/Au:S/C:N/I:P/A:P

CVSS3

5.4

Attack Vector

NETWORK

Attack Complexity

LOW

Privileges Required

LOW

User Interaction

NONE

Scope

UNCHANGED

Confidentiality Impact

NONE

Integrity Impact

LOW

Availability Impact

LOW

CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L

AI Score

4.8

Confidence

High

EPSS

0.001

Percentile

43.9%

Related for HUAWEI-SA-20180207-01-SOAP-EN.NASL