ID EULEROS_SA-2017-1278.NASL Type nessus Reporter This script is Copyright (C) 2017-2021 and is owned by Tenable, Inc. or an Affiliate thereof. Modified 2017-11-02T00:00:00
Description
According to the versions of the binutils packages installed, the
EulerOS installation on the remote host is affected by the following
vulnerabilities :
The process_version_sections function in readelf.c in
GNU Binutils 2.29 allows attackers to cause a denial of
service (Integer Overflow, and hang because of a
time-consuming loop) or possibly have unspecified other
impact via a crafted binary file with invalid values of
ent.vn_next, during 'readelf -a'
execution.(CVE-2017-14333)
dwarf1.c in the Binary File Descriptor (BFD) library
(aka libbfd), as distributed in GNU Binutils 2.29,
mishandles pointers, which allows remote attackers to
cause a denial of service (application crash) or
possibly have unspecified other impact via a crafted
ELF file, related to parse_die and parse_line_table, as
demonstrated by a parse_die heap-based buffer
over-read.(CVE-2017-15020)
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.
#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#
include('deprecated_nasl_level.inc');
include('compat.inc');
if (description)
{
script_id(104331);
script_version("3.14");
script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/06");
script_cve_id(
"CVE-2017-14333",
"CVE-2017-15020"
);
script_name(english:"EulerOS 2.0 SP1 : binutils (EulerOS-SA-2017-1278)");
script_summary(english:"Checks the rpm output for the updated packages.");
script_set_attribute(attribute:"synopsis", value:
"The remote EulerOS host is missing multiple security updates.");
script_set_attribute(attribute:"description", value:
"According to the versions of the binutils packages installed, the
EulerOS installation on the remote host is affected by the following
vulnerabilities :
- The process_version_sections function in readelf.c in
GNU Binutils 2.29 allows attackers to cause a denial of
service (Integer Overflow, and hang because of a
time-consuming loop) or possibly have unspecified other
impact via a crafted binary file with invalid values of
ent.vn_next, during 'readelf -a'
execution.(CVE-2017-14333)
- dwarf1.c in the Binary File Descriptor (BFD) library
(aka libbfd), as distributed in GNU Binutils 2.29,
mishandles pointers, which allows remote attackers to
cause a denial of service (application crash) or
possibly have unspecified other impact via a crafted
ELF file, related to parse_die and parse_line_table, as
demonstrated by a parse_die heap-based buffer
over-read.(CVE-2017-15020)
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-2017-1278
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?df560e70");
script_set_attribute(attribute:"solution", value:
"Update the affected binutils packages.");
script_set_cvss_base_vector("CVSS2#AV:N/AC:M/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:L/AC:L/PR:N/UI:R/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:"patch_publication_date", value:"2017/11/01");
script_set_attribute(attribute:"plugin_publication_date", value:"2017/11/02");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:binutils");
script_set_attribute(attribute:"cpe", value:"p-cpe:/a:huawei:euleros:binutils-devel");
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) 2017-2021 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 !~ "^(1)$") audit(AUDIT_OS_NOT, "EulerOS 2.0 SP1");
uvp = get_kb_item("Host/EulerOS/uvp_version");
if (!empty_or_null(uvp)) audit(AUDIT_OS_NOT, "EulerOS 2.0 SP1", "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 = ["binutils-2.23.52.0.1-55.h3",
"binutils-devel-2.23.52.0.1-55.h3"];
foreach (pkg in pkgs)
if (rpm_check(release:"EulerOS-2.0", sp:"1", 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, "binutils");
}
{"id": "EULEROS_SA-2017-1278.NASL", "bulletinFamily": "scanner", "title": "EulerOS 2.0 SP1 : binutils (EulerOS-SA-2017-1278)", "description": "According to the versions of the binutils packages installed, the\nEulerOS installation on the remote host is affected by the following\nvulnerabilities :\n\n - The process_version_sections function in readelf.c in\n GNU Binutils 2.29 allows attackers to cause a denial of\n service (Integer Overflow, and hang because of a\n time-consuming loop) or possibly have unspecified other\n impact via a crafted binary file with invalid values of\n ent.vn_next, during 'readelf -a'\n execution.(CVE-2017-14333)\n\n - dwarf1.c in the Binary File Descriptor (BFD) library\n (aka libbfd), as distributed in GNU Binutils 2.29,\n mishandles pointers, which allows remote attackers to\n cause a denial of service (application crash) or\n possibly have unspecified other impact via a crafted\n ELF file, related to parse_die and parse_line_table, as\n demonstrated by a parse_die heap-based buffer\n over-read.(CVE-2017-15020)\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the EulerOS security advisory. Tenable\nhas attempted to automatically clean and format it as much as possible\nwithout introducing additional issues.", "published": "2017-11-02T00:00:00", "modified": "2017-11-02T00:00:00", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}, "href": "https://www.tenable.com/plugins/nessus/104331", "reporter": "This script is Copyright (C) 2017-2021 and is owned by Tenable, Inc. or an Affiliate thereof.", "references": ["http://www.nessus.org/u?df560e70"], "cvelist": ["CVE-2017-15020", "CVE-2017-14333"], "type": "nessus", "lastseen": "2021-01-07T08:52:42", "edition": 25, "viewCount": 4, "enchantments": {"dependencies": {"references": [{"type": "cve", "idList": ["CVE-2017-15020", "CVE-2017-14333"]}, {"type": "openvas", "idList": ["OPENVAS:1361412562311220191431", "OPENVAS:1361412562311220171278", "OPENVAS:1361412562311220171279"]}, {"type": "nessus", "idList": ["EULEROS_SA-2019-1431.NASL", "SUSE_SU-2017-3170-1.NASL", "EULEROS_SA-2017-1279.NASL", "GENTOO_GLSA-201801-01.NASL", "PHOTONOS_PHSA-2017-0038.NASL", "SUSE_SU-2018-0053-1.NASL", "OPENSUSE-2017-1330.NASL"]}, {"type": "gentoo", "idList": ["GLSA-201801-01"]}], "modified": "2021-01-07T08:52:42", "rev": 2}, "score": {"value": 6.9, "vector": "NONE", "modified": "2021-01-07T08:52:42", "rev": 2}, "vulnersScore": 6.9}, "sourceData": "#%NASL_MIN_LEVEL 70300\n#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude('deprecated_nasl_level.inc');\ninclude('compat.inc');\n\nif (description)\n{\n script_id(104331);\n script_version(\"3.14\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/06\");\n\n script_cve_id(\n \"CVE-2017-14333\",\n \"CVE-2017-15020\"\n );\n\n script_name(english:\"EulerOS 2.0 SP1 : binutils (EulerOS-SA-2017-1278)\");\n script_summary(english:\"Checks the rpm output for the updated packages.\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"The remote EulerOS host is missing multiple security updates.\");\n script_set_attribute(attribute:\"description\", value:\n\"According to the versions of the binutils packages installed, the\nEulerOS installation on the remote host is affected by the following\nvulnerabilities :\n\n - The process_version_sections function in readelf.c in\n GNU Binutils 2.29 allows attackers to cause a denial of\n service (Integer Overflow, and hang because of a\n time-consuming loop) or possibly have unspecified other\n impact via a crafted binary file with invalid values of\n ent.vn_next, during 'readelf -a'\n execution.(CVE-2017-14333)\n\n - dwarf1.c in the Binary File Descriptor (BFD) library\n (aka libbfd), as distributed in GNU Binutils 2.29,\n mishandles pointers, which allows remote attackers to\n cause a denial of service (application crash) or\n possibly have unspecified other impact via a crafted\n ELF file, related to parse_die and parse_line_table, as\n demonstrated by a parse_die heap-based buffer\n over-read.(CVE-2017-15020)\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the EulerOS security advisory. Tenable\nhas attempted to automatically clean and format it as much as possible\nwithout introducing additional issues.\");\n # https://developer.huaweicloud.com/ict/en/site-euleros/euleros/security-advisories/EulerOS-SA-2017-1278\n script_set_attribute(attribute:\"see_also\", value:\"http://www.nessus.org/u?df560e70\");\n script_set_attribute(attribute:\"solution\", value:\n\"Update the affected binutils packages.\");\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:M/Au:N/C:P/I:P/A:P\");\n script_set_cvss_temporal_vector(\"CVSS2#E:U/RL:OF/RC:C\");\n script_set_cvss3_base_vector(\"CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H\");\n script_set_cvss3_temporal_vector(\"CVSS:3.0/E:U/RL:O/RC:C\");\n\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2017/11/01\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2017/11/02\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:huawei:euleros:binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:huawei:euleros:binutils-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:huawei:euleros:2.0\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"Huawei Local Security Checks\");\n\n script_copyright(english:\"This script is Copyright (C) 2017-2021 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/EulerOS/release\", \"Host/EulerOS/rpm-list\", \"Host/EulerOS/sp\");\n script_exclude_keys(\"Host/EulerOS/uvp_version\");\n\n exit(0);\n}\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"rpm.inc\");\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\n\nrelease = get_kb_item(\"Host/EulerOS/release\");\nif (isnull(release) || release !~ \"^EulerOS\") audit(AUDIT_OS_NOT, \"EulerOS\");\nif (release !~ \"^EulerOS release 2\\.0(\\D|$)\") audit(AUDIT_OS_NOT, \"EulerOS 2.0\");\n\nsp = get_kb_item(\"Host/EulerOS/sp\");\nif (isnull(sp) || sp !~ \"^(1)$\") audit(AUDIT_OS_NOT, \"EulerOS 2.0 SP1\");\n\nuvp = get_kb_item(\"Host/EulerOS/uvp_version\");\nif (!empty_or_null(uvp)) audit(AUDIT_OS_NOT, \"EulerOS 2.0 SP1\", \"EulerOS UVP \" + uvp);\n\nif (!get_kb_item(\"Host/EulerOS/rpm-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\ncpu = get_kb_item(\"Host/cpu\");\nif (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);\nif (\"x86_64\" >!< cpu && cpu !~ \"^i[3-6]86$\" && \"aarch64\" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, \"EulerOS\", cpu);\nif (\"x86_64\" >!< cpu && cpu !~ \"^i[3-6]86$\") audit(AUDIT_ARCH_NOT, \"i686 / x86_64\", cpu);\n\nflag = 0;\n\npkgs = [\"binutils-2.23.52.0.1-55.h3\",\n \"binutils-devel-2.23.52.0.1-55.h3\"];\n\nforeach (pkg in pkgs)\n if (rpm_check(release:\"EulerOS-2.0\", sp:\"1\", reference:pkg)) flag++;\n\nif (flag)\n{\n security_report_v4(\n port : 0,\n severity : SECURITY_WARNING,\n extra : rpm_report_get()\n );\n exit(0);\n}\nelse\n{\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"binutils\");\n}\n", "naslFamily": "Huawei Local Security Checks", "pluginID": "104331", "cpe": ["p-cpe:/a:huawei:euleros:binutils-devel", "p-cpe:/a:huawei:euleros:binutils", "cpe:/o:huawei:euleros:2.0"], "scheme": null, "cvss3": {"score": 7.8, "vector": "AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"}}
{"cve": [{"lastseen": "2020-10-03T13:07:35", "description": "The process_version_sections function in readelf.c in GNU Binutils 2.29 allows attackers to cause a denial of service (Integer Overflow, and hang because of a time-consuming loop) or possibly have unspecified other impact via a crafted binary file with invalid values of ent.vn_next, during \"readelf -a\" execution.", "edition": 3, "cvss3": {"exploitabilityScore": 1.8, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "baseScore": 7.8, "privilegesRequired": "NONE", "vectorString": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "userInteraction": "REQUIRED", "version": "3.0"}, "impactScore": 5.9}, "published": "2017-09-12T08:29:00", "title": "CVE-2017-14333", "type": "cve", "cwe": ["CWE-190"], "bulletinFamily": "NVD", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "NONE", "availabilityImpact": "PARTIAL", "integrityImpact": "NONE", "baseScore": 4.3, "vectorString": "AV:N/AC:M/Au:N/C:N/I:N/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 2.9, "obtainUserPrivilege": false}, "cvelist": ["CVE-2017-14333"], "modified": "2018-01-09T02:29:00", "cpe": ["cpe:/a:gnu:binutils:2.29"], "id": "CVE-2017-14333", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-14333", "cvss": {"score": 4.3, "vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P"}, "cpe23": ["cpe:2.3:a:gnu:binutils:2.29:*:*:*:*:*:*:*"]}, {"lastseen": "2020-10-03T13:07:36", "description": "dwarf1.c in the Binary File Descriptor (BFD) library (aka libbfd), as distributed in GNU Binutils 2.29, mishandles pointers, which allows remote attackers to cause a denial of service (application crash) or possibly have unspecified other impact via a crafted ELF file, related to parse_die and parse_line_table, as demonstrated by a parse_die heap-based buffer over-read.", "edition": 4, "cvss3": {"exploitabilityScore": 1.8, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "baseScore": 7.8, "privilegesRequired": "NONE", "vectorString": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "userInteraction": "REQUIRED", "version": "3.0"}, "impactScore": 5.9}, "published": "2017-10-05T01:29:00", "title": "CVE-2017-15020", "type": "cve", "cwe": ["CWE-125"], "bulletinFamily": "NVD", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "PARTIAL", "availabilityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "baseScore": 6.8, "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 6.4, "obtainUserPrivilege": false}, "cvelist": ["CVE-2017-15020"], "modified": "2019-10-03T00:03:00", "cpe": ["cpe:/a:gnu:binutils:2.29"], "id": "CVE-2017-15020", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-15020", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}, "cpe23": ["cpe:2.3:a:gnu:binutils:2.29:*:*:*:*:*:*:*"]}], "openvas": [{"lastseen": "2020-01-27T18:40:21", "bulletinFamily": "scanner", "cvelist": ["CVE-2017-15020", "CVE-2017-14333"], "description": "The remote host is missing an update for the Huawei EulerOS\n ", "modified": "2020-01-23T00:00:00", "published": "2020-01-23T00:00:00", "id": "OPENVAS:1361412562311220171278", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562311220171278", "type": "openvas", "title": "Huawei EulerOS: Security Advisory for binutils (EulerOS-SA-2017-1278)", "sourceData": "# Copyright (C) 2020 Greenbone Networks GmbH\n# Text descriptions are largely excerpted from the referenced\n# advisory, and are Copyright (C) the respective author(s)\n#\n# SPDX-License-Identifier: GPL-2.0-or-later\n#\n# This program is free software; you can redistribute it and/or\n# modify it under the terms of the GNU General Public License\n# as published by the Free Software Foundation; either version 2\n# of the License, or (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.1.2.2017.1278\");\n script_version(\"2020-01-23T11:02:57+0000\");\n script_cve_id(\"CVE-2017-14333\", \"CVE-2017-15020\");\n script_tag(name:\"cvss_base\", value:\"6.8\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:M/Au:N/C:P/I:P/A:P\");\n script_tag(name:\"last_modification\", value:\"2020-01-23 11:02:57 +0000 (Thu, 23 Jan 2020)\");\n script_tag(name:\"creation_date\", value:\"2020-01-23 11:02:57 +0000 (Thu, 23 Jan 2020)\");\n script_name(\"Huawei EulerOS: Security Advisory for binutils (EulerOS-SA-2017-1278)\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2020 Greenbone Networks GmbH\");\n script_family(\"Huawei EulerOS Local Security Checks\");\n script_dependencies(\"gb_huawei_euleros_consolidation.nasl\");\n script_mandatory_keys(\"ssh/login/euleros\", \"ssh/login/rpms\", re:\"ssh/login/release=EULEROS-2\\.0SP1\");\n\n script_xref(name:\"EulerOS-SA\", value:\"2017-1278\");\n script_xref(name:\"URL\", value:\"https://developer.huaweicloud.com/ict/en/site-euleros/euleros/security-advisories/EulerOS-SA-2017-1278\");\n\n script_tag(name:\"summary\", value:\"The remote host is missing an update for the Huawei EulerOS\n 'binutils' package(s) announced via the EulerOS-SA-2017-1278 advisory.\");\n\n script_tag(name:\"vuldetect\", value:\"Checks if a vulnerable package version is present on the target host.\");\n\n script_tag(name:\"insight\", value:\"The process_version_sections function in readelf.c in GNU Binutils 2.29 allows attackers to cause a denial of service (Integer Overflow, and hang because of a time-consuming loop) or possibly have unspecified other impact via a crafted binary file with invalid values of ent.vn_next, during 'readelf -a' execution.(CVE-2017-14333)\n\ndwarf1.c in the Binary File Descriptor (BFD) library (aka libbfd), as distributed in GNU Binutils 2.29, mishandles pointers, which allows remote attackers to cause a denial of service (application crash) or possibly have unspecified other impact via a crafted ELF file, related to parse_die and parse_line_table, as demonstrated by a parse_die heap-based buffer over-read.(CVE-2017-15020)\");\n\n script_tag(name:\"affected\", value:\"'binutils' package(s) on Huawei EulerOS V2.0SP1.\");\n\n script_tag(name:\"solution\", value:\"Please install the updated package(s).\");\n\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n script_tag(name:\"qod_type\", value:\"package\");\n\n exit(0);\n}\n\ninclude(\"revisions-lib.inc\");\ninclude(\"pkg-lib-rpm.inc\");\n\nrelease = rpm_get_ssh_release();\nif(!release)\n exit(0);\n\nres = \"\";\nreport = \"\";\n\nif(release == \"EULEROS-2.0SP1\") {\n\n if(!isnull(res = isrpmvuln(pkg:\"binutils\", rpm:\"binutils~2.23.52.0.1~55.h3\", rls:\"EULEROS-2.0SP1\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"binutils-devel\", rpm:\"binutils-devel~2.23.52.0.1~55.h3\", rls:\"EULEROS-2.0SP1\"))) {\n report += res;\n }\n\n if(report != \"\") {\n security_message(data:report);\n } else if (__pkg_match) {\n exit(99);\n }\n exit(0);\n}\n\nexit(0);", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-01-27T18:34:18", "bulletinFamily": "scanner", "cvelist": ["CVE-2017-15020", "CVE-2017-14333"], "description": "The remote host is missing an update for the Huawei EulerOS\n ", "modified": "2020-01-23T00:00:00", "published": "2020-01-23T00:00:00", "id": "OPENVAS:1361412562311220171279", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562311220171279", "type": "openvas", "title": "Huawei EulerOS: Security Advisory for binutils (EulerOS-SA-2017-1279)", "sourceData": "# Copyright (C) 2020 Greenbone Networks GmbH\n# Text descriptions are largely excerpted from the referenced\n# advisory, and are Copyright (C) the respective author(s)\n#\n# SPDX-License-Identifier: GPL-2.0-or-later\n#\n# This program is free software; you can redistribute it and/or\n# modify it under the terms of the GNU General Public License\n# as published by the Free Software Foundation; either version 2\n# of the License, or (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.1.2.2017.1279\");\n script_version(\"2020-01-23T11:02:59+0000\");\n script_cve_id(\"CVE-2017-14333\", \"CVE-2017-15020\");\n script_tag(name:\"cvss_base\", value:\"6.8\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:M/Au:N/C:P/I:P/A:P\");\n script_tag(name:\"last_modification\", value:\"2020-01-23 11:02:59 +0000 (Thu, 23 Jan 2020)\");\n script_tag(name:\"creation_date\", value:\"2020-01-23 11:02:59 +0000 (Thu, 23 Jan 2020)\");\n script_name(\"Huawei EulerOS: Security Advisory for binutils (EulerOS-SA-2017-1279)\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2020 Greenbone Networks GmbH\");\n script_family(\"Huawei EulerOS Local Security Checks\");\n script_dependencies(\"gb_huawei_euleros_consolidation.nasl\");\n script_mandatory_keys(\"ssh/login/euleros\", \"ssh/login/rpms\", re:\"ssh/login/release=EULEROS-2\\.0SP2\");\n\n script_xref(name:\"EulerOS-SA\", value:\"2017-1279\");\n script_xref(name:\"URL\", value:\"https://developer.huaweicloud.com/ict/en/site-euleros/euleros/security-advisories/EulerOS-SA-2017-1279\");\n\n script_tag(name:\"summary\", value:\"The remote host is missing an update for the Huawei EulerOS\n 'binutils' package(s) announced via the EulerOS-SA-2017-1279 advisory.\");\n\n script_tag(name:\"vuldetect\", value:\"Checks if a vulnerable package version is present on the target host.\");\n\n script_tag(name:\"insight\", value:\"The process_version_sections function in readelf.c in GNU Binutils 2.29 allows attackers to cause a denial of service (Integer Overflow, and hang because of a time-consuming loop) or possibly have unspecified other impact via a crafted binary file with invalid values of ent.vn_next, during 'readelf -a' execution.(CVE-2017-14333)\n\ndwarf1.c in the Binary File Descriptor (BFD) library (aka libbfd), as distributed in GNU Binutils 2.29, mishandles pointers, which allows remote attackers to cause a denial of service (application crash) or possibly have unspecified other impact via a crafted ELF file, related to parse_die and parse_line_table, as demonstrated by a parse_die heap-based buffer over-read.(CVE-2017-15020)\");\n\n script_tag(name:\"affected\", value:\"'binutils' package(s) on Huawei EulerOS V2.0SP2.\");\n\n script_tag(name:\"solution\", value:\"Please install the updated package(s).\");\n\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n script_tag(name:\"qod_type\", value:\"package\");\n\n exit(0);\n}\n\ninclude(\"revisions-lib.inc\");\ninclude(\"pkg-lib-rpm.inc\");\n\nrelease = rpm_get_ssh_release();\nif(!release)\n exit(0);\n\nres = \"\";\nreport = \"\";\n\nif(release == \"EULEROS-2.0SP2\") {\n\n if(!isnull(res = isrpmvuln(pkg:\"binutils\", rpm:\"binutils~2.23.52.0.1~55.h2\", rls:\"EULEROS-2.0SP2\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"binutils-devel\", rpm:\"binutils-devel~2.23.52.0.1~55.h2\", rls:\"EULEROS-2.0SP2\"))) {\n report += res;\n }\n\n if(report != \"\") {\n security_message(data:report);\n } else if (__pkg_match) {\n exit(99);\n }\n exit(0);\n}\n\nexit(0);", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-01-27T18:39:46", "bulletinFamily": "scanner", "cvelist": ["CVE-2014-8501", "CVE-2014-8485", "CVE-2018-7642", "CVE-2018-7208", "CVE-2017-15020", "CVE-2014-8504", "CVE-2018-19932", "CVE-2014-8738", "CVE-2014-8737", "CVE-2018-7569", "CVE-2017-16828", "CVE-2017-16826", "CVE-2018-7568", "CVE-2014-8484", "CVE-2017-16831", "CVE-2018-7643", "CVE-2014-8502", "CVE-2017-16827", "CVE-2014-8503", "CVE-2018-8945"], "description": "The remote host is missing an update for the Huawei EulerOS\n ", "modified": "2020-01-23T00:00:00", "published": "2020-01-23T00:00:00", "id": "OPENVAS:1361412562311220191431", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562311220191431", "type": "openvas", "title": "Huawei EulerOS: Security Advisory for binutils (EulerOS-SA-2019-1431)", "sourceData": "# Copyright (C) 2020 Greenbone Networks GmbH\n# Text descriptions are largely excerpted from the referenced\n# advisory, and are Copyright (C) the respective author(s)\n#\n# SPDX-License-Identifier: GPL-2.0-or-later\n#\n# This program is free software; you can redistribute it and/or\n# modify it under the terms of the GNU General Public License\n# as published by the Free Software Foundation; either version 2\n# of the License, or (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.1.2.2019.1431\");\n script_version(\"2020-01-23T11:45:28+0000\");\n script_cve_id(\"CVE-2014-8484\", \"CVE-2014-8485\", \"CVE-2014-8501\", \"CVE-2014-8502\", \"CVE-2014-8503\", \"CVE-2014-8504\", \"CVE-2014-8737\", \"CVE-2014-8738\", \"CVE-2017-15020\", \"CVE-2017-16826\", \"CVE-2017-16827\", \"CVE-2017-16828\", \"CVE-2017-16831\", \"CVE-2018-19932\", \"CVE-2018-7208\", \"CVE-2018-7568\", \"CVE-2018-7569\", \"CVE-2018-7642\", \"CVE-2018-7643\", \"CVE-2018-8945\");\n script_tag(name:\"cvss_base\", value:\"7.5\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:L/Au:N/C:P/I:P/A:P\");\n script_tag(name:\"last_modification\", value:\"2020-01-23 11:45:28 +0000 (Thu, 23 Jan 2020)\");\n script_tag(name:\"creation_date\", value:\"2020-01-23 11:45:28 +0000 (Thu, 23 Jan 2020)\");\n script_name(\"Huawei EulerOS: Security Advisory for binutils (EulerOS-SA-2019-1431)\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2020 Greenbone Networks GmbH\");\n script_family(\"Huawei EulerOS Local Security Checks\");\n script_dependencies(\"gb_huawei_euleros_consolidation.nasl\");\n script_mandatory_keys(\"ssh/login/euleros\", \"ssh/login/rpms\", re:\"ssh/login/release=EULEROSVIRT-3\\.0\\.1\\.0\");\n\n script_xref(name:\"EulerOS-SA\", value:\"2019-1431\");\n script_xref(name:\"URL\", value:\"https://developer.huaweicloud.com/ict/en/site-euleros/euleros/security-advisories/EulerOS-SA-2019-1431\");\n\n script_tag(name:\"summary\", value:\"The remote host is missing an update for the Huawei EulerOS\n 'binutils' package(s) announced via the EulerOS-SA-2019-1431 advisory.\");\n\n script_tag(name:\"vuldetect\", value:\"Checks if a vulnerable package version is present on the target host.\");\n\n script_tag(name:\"insight\", value:\"An integer wraparound has been discovered in the Binary File Descriptor (BFD) library distributed in GNU Binutils up to version 2.30. An attacker could cause a crash by providing an ELF file with corrupted DWARF debug information.(CVE-2018-7568)\n\nA stack-based buffer overflow flaw was found in the way various binutils utilities processed certain files. If a user were tricked into processing a specially crafted file, it could cause the utility used to process that file to crash or, potentially, execute arbitrary code with the privileges of the user running that utility.(CVE-2014-8501)\n\nThe coff_slurp_line_table function in coffcode.h in the Binary File Descriptor (BFD) library (aka libbfd), as distributed in GNU Binutils 2.29.1, allows remote attackers to cause a denial of service (invalid memory access and application crash) or possibly have unspecified other impact via a crafted PE file.(CVE-2017-16826)\n\nIt was found that the fix for the CVE-2014-8485 issue was incomplete: a heap-based buffer overflow in the objdump utility could cause it to crash or, potentially, execute arbitrary code with the privileges of the user running objdump when processing specially crafted files.(CVE-2014-8502)\n\nA directory traversal flaw was found in the strip and objcopy utilities. A specially crafted file could cause strip or objdump to overwrite an arbitrary file writable by the user running either of these utilities.(CVE-2014-8737)\n\nThe bfd_section_from_shdr function in elf.c in the Binary File Descriptor (BFD) library (aka libbfd), as distributed in GNU Binutils 2.30, allows remote attackers to cause a denial of service (segmentation fault) via a large attribute section.(CVE-2018-8945)\n\nIn the coff_pointerize_aux function in coffgen.c in the Binary File Descriptor (BFD) library (aka libbfd), as distributed in GNU Binutils 2.30, an index is not validated, which allows remote attackers to cause a denial of service (segmentation fault) or possibly have unspecified other impact via a crafted file, as demonstrated by objcopy of a COFF object.(CVE-2018-7208)\n\ndwarf1.c in the Binary File Descriptor (BFD) library (aka libbfd), as distributed in GNU Binutils 2.29, mishandles pointers, which allows remote attackers to cause a denial of service (application crash) or possibly have unspecified other impact via a crafted ELF file, related to parse_die and parse_line_table, as demonstrated by a parse_die heap-based buffer over-read.(CVE-2017-15020)\n\nA buffer overflow flaw was found in the way various binutils utilities processed certain files. If a user were tricked into processing a specially crafted f ...\n\n Description truncated. Please see the references for more information.\");\n\n script_tag(name:\"affected\", value:\"'binutils' package(s) on Huawei EulerOS Virtualization 3.0.1.0.\");\n\n script_tag(name:\"solution\", value:\"Please install the updated package(s).\");\n\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n script_tag(name:\"qod_type\", value:\"package\");\n\n exit(0);\n}\n\ninclude(\"revisions-lib.inc\");\ninclude(\"pkg-lib-rpm.inc\");\n\nrelease = rpm_get_ssh_release();\nif(!release)\n exit(0);\n\nres = \"\";\nreport = \"\";\n\nif(release == \"EULEROSVIRT-3.0.1.0\") {\n\n if(!isnull(res = isrpmvuln(pkg:\"binutils\", rpm:\"binutils~2.27~28.base.1.h15\", rls:\"EULEROSVIRT-3.0.1.0\"))) {\n report += res;\n }\n\n if(report != \"\") {\n security_message(data:report);\n } else if (__pkg_match) {\n exit(99);\n }\n exit(0);\n}\n\nexit(0);", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}], "nessus": [{"lastseen": "2021-01-07T08:52:42", "description": "According to the versions of the binutils packages installed, the\nEulerOS installation on the remote host is affected by the following\nvulnerabilities :\n\n - The process_version_sections function in readelf.c in\n GNU Binutils 2.29 allows attackers to cause a denial of\n service (Integer Overflow, and hang because of a\n time-consuming loop) or possibly have unspecified other\n impact via a crafted binary file with invalid values of\n ent.vn_next, during 'readelf -a'\n execution.(CVE-2017-14333)\n\n - dwarf1.c in the Binary File Descriptor (BFD) library\n (aka libbfd), as distributed in GNU Binutils 2.29,\n mishandles pointers, which allows remote attackers to\n cause a denial of service (application crash) or\n possibly have unspecified other impact via a crafted\n ELF file, related to parse_die and parse_line_table, as\n demonstrated by a parse_die heap-based buffer\n over-read.(CVE-2017-15020)\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the EulerOS security advisory. Tenable\nhas attempted to automatically clean and format it as much as possible\nwithout introducing additional issues.", "edition": 24, "cvss3": {"score": 7.8, "vector": "AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"}, "published": "2017-11-02T00:00:00", "title": "EulerOS 2.0 SP2 : binutils (EulerOS-SA-2017-1279)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2017-15020", "CVE-2017-14333"], "modified": "2017-11-02T00:00:00", "cpe": ["p-cpe:/a:huawei:euleros:binutils-devel", "p-cpe:/a:huawei:euleros:binutils", "cpe:/o:huawei:euleros:2.0"], "id": "EULEROS_SA-2017-1279.NASL", "href": "https://www.tenable.com/plugins/nessus/104332", "sourceData": "#%NASL_MIN_LEVEL 70300\n#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude('deprecated_nasl_level.inc');\ninclude('compat.inc');\n\nif (description)\n{\n script_id(104332);\n script_version(\"3.13\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/06\");\n\n script_cve_id(\n \"CVE-2017-14333\",\n \"CVE-2017-15020\"\n );\n\n script_name(english:\"EulerOS 2.0 SP2 : binutils (EulerOS-SA-2017-1279)\");\n script_summary(english:\"Checks the rpm output for the updated packages.\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"The remote EulerOS host is missing multiple security updates.\");\n script_set_attribute(attribute:\"description\", value:\n\"According to the versions of the binutils packages installed, the\nEulerOS installation on the remote host is affected by the following\nvulnerabilities :\n\n - The process_version_sections function in readelf.c in\n GNU Binutils 2.29 allows attackers to cause a denial of\n service (Integer Overflow, and hang because of a\n time-consuming loop) or possibly have unspecified other\n impact via a crafted binary file with invalid values of\n ent.vn_next, during 'readelf -a'\n execution.(CVE-2017-14333)\n\n - dwarf1.c in the Binary File Descriptor (BFD) library\n (aka libbfd), as distributed in GNU Binutils 2.29,\n mishandles pointers, which allows remote attackers to\n cause a denial of service (application crash) or\n possibly have unspecified other impact via a crafted\n ELF file, related to parse_die and parse_line_table, as\n demonstrated by a parse_die heap-based buffer\n over-read.(CVE-2017-15020)\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the EulerOS security advisory. Tenable\nhas attempted to automatically clean and format it as much as possible\nwithout introducing additional issues.\");\n # https://developer.huaweicloud.com/ict/en/site-euleros/euleros/security-advisories/EulerOS-SA-2017-1279\n script_set_attribute(attribute:\"see_also\", value:\"http://www.nessus.org/u?7aa5d71a\");\n script_set_attribute(attribute:\"solution\", value:\n\"Update the affected binutils packages.\");\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:M/Au:N/C:P/I:P/A:P\");\n script_set_cvss_temporal_vector(\"CVSS2#E:U/RL:OF/RC:C\");\n script_set_cvss3_base_vector(\"CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H\");\n script_set_cvss3_temporal_vector(\"CVSS:3.0/E:U/RL:O/RC:C\");\n\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2017/11/01\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2017/11/02\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:huawei:euleros:binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:huawei:euleros:binutils-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:huawei:euleros:2.0\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"Huawei Local Security Checks\");\n\n script_copyright(english:\"This script is Copyright (C) 2017-2021 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/EulerOS/release\", \"Host/EulerOS/rpm-list\", \"Host/EulerOS/sp\");\n script_exclude_keys(\"Host/EulerOS/uvp_version\");\n\n exit(0);\n}\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"rpm.inc\");\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\n\nrelease = get_kb_item(\"Host/EulerOS/release\");\nif (isnull(release) || release !~ \"^EulerOS\") audit(AUDIT_OS_NOT, \"EulerOS\");\nif (release !~ \"^EulerOS release 2\\.0(\\D|$)\") audit(AUDIT_OS_NOT, \"EulerOS 2.0\");\n\nsp = get_kb_item(\"Host/EulerOS/sp\");\nif (isnull(sp) || sp !~ \"^(2)$\") audit(AUDIT_OS_NOT, \"EulerOS 2.0 SP2\");\n\nuvp = get_kb_item(\"Host/EulerOS/uvp_version\");\nif (!empty_or_null(uvp)) audit(AUDIT_OS_NOT, \"EulerOS 2.0 SP2\", \"EulerOS UVP \" + uvp);\n\nif (!get_kb_item(\"Host/EulerOS/rpm-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\ncpu = get_kb_item(\"Host/cpu\");\nif (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);\nif (\"x86_64\" >!< cpu && cpu !~ \"^i[3-6]86$\" && \"aarch64\" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, \"EulerOS\", cpu);\nif (\"x86_64\" >!< cpu && cpu !~ \"^i[3-6]86$\") audit(AUDIT_ARCH_NOT, \"i686 / x86_64\", cpu);\n\nflag = 0;\n\npkgs = [\"binutils-2.23.52.0.1-55.h2\",\n \"binutils-devel-2.23.52.0.1-55.h2\"];\n\nforeach (pkg in pkgs)\n if (rpm_check(release:\"EulerOS-2.0\", sp:\"2\", reference:pkg)) flag++;\n\nif (flag)\n{\n security_report_v4(\n port : 0,\n severity : SECURITY_WARNING,\n extra : rpm_report_get()\n );\n exit(0);\n}\nelse\n{\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"binutils\");\n}\n", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2019-02-21T01:41:53", "description": "An update of [gnutls, c-ares, nginx, mercurial, linux, mesos, git, binutils, krb5, dnsmasq] packages for PhotonOS has been released.", "edition": 6, "published": "2018-08-17T00:00:00", "title": "Photon OS 1.0: Binutils / C / Dnsmasq / Git / Gnutls / Krb5 / Linux / Mercurial / Mesos / Nginx PHSA-2017-0038 (deprecated)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2017-14745", "CVE-2017-15020", "CVE-2017-14729", "CVE-2017-7529", "CVE-2017-11472", "CVE-2017-14867", "CVE-2017-13728", "CVE-2017-12799", "CVE-2017-1000381", "CVE-2017-10790", "CVE-2017-13704", "CVE-2017-1000116", "CVE-2017-7507", "CVE-2017-0379", "CVE-2017-12154", "CVE-2017-7687", "CVE-2017-11462"], "modified": "2019-02-07T00:00:00", "cpe": ["p-cpe:/a:vmware:photonos:mesos", "p-cpe:/a:vmware:photonos:mercurial", "p-cpe:/a:vmware:photonos:c", "p-cpe:/a:vmware:photonos:gnutls", "p-cpe:/a:vmware:photonos:git", "p-cpe:/a:vmware:photonos:linux", "p-cpe:/a:vmware:photonos:krb5", "p-cpe:/a:vmware:photonos:binutils", "cpe:/o:vmware:photonos:1.0", "p-cpe:/a:vmware:photonos:dnsmasq", "p-cpe:/a:vmware:photonos:nginx"], "id": "PHOTONOS_PHSA-2017-0038.NASL", "href": "https://www.tenable.com/plugins/index.php?view=single&id=111887", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n# @DEPRECATED@\n#\n# Disabled on 2/7/2019\n#\n\n# The descriptive text and package checks in this plugin were\n# extracted from VMware Security Advisory PHSA-2017-0038. The text\n# itself is copyright (C) VMware, Inc.\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(111887);\n script_version(\"1.2\");\n script_cvs_date(\"Date: 2019/02/07 18:59:50\");\n\n script_cve_id(\n \"CVE-2017-0379\",\n \"CVE-2017-7507\",\n \"CVE-2017-7529\",\n \"CVE-2017-7687\",\n \"CVE-2017-10790\",\n \"CVE-2017-11462\",\n \"CVE-2017-11472\",\n \"CVE-2017-12154\",\n \"CVE-2017-12799\",\n \"CVE-2017-13704\",\n \"CVE-2017-13728\",\n \"CVE-2017-14729\",\n \"CVE-2017-14745\",\n \"CVE-2017-14867\",\n \"CVE-2017-15020\",\n \"CVE-2017-1000116\",\n \"CVE-2017-1000381\"\n );\n\n script_name(english:\"Photon OS 1.0: Binutils / C / Dnsmasq / Git / Gnutls / Krb5 / Linux / Mercurial / Mesos / Nginx PHSA-2017-0038 (deprecated)\");\n script_summary(english:\"Checks the rpm output for the updated packages.\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"This plugin has been deprecated.\");\n script_set_attribute(attribute:\"description\", value:\n\"An update of [gnutls, c-ares, nginx, mercurial, linux, mesos, git,\nbinutils, krb5, dnsmasq] packages for PhotonOS has been released.\");\n # https://github.com/vmware/photon/wiki/Security-Updates-78\n script_set_attribute(attribute:\"see_also\", value:\"http://www.nessus.org/u?12da2a77\");\n script_set_attribute(attribute:\"solution\", value:\"n/a.\");\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:L/Au:S/C:C/I:C/A:C\");\n script_set_cvss3_base_vector(\"CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H\");\n script_set_attribute(attribute:\"cvss_score_source\", value:\"CVE-2017-14867\");\n\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2017/10/19\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2018/08/17\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:vmware:photonos:binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:vmware:photonos:c\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:vmware:photonos:dnsmasq\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:vmware:photonos:git\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:vmware:photonos:gnutls\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:vmware:photonos:krb5\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:vmware:photonos:linux\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:vmware:photonos:mercurial\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:vmware:photonos:mesos\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:vmware:photonos:nginx\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:vmware:photonos:1.0\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"PhotonOS Local Security Checks\");\n\n script_copyright(english:\"This script is Copyright (C) 2018-2019 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/PhotonOS/release\", \"Host/PhotonOS/rpm-list\");\n\n exit(0);\n}\n\nexit(0, \"This plugin has been deprecated.\");\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"rpm.inc\");\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\n\nrelease = get_kb_item(\"Host/PhotonOS/release\");\nif (isnull(release) || release !~ \"^VMware Photon\") audit(AUDIT_OS_NOT, \"PhotonOS\");\nif (release !~ \"^VMware Photon (?:Linux|OS) 1\\.0(\\D|$)\") audit(AUDIT_OS_NOT, \"PhotonOS 1.0\");\n\nif (!get_kb_item(\"Host/PhotonOS/rpm-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\ncpu = get_kb_item(\"Host/cpu\");\nif (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);\nif (\"x86_64\" >!< cpu && cpu !~ \"^i[3-6]86$\") audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, \"PhotonOS\", cpu);\n\nflag = 0;\n\npkgs = [\n \"binutils-2.29.1-1.ph1\",\n \"binutils-debuginfo-2.29.1-1.ph1\",\n \"binutils-devel-2.29.1-1.ph1\",\n \"c-ares-1.12.0-2.ph1\",\n \"c-ares-debuginfo-1.12.0-2.ph1\",\n \"c-ares-devel-1.12.0-2.ph1\",\n \"dnsmasq-2.76-3.ph1\",\n \"dnsmasq-debuginfo-2.76-3.ph1\",\n \"git-2.14.2-1.ph1\",\n \"git-debuginfo-2.14.2-1.ph1\",\n \"git-lang-2.14.2-1.ph1\",\n \"gnutls-3.5.15-1.ph1\",\n \"gnutls-debuginfo-3.5.15-1.ph1\",\n \"gnutls-devel-3.5.15-1.ph1\",\n \"krb5-1.15.2-1.ph1\",\n \"krb5-debuginfo-1.15.2-1.ph1\",\n \"linux-4.4.92-1.ph1\",\n \"linux-api-headers-4.4.92-1.ph1\",\n \"linux-debuginfo-4.4.92-1.ph1\",\n \"linux-dev-4.4.92-1.ph1\",\n \"linux-docs-4.4.92-1.ph1\",\n \"linux-drivers-gpu-4.4.92-1.ph1\",\n \"linux-esx-4.4.92-2.ph1\",\n \"linux-esx-debuginfo-4.4.92-2.ph1\",\n \"linux-esx-devel-4.4.92-2.ph1\",\n \"linux-esx-docs-4.4.92-2.ph1\",\n \"linux-oprofile-4.4.92-1.ph1\",\n \"linux-sound-4.4.92-1.ph1\",\n \"linux-tools-4.4.92-1.ph1\",\n \"mercurial-4.3.3-1.ph1\",\n \"mercurial-debuginfo-4.3.3-1.ph1\",\n \"mesos-1.2.2-1.ph1\",\n \"mesos-debuginfo-1.2.2-1.ph1\",\n \"mesos-devel-1.2.2-1.ph1\",\n \"mesos-python-1.2.2-1.ph1\",\n \"nginx-1.11.13-4.ph1\",\n \"nginx-debuginfo-1.11.13-4.ph1\"\n];\n\nforeach (pkg in pkgs)\n if (rpm_check(release:\"PhotonOS-1.0\", reference:pkg)) flag++;\n\nif (flag)\n{\n security_report_v4(\n port : 0,\n severity : SECURITY_HOLE,\n extra : rpm_report_get()\n );\n exit(0);\n}\nelse\n{\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"binutils / c / dnsmasq / git / gnutls / krb5 / linux / mercurial / mesos / nginx\");\n}\n", "cvss": {"score": 9.0, "vector": "AV:NETWORK/AC:LOW/Au:SINGLE_INSTANCE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2021-01-07T08:55:46", "description": "According to the versions of the binutils package installed, the\nEulerOS Virtualization installation on the remote host is affected by\nthe following vulnerabilities :\n\n - An integer wraparound has been discovered in the Binary\n File Descriptor (BFD) library distributed in GNU\n Binutils up to version 2.30. An attacker could cause a\n crash by providing an ELF file with corrupted DWARF\n debug information.(CVE-2018-7568)\n\n - A stack-based buffer overflow flaw was found in the way\n various binutils utilities processed certain files. If\n a user were tricked into processing a specially crafted\n file, it could cause the utility used to process that\n file to crash or, potentially, execute arbitrary code\n with the privileges of the user running that\n utility.(CVE-2014-8501)\n\n - The coff_slurp_line_table function in coffcode.h in the\n Binary File Descriptor (BFD) library (aka libbfd), as\n distributed in GNU Binutils 2.29.1, allows remote\n attackers to cause a denial of service (invalid memory\n access and application crash) or possibly have\n unspecified other impact via a crafted PE\n file.(CVE-2017-16826)\n\n - It was found that the fix for the CVE-2014-8485 issue\n was incomplete: a heap-based buffer overflow in the\n objdump utility could cause it to crash or,\n potentially, execute arbitrary code with the privileges\n of the user running objdump when processing specially\n crafted files.(CVE-2014-8502)\n\n - A directory traversal flaw was found in the strip and\n objcopy utilities. A specially crafted file could cause\n strip or objdump to overwrite an arbitrary file\n writable by the user running either of these\n utilities.(CVE-2014-8737)\n\n - The bfd_section_from_shdr function in elf.c in the\n Binary File Descriptor (BFD) library (aka libbfd), as\n distributed in GNU Binutils 2.30, allows remote\n attackers to cause a denial of service (segmentation\n fault) via a large attribute section.(CVE-2018-8945)\n\n - In the coff_pointerize_aux function in coffgen.c in the\n Binary File Descriptor (BFD) library (aka libbfd), as\n distributed in GNU Binutils 2.30, an index is not\n validated, which allows remote attackers to cause a\n denial of service (segmentation fault) or possibly have\n unspecified other impact via a crafted file, as\n demonstrated by objcopy of a COFF\n object.(CVE-2018-7208)\n\n - dwarf1.c in the Binary File Descriptor (BFD) library\n (aka libbfd), as distributed in GNU Binutils 2.29,\n mishandles pointers, which allows remote attackers to\n cause a denial of service (application crash) or\n possibly have unspecified other impact via a crafted\n ELF file, related to parse_die and parse_line_table, as\n demonstrated by a parse_die heap-based buffer\n over-read.(CVE-2017-15020)\n\n - A buffer overflow flaw was found in the way various\n binutils utilities processed certain files. If a user\n were tricked into processing a specially crafted file,\n it could cause the utility used to process that file to\n crash or, potentially, execute arbitrary code with the\n privileges of the user running that\n utility.(CVE-2014-8485)\n\n - An integer overflow flaw was found in the way the\n strings utility processed certain files. If a user were\n tricked into running the strings utility on a specially\n crafted file, it could cause the strings executable to\n crash.(CVE-2014-8484)\n\n - A heap-based buffer overflow flaw was found in the way\n certain binutils utilities processed archive files. If\n a user were tricked into processing a specially crafted\n archive file, it could cause the utility used to\n process that archive to crash or, potentially, execute\n arbitrary code with the privileges of the user running\n that utility.(CVE-2014-8738)\n\n - The swap_std_reloc_in function in aoutx.h in the Binary\n File Descriptor (BFD) library (aka libbfd), as\n distributed in GNU Binutils 2.30, allows remote\n attackers to cause a denial of service\n (aout_32_swap_std_reloc_out NULL pointer dereference\n and application crash) via a crafted ELF file, as\n demonstrated by objcopy.(CVE-2018-7642)\n\n - The display_debug_frames function in dwarf.c in GNU\n Binutils 2.29.1 allows remote attackers to cause a\n denial of service (integer overflow and heap-based\n buffer over-read, and application crash) or possibly\n have unspecified other impact via a crafted ELF file,\n related to print_debug_frame.(CVE-2017-16828)\n\n - A stack-based buffer overflow flaw was found in the\n SREC parser of the libbfd library. A specially crafted\n file could cause an application using the libbfd\n library to crash or, potentially, execute arbitrary\n code with the privileges of the user running that\n application.(CVE-2014-8504)\n\n - An integer wraparound has been discovered in the Binary\n File Descriptor (BFD) library distributed in GNU\n Binutils up to version 2.30. An attacker could cause a\n crash by providing an ELF file with corrupted DWARF\n debug information.(CVE-2018-7569)\n\n - A stack-based buffer overflow flaw was found in the way\n objdump processed IHEX files. A specially crafted IHEX\n file could cause objdump to crash or, potentially,\n execute arbitrary code with the privileges of the user\n running objdump.(CVE-2014-8503)\n\n - coffgen.c in the Binary File Descriptor (BFD) library\n (aka libbfd), as distributed in GNU Binutils 2.29.1,\n does not validate the symbol count, which allows remote\n attackers to cause a denial of service (integer\n overflow and application crash, or excessive memory\n allocation) or possibly have unspecified other impact\n via a crafted PE file.(CVE-2017-16831)\n\n - The aout_get_external_symbols function in aoutx.h in\n the Binary File Descriptor (BFD) library (aka libbfd),\n as distributed in GNU Binutils 2.29.1, allows remote\n attackers to cause a denial of service (slurp_symtab\n invalid free and application crash) or possibly have\n unspecified other impact via a crafted ELF\n file.(CVE-2017-16827)\n\n - The display_debug_ranges function in dwarf.c in GNU\n Binutils 2.30 allows remote attackers to cause a denial\n of service (integer overflow and application crash) or\n possibly have unspecified other impact via a crafted\n ELF file, as demonstrated by objdump.(CVE-2018-7643)\n\n - An issue was discovered in the Binary File Descriptor\n (BFD) library (aka libbfd), as distributed in GNU\n Binutils through 2.31. There is an integer overflow and\n infinite loop caused by the IS_CONTAINED_BY_LMA macro\n in elf.c.(CVE-2018-19932)\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the EulerOS security advisory. Tenable\nhas attempted to automatically clean and format it as much as possible\nwithout introducing additional issues.", "edition": 15, "cvss3": {"score": 7.8, "vector": "AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"}, "published": "2019-05-14T00:00:00", "title": "EulerOS Virtualization 3.0.1.0 : binutils (EulerOS-SA-2019-1431)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2014-8501", "CVE-2014-8485", "CVE-2018-7642", "CVE-2018-7208", "CVE-2017-15020", "CVE-2014-8504", "CVE-2018-19932", "CVE-2014-8738", "CVE-2014-8737", "CVE-2018-7569", "CVE-2017-16828", "CVE-2017-16826", "CVE-2018-7568", "CVE-2014-8484", "CVE-2017-16831", "CVE-2018-7643", "CVE-2014-8502", "CVE-2017-16827", "CVE-2014-8503", "CVE-2018-8945"], "modified": "2019-05-14T00:00:00", "cpe": ["cpe:/o:huawei:euleros:uvp:3.0.1.0", "p-cpe:/a:huawei:euleros:binutils"], "id": "EULEROS_SA-2019-1431.NASL", "href": "https://www.tenable.com/plugins/nessus/124934", "sourceData": "#%NASL_MIN_LEVEL 70300\n#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude('deprecated_nasl_level.inc');\ninclude('compat.inc');\n\nif (description)\n{\n script_id(124934);\n script_version(\"1.7\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/06\");\n\n script_cve_id(\n \"CVE-2014-8484\",\n \"CVE-2014-8485\",\n \"CVE-2014-8501\",\n \"CVE-2014-8502\",\n \"CVE-2014-8503\",\n \"CVE-2014-8504\",\n \"CVE-2014-8737\",\n \"CVE-2014-8738\",\n \"CVE-2017-15020\",\n \"CVE-2017-16826\",\n \"CVE-2017-16827\",\n \"CVE-2017-16828\",\n \"CVE-2017-16831\",\n \"CVE-2018-19932\",\n \"CVE-2018-7208\",\n \"CVE-2018-7568\",\n \"CVE-2018-7569\",\n \"CVE-2018-7642\",\n \"CVE-2018-7643\",\n \"CVE-2018-8945\"\n );\n script_bugtraq_id(\n 70714,\n 70741,\n 70761,\n 70866,\n 70868,\n 70869,\n 70908,\n 71083\n );\n\n script_name(english:\"EulerOS Virtualization 3.0.1.0 : binutils (EulerOS-SA-2019-1431)\");\n script_summary(english:\"Checks the rpm output for the updated packages.\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"The remote EulerOS Virtualization host is missing multiple security\nupdates.\");\n script_set_attribute(attribute:\"description\", value:\n\"According to the versions of the binutils package installed, the\nEulerOS Virtualization installation on the remote host is affected by\nthe following vulnerabilities :\n\n - An integer wraparound has been discovered in the Binary\n File Descriptor (BFD) library distributed in GNU\n Binutils up to version 2.30. An attacker could cause a\n crash by providing an ELF file with corrupted DWARF\n debug information.(CVE-2018-7568)\n\n - A stack-based buffer overflow flaw was found in the way\n various binutils utilities processed certain files. If\n a user were tricked into processing a specially crafted\n file, it could cause the utility used to process that\n file to crash or, potentially, execute arbitrary code\n with the privileges of the user running that\n utility.(CVE-2014-8501)\n\n - The coff_slurp_line_table function in coffcode.h in the\n Binary File Descriptor (BFD) library (aka libbfd), as\n distributed in GNU Binutils 2.29.1, allows remote\n attackers to cause a denial of service (invalid memory\n access and application crash) or possibly have\n unspecified other impact via a crafted PE\n file.(CVE-2017-16826)\n\n - It was found that the fix for the CVE-2014-8485 issue\n was incomplete: a heap-based buffer overflow in the\n objdump utility could cause it to crash or,\n potentially, execute arbitrary code with the privileges\n of the user running objdump when processing specially\n crafted files.(CVE-2014-8502)\n\n - A directory traversal flaw was found in the strip and\n objcopy utilities. A specially crafted file could cause\n strip or objdump to overwrite an arbitrary file\n writable by the user running either of these\n utilities.(CVE-2014-8737)\n\n - The bfd_section_from_shdr function in elf.c in the\n Binary File Descriptor (BFD) library (aka libbfd), as\n distributed in GNU Binutils 2.30, allows remote\n attackers to cause a denial of service (segmentation\n fault) via a large attribute section.(CVE-2018-8945)\n\n - In the coff_pointerize_aux function in coffgen.c in the\n Binary File Descriptor (BFD) library (aka libbfd), as\n distributed in GNU Binutils 2.30, an index is not\n validated, which allows remote attackers to cause a\n denial of service (segmentation fault) or possibly have\n unspecified other impact via a crafted file, as\n demonstrated by objcopy of a COFF\n object.(CVE-2018-7208)\n\n - dwarf1.c in the Binary File Descriptor (BFD) library\n (aka libbfd), as distributed in GNU Binutils 2.29,\n mishandles pointers, which allows remote attackers to\n cause a denial of service (application crash) or\n possibly have unspecified other impact via a crafted\n ELF file, related to parse_die and parse_line_table, as\n demonstrated by a parse_die heap-based buffer\n over-read.(CVE-2017-15020)\n\n - A buffer overflow flaw was found in the way various\n binutils utilities processed certain files. If a user\n were tricked into processing a specially crafted file,\n it could cause the utility used to process that file to\n crash or, potentially, execute arbitrary code with the\n privileges of the user running that\n utility.(CVE-2014-8485)\n\n - An integer overflow flaw was found in the way the\n strings utility processed certain files. If a user were\n tricked into running the strings utility on a specially\n crafted file, it could cause the strings executable to\n crash.(CVE-2014-8484)\n\n - A heap-based buffer overflow flaw was found in the way\n certain binutils utilities processed archive files. If\n a user were tricked into processing a specially crafted\n archive file, it could cause the utility used to\n process that archive to crash or, potentially, execute\n arbitrary code with the privileges of the user running\n that utility.(CVE-2014-8738)\n\n - The swap_std_reloc_in function in aoutx.h in the Binary\n File Descriptor (BFD) library (aka libbfd), as\n distributed in GNU Binutils 2.30, allows remote\n attackers to cause a denial of service\n (aout_32_swap_std_reloc_out NULL pointer dereference\n and application crash) via a crafted ELF file, as\n demonstrated by objcopy.(CVE-2018-7642)\n\n - The display_debug_frames function in dwarf.c in GNU\n Binutils 2.29.1 allows remote attackers to cause a\n denial of service (integer overflow and heap-based\n buffer over-read, and application crash) or possibly\n have unspecified other impact via a crafted ELF file,\n related to print_debug_frame.(CVE-2017-16828)\n\n - A stack-based buffer overflow flaw was found in the\n SREC parser of the libbfd library. A specially crafted\n file could cause an application using the libbfd\n library to crash or, potentially, execute arbitrary\n code with the privileges of the user running that\n application.(CVE-2014-8504)\n\n - An integer wraparound has been discovered in the Binary\n File Descriptor (BFD) library distributed in GNU\n Binutils up to version 2.30. An attacker could cause a\n crash by providing an ELF file with corrupted DWARF\n debug information.(CVE-2018-7569)\n\n - A stack-based buffer overflow flaw was found in the way\n objdump processed IHEX files. A specially crafted IHEX\n file could cause objdump to crash or, potentially,\n execute arbitrary code with the privileges of the user\n running objdump.(CVE-2014-8503)\n\n - coffgen.c in the Binary File Descriptor (BFD) library\n (aka libbfd), as distributed in GNU Binutils 2.29.1,\n does not validate the symbol count, which allows remote\n attackers to cause a denial of service (integer\n overflow and application crash, or excessive memory\n allocation) or possibly have unspecified other impact\n via a crafted PE file.(CVE-2017-16831)\n\n - The aout_get_external_symbols function in aoutx.h in\n the Binary File Descriptor (BFD) library (aka libbfd),\n as distributed in GNU Binutils 2.29.1, allows remote\n attackers to cause a denial of service (slurp_symtab\n invalid free and application crash) or possibly have\n unspecified other impact via a crafted ELF\n file.(CVE-2017-16827)\n\n - The display_debug_ranges function in dwarf.c in GNU\n Binutils 2.30 allows remote attackers to cause a denial\n of service (integer overflow and application crash) or\n possibly have unspecified other impact via a crafted\n ELF file, as demonstrated by objdump.(CVE-2018-7643)\n\n - An issue was discovered in the Binary File Descriptor\n (BFD) library (aka libbfd), as distributed in GNU\n Binutils through 2.31. There is an integer overflow and\n infinite loop caused by the IS_CONTAINED_BY_LMA macro\n in elf.c.(CVE-2018-19932)\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the EulerOS security advisory. Tenable\nhas attempted to automatically clean and format it as much as possible\nwithout introducing additional issues.\");\n # https://developer.huaweicloud.com/ict/en/site-euleros/euleros/security-advisories/EulerOS-SA-2019-1431\n script_set_attribute(attribute:\"see_also\", value:\"http://www.nessus.org/u?2de8da5b\");\n script_set_attribute(attribute:\"solution\", value:\n\"Update the affected binutils packages.\");\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P\");\n script_set_cvss_temporal_vector(\"CVSS2#E:U/RL:OF/RC:C\");\n script_set_cvss3_base_vector(\"CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H\");\n script_set_cvss3_temporal_vector(\"CVSS:3.0/E:X/RL:O/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2019/05/08\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2019/05/14\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:huawei:euleros:binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:huawei:euleros:uvp:3.0.1.0\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"Huawei Local Security Checks\");\n\n script_copyright(english:\"This script is Copyright (C) 2019-2021 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/cpu\", \"Host/EulerOS/release\", \"Host/EulerOS/rpm-list\", \"Host/EulerOS/uvp_version\");\n\n exit(0);\n}\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"rpm.inc\");\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\n\nrelease = get_kb_item(\"Host/EulerOS/release\");\nif (isnull(release) || release !~ \"^EulerOS\") audit(AUDIT_OS_NOT, \"EulerOS\");\nuvp = get_kb_item(\"Host/EulerOS/uvp_version\");\nif (uvp != \"3.0.1.0\") audit(AUDIT_OS_NOT, \"EulerOS Virtualization 3.0.1.0\");\nif (!get_kb_item(\"Host/EulerOS/rpm-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\ncpu = get_kb_item(\"Host/cpu\");\nif (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);\nif (\"x86_64\" >!< cpu && cpu !~ \"^i[3-6]86$\" && \"aarch64\" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, \"EulerOS\", cpu);\nif (\"x86_64\" >!< cpu && cpu !~ \"^i[3-6]86$\") audit(AUDIT_ARCH_NOT, \"i686 / x86_64\", cpu);\n\nflag = 0;\n\npkgs = [\"binutils-2.27-28.base.1.h15\"];\n\nforeach (pkg in pkgs)\n if (rpm_check(release:\"EulerOS-2.0\", reference:pkg)) flag++;\n\nif (flag)\n{\n security_report_v4(\n port : 0,\n severity : SECURITY_HOLE,\n extra : rpm_report_get()\n );\n exit(0);\n}\nelse\n{\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"binutils\");\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2021-01-01T02:53:57", "description": "The remote host is affected by the vulnerability described in GLSA-201801-01\n(Binutils: Multiple vulnerabilities)\n\n Multiple vulnerabilities have been discovered in Binutils. Please review\n the referenced CVE identifiers for details.\n \nImpact :\n\n A remote attacker, by enticing a user to compile/execute a specially\n crafted ELF, tekhex, PE, or binary file, could possibly cause a Denial of\n Service condition.\n \nWorkaround :\n\n There are no known workarounds at this time.", "edition": 22, "cvss3": {"score": 7.8, "vector": "AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"}, "published": "2018-01-08T00:00:00", "title": "GLSA-201801-01 : Binutils: Multiple vulnerabilities", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2017-9755", "CVE-2017-12456", "CVE-2017-9751", "CVE-2017-14130", "CVE-2017-7223", "CVE-2017-9746", "CVE-2017-14128", "CVE-2017-7227", "CVE-2017-7224", "CVE-2017-9750", "CVE-2017-9756", "CVE-2017-12799", "CVE-2017-15023", "CVE-2017-14333", "CVE-2017-7225", "CVE-2017-15938", "CVE-2017-12967", "CVE-2017-7210", "CVE-2017-15939", "CVE-2017-9743", "CVE-2017-7209", "CVE-2017-9749", "CVE-2017-15996", "CVE-2017-14129"], "modified": "2021-01-02T00:00:00", "cpe": ["p-cpe:/a:gentoo:linux:binutils", "cpe:/o:gentoo:linux"], "id": "GENTOO_GLSA-201801-01.NASL", "href": "https://www.tenable.com/plugins/nessus/105627", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were\n# extracted from Gentoo Linux Security Advisory GLSA 201801-01.\n#\n# The advisory text is Copyright (C) 2001-2018 Gentoo Foundation, Inc.\n# and licensed under the Creative Commons - Attribution / Share Alike \n# license. See http://creativecommons.org/licenses/by-sa/3.0/\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(105627);\n script_version(\"3.3\");\n script_cvs_date(\"Date: 2019/04/05 23:25:06\");\n\n script_cve_id(\"CVE-2017-12456\", \"CVE-2017-12799\", \"CVE-2017-12967\", \"CVE-2017-14128\", \"CVE-2017-14129\", \"CVE-2017-14130\", \"CVE-2017-14333\", \"CVE-2017-15023\", \"CVE-2017-15938\", \"CVE-2017-15939\", \"CVE-2017-15996\", \"CVE-2017-7209\", \"CVE-2017-7210\", \"CVE-2017-7223\", \"CVE-2017-7224\", \"CVE-2017-7225\", \"CVE-2017-7227\", \"CVE-2017-9743\", \"CVE-2017-9746\", \"CVE-2017-9749\", \"CVE-2017-9750\", \"CVE-2017-9751\", \"CVE-2017-9755\", \"CVE-2017-9756\");\n script_xref(name:\"GLSA\", value:\"201801-01\");\n\n script_name(english:\"GLSA-201801-01 : Binutils: Multiple vulnerabilities\");\n script_summary(english:\"Checks for updated package(s) in /var/db/pkg\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\n\"The remote Gentoo host is missing one or more security-related\npatches.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"The remote host is affected by the vulnerability described in GLSA-201801-01\n(Binutils: Multiple vulnerabilities)\n\n Multiple vulnerabilities have been discovered in Binutils. Please review\n the referenced CVE identifiers for details.\n \nImpact :\n\n A remote attacker, by enticing a user to compile/execute a specially\n crafted ELF, tekhex, PE, or binary file, could possibly cause a Denial of\n Service condition.\n \nWorkaround :\n\n There are no known workarounds at this time.\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://security.gentoo.org/glsa/201801-01\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\n\"All Binutils users should upgrade to the latest version:\n # emerge --sync\n # emerge --ask --oneshot --verbose '>=sys-devel/binutils-2.29.1-r1'\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:M/Au:N/C:P/I:P/A:P\");\n script_set_cvss_temporal_vector(\"CVSS2#E:POC/RL:OF/RC:C\");\n script_set_cvss3_base_vector(\"CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H\");\n script_set_cvss3_temporal_vector(\"CVSS:3.0/E:P/RL:O/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:gentoo:linux:binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:gentoo:linux\");\n\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2018/01/07\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2018/01/08\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2018-2019 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"Gentoo Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/Gentoo/release\", \"Host/Gentoo/qpkg-list\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"qpkg.inc\");\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nif (!get_kb_item(\"Host/Gentoo/release\")) audit(AUDIT_OS_NOT, \"Gentoo\");\nif (!get_kb_item(\"Host/Gentoo/qpkg-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\n\nflag = 0;\n\nif (qpkg_check(package:\"sys-devel/binutils\", unaffected:make_list(\"ge 2.29.1-r1\"), vulnerable:make_list(\"lt 2.29.1-r1\"))) flag++;\n\nif (flag)\n{\n if (report_verbosity > 0) security_warning(port:0, extra:qpkg_report_get());\n else security_warning(0);\n exit(0);\n}\nelse\n{\n tested = qpkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"Binutils\");\n}\n", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2021-01-07T14:27:11", "description": "GNU binutil was updated to the 2.29.1 release, bringing various new\nfeatures, fixing a lot of bugs and security issues. Following security\nissues are being addressed by this release :\n\n - 18750 bsc#1030296 CVE-2014-9939\n\n - 20891 bsc#1030585 CVE-2017-7225\n\n - 20892 bsc#1030588 CVE-2017-7224\n\n - 20898 bsc#1030589 CVE-2017-7223\n\n - 20905 bsc#1030584 CVE-2017-7226\n\n - 20908 bsc#1031644 CVE-2017-7299\n\n - 20909 bsc#1031656 CVE-2017-7300\n\n - 20921 bsc#1031595 CVE-2017-7302\n\n - 20922 bsc#1031593 CVE-2017-7303\n\n - 20924 bsc#1031638 CVE-2017-7301\n\n - 20931 bsc#1031590 CVE-2017-7304\n\n - 21135 bsc#1030298 CVE-2017-7209\n\n - 21137 bsc#1029909 CVE-2017-6965\n\n - 21139 bsc#1029908 CVE-2017-6966\n\n - 21156 bsc#1029907 CVE-2017-6969\n\n - 21157 bsc#1030297 CVE-2017-7210\n\n - 21409 bsc#1037052 CVE-2017-8392\n\n - 21412 bsc#1037057 CVE-2017-8393\n\n - 21414 bsc#1037061 CVE-2017-8394\n\n - 21432 bsc#1037066 CVE-2017-8396\n\n - 21440 bsc#1037273 CVE-2017-8421\n\n - 21580 bsc#1044891 CVE-2017-9746\n\n - 21581 bsc#1044897 CVE-2017-9747\n\n - 21582 bsc#1044901 CVE-2017-9748\n\n - 21587 bsc#1044909 CVE-2017-9750\n\n - 21594 bsc#1044925 CVE-2017-9755\n\n - 21595 bsc#1044927 CVE-2017-9756\n\n - 21787 bsc#1052518 CVE-2017-12448\n\n - 21813 bsc#1052503, CVE-2017-12456, bsc#1052507,\n CVE-2017-12454, bsc#1052509, CVE-2017-12453,\n bsc#1052511, CVE-2017-12452, bsc#1052514,\n CVE-2017-12450, bsc#1052503, CVE-2017-12456,\n bsc#1052507, CVE-2017-12454, bsc#1052509,\n CVE-2017-12453, bsc#1052511, CVE-2017-12452,\n bsc#1052514, CVE-2017-12450\n\n - 21933 bsc#1053347 CVE-2017-12799\n\n - 21990 bsc#1058480 CVE-2017-14333\n\n - 22018 bsc#1056312 CVE-2017-13757\n\n - 22047 bsc#1057144 CVE-2017-14129\n\n - 22058 bsc#1057149 CVE-2017-14130\n\n - 22059 bsc#1057139 CVE-2017-14128\n\n - 22113 bsc#1059050 CVE-2017-14529\n\n - 22148 bsc#1060599 CVE-2017-14745\n\n - 22163 bsc#1061241 CVE-2017-14974\n\n - 22170 bsc#1060621 CVE-2017-14729 Update to binutils\n 2.29. [fate#321454, fate#321494, fate#323293] :\n\n - The MIPS port now supports microMIPS eXtended Physical\n Addressing (XPA) instructions for assembly and\n disassembly.\n\n - The MIPS port now supports the microMIPS Release 5 ISA\n for assembly and disassembly.\n\n - The MIPS port now supports the Imagination interAptiv\n MR2 processor, which implements the MIPS32r3 ISA, the\n MIPS16e2 ASE as well as a couple of\n implementation-specific regular MIPS and MIPS16e2 ASE\n instructions.\n\n - The SPARC port now supports the SPARC M8 processor,\n which implements the Oracle SPARC Architecture 2017.\n\n - The MIPS port now supports the MIPS16e2 ASE for assembly\n and disassembly.\n\n - Add support for ELF SHF_GNU_MBIND and PT_GNU_MBIND_XXX.\n\n - Add support for the wasm32 ELF conversion of the\n WebAssembly file format.\n\n - Add --inlines option to objdump, which extends the\n --line-numbers option so that inlined functions will\n display their nesting information.\n\n - Add --merge-notes options to objcopy to reduce the size\n of notes in a binary file by merging and deleting\n redundant notes.\n\n - Add support for locating separate debug info files using\n the build-id method, where the separate file has a name\n based upon the build-id of the original file.\n\n - GAS specific :\n\n - Add support for ELF SHF_GNU_MBIND.\n\n - Add support for the WebAssembly file format and wasm32\n ELF conversion.\n\n - PowerPC gas now checks that the correct register class\n is used in instructions. For instance, 'addi\n %f4,%cr3,%r31' warns three times that the registers are\n invalid.\n\n - Add support for the Texas Instruments PRU processor.\n\n - Support for the ARMv8-R architecture and Cortex-R52\n processor has been added to the ARM port.\n\n - GNU ld specific :\n\n - Support for -z shstk in the x86 ELF linker to generate\n GNU_PROPERTY_X86_FEATURE_1_SHSTK in ELF GNU program\n properties.\n\n - Add support for GNU_PROPERTY_X86_FEATURE_1_SHSTK in ELF\n GNU program properties in the x86 ELF linker.\n\n - Add support for GNU_PROPERTY_X86_FEATURE_1_IBT in ELF\n GNU program properties in the x86 ELF linker.\n\n - Support for -z ibtplt in the x86 ELF linker to generate\n IBT-enabled PLT.\n\n - Support for -z ibt in the x86 ELF linker to generate\n IBT-enabled PLT as well as\n GNU_PROPERTY_X86_FEATURE_1_IBT in ELF GNU program\n properties.\n\n - Add support for ELF SHF_GNU_MBIND and PT_GNU_MBIND_XXX.\n\n - Add support for ELF GNU program properties.\n\n - Add support for the Texas Instruments PRU processor.\n\n - When configuring for arc*-*-linux* targets the default\n linker emulation will change if --with-cpu=nps400 is\n used at configure time.\n\n - Improve assignment of LMAs to orphan sections in some\n edge cases where a mixture of both AT>LMA_REGION and\n AT(LMA) are used.\n\n - Orphan sections placed after an empty section that has\n an AT(LMA) will now take an load memory address starting\n from LMA.\n\n - Section groups can now be resolved (the group deleted\n and the group members placed like normal sections) at\n partial link time either using the new linker option\n --force-group-allocation or by placing\n FORCE_GROUP_ALLOCATION into the linker script.\n\n - Add riscv64 target, tested with gcc7 and downstream\n newlib 2.4.0\n\n - Prepare riscv32 target (gh#riscv/riscv-newlib#8)\n\n - Make compressed debug section handling explicit, disable\n for old products and enable for gas on all architectures\n otherwise. [bsc#1029995]\n\n - Remove empty rpath component removal optimization from\n to workaround CMake rpath handling. [bsc#1025282] Minor\n security bugs fixed: PR 21147, PR 21148, PR 21149, PR\n 21150, PR 21151, PR 21155, PR 21158, PR 21159\n\n - Update to binutils 2.28.\n\n - Add support for locating separate debug info files using\n the build-id method, where the separate file has a name\n based upon the build-id of the original file.\n\n - This version of binutils fixes a problem with PowerPC\n VLE 16A and 16D relocations which were functionally\n swapped, for example, R_PPC_VLE_HA16A performed like\n R_PPC_VLE_HA16D while R_PPC_VLE_HA16D performed like\n R_PPC_VLE_HA16A. This could have been fixed by\n renumbering relocations, which would keep object files\n created by an older version of gas compatible with a\n newer ld. However, that would require an ABI update,\n affecting other assemblers and linkers that create and\n process the relocations correctly. It is recommended\n that all VLE object files be recompiled, but ld can\n modify the relocations if --vle-reloc-fixup is passed to\n ld. If the new ld command line option is not used, ld\n will ld warn on finding relocations inconsistent with\n the instructions being relocated.\n\n - The nm program has a new command line option\n (--with-version-strings) which will display a symbol's\n version information, if any, after the symbol's name.\n\n - The ARC port of objdump now accepts a -M option to\n specify the extra instruction class(es) that should be\n disassembled.\n\n - The --remove-section option for objcopy and strip now\n accepts section patterns starting with an exclamation\n point to indicate a non-matching section. A non-matching\n section is removed from the set of sections matched by\n an earlier --remove-section pattern.\n\n - The --only-section option for objcopy now accepts\n section patterns starting with an exclamation point to\n indicate a non-matching section. A non-matching section\n is removed from the set of sections matched by an\n earlier --only-section pattern.\n\n - New --remove-relocations=SECTIONPATTERN option for\n objcopy and strip. This option can be used to remove\n sections containing relocations. The SECTIONPATTERN is\n the section to which the relocations apply, not the\n relocation section itself.\n\n - GAS specific :\n\n - Add support for the RISC-V architecture.\n\n - Add support for the ARM Cortex-M23 and Cortex-M33\n processors.\n\n - GNU ld specific :\n\n - The EXCLUDE_FILE linker script construct can now be\n applied outside of the section list in order for the\n exclusions to apply over all input sections in the list.\n\n - Add support for the RISC-V architecture.\n\n - The command line option --no-eh-frame-hdr can now be\n used in ELF based linkers to disable the automatic\n generation of .eh_frame_hdr sections.\n\n - Add --in-implib=<infile> to the ARM linker to enable\n specifying a set of Secure Gateway veneers that must\n exist in the output import library specified by\n --out-implib=<outfile> and the address they must have.\n As such, --in-implib is only supported in combination\n with --cmse-implib.\n\n - Extended the --out-implib=<file> option, previously\n restricted to x86 PE targets, to any ELF based target.\n This allows the generation of an import library for an\n ELF executable, which can then be used by another\n application to link against the executable.\n\n - GOLD specific :\n\n - Add -z bndplt option (x86-64 only) to support Intel MPX.\n\n - Add --orphan-handling option.\n\n - Add --stub-group-multi option (PowerPC only).\n\n - Add --target1-rel, --target1-abs, --target2 options (Arm\n only).\n\n - Add -z stack-size option.\n\n - Add --be8 option (Arm only).\n\n - Add HIDDEN support in linker scripts.\n\n - Add SORT_BY_INIT_PRIORITY support in linker scripts.\n\n - Other fixes :\n\n - Fix section alignment on .gnu_debuglink. [bso#21193]\n\n - Add s390x to gold_archs.\n\n - Fix alignment frags for aarch64 (bsc#1003846)\n\n - Call ldconfig for libbfd\n\n - Fix an assembler problem with clang on ARM.\n\n - Restore monotonically increasing section offsets.\n\n - Update to binutils 2.27.\n\n - Add a configure option, --enable-64-bit-archive, to\n force use of a 64-bit format when creating an archive\n symbol index.\n\n - Add --elf-stt-common= option to objcopy for ELF targets\n to control whether to convert common symbols to the\n STT_COMMON type.\n\n - GAS specific :\n\n - Default to --enable-compressed-debug-sections=gas for\n Linux/x86 targets.\n\n - Add --no-pad-sections to stop the assembler from padding\n the end of output sections up to their alignment\n boundary.\n\n - Support for the ARMv8-M architecture has been added to\n the ARM port. Support for the ARMv8-M Security and DSP\n Extensions has also been added to the ARM port.\n\n - ARC backend accepts .extInstruction, .extCondCode,\n .extAuxRegister, and .extCoreRegister pseudo-ops that\n allow an user to define custom instructions, conditional\n codes, auxiliary and core registers.\n\n - Add a configure option --enable-elf-stt-common to decide\n whether ELF assembler should generate common symbols\n with the STT_COMMON type by default. Default to no.\n\n - New command line option --elf-stt-common= for ELF\n targets to control whether to generate common symbols\n with the STT_COMMON type.\n\n - Add ability to set section flags and types via numeric\n values for ELF based targets.\n\n - Add a configure option --enable-x86-relax-relocations to\n decide whether x86 assembler should generate relax\n relocations by default. Default to yes, except for x86\n Solaris targets older than Solaris 12.\n\n - New command line option -mrelax-relocations= for x86\n target to control whether to generate relax relocations.\n\n - New command line option -mfence-as-lock-add=yes for x86\n target to encode lfence, mfence and sfence as 'lock addl\n $0x0, (%[re]sp)'.\n\n - Add assembly-time relaxation option for ARC cpus.\n\n - Add --with-cpu=TYPE configure option for ARC gas. This\n allows the default cpu type to be adjusted at configure\n time.\n\n - GOLD specific :\n\n - Add a configure option --enable-relro to decide whether\n -z relro should be enabled by default. Default to yes.\n\n - Add support for s390, MIPS, AArch64, and TILE-Gx\n architectures.\n\n - Add support for STT_GNU_IFUNC symbols.\n\n - Add support for incremental linking (--incremental).\n\n - GNU ld specific :\n\n - Add a configure option --enable-relro to decide whether\n -z relro should be enabled in ELF linker by default.\n Default to yes for all Linux targets except FRV, HPPA,\n IA64 and MIPS.\n\n - Support for -z noreloc-overflow in the x86-64 ELF linker\n to disable relocation overflow check.\n\n - Add -z common/-z nocommon options for ELF targets to\n control whether to convert common symbols to the\n STT_COMMON type during a relocatable link.\n\n - Support for -z nodynamic-undefined-weak in the x86 ELF\n linker, which avoids dynamic relocations against\n undefined weak symbols in executable.\n\n - The NOCROSSREFSTO command was added to the linker script\n language.\n\n - Add --no-apply-dynamic-relocs to the AArch64 linker to\n do not apply link-time values for dynamic\n relocations.</file></outfile></infile>\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the SUSE security advisory. Tenable\nhas attempted to automatically clean and format it as much as possible\nwithout introducing additional issues.", "edition": 27, "cvss3": {"score": 9.8, "vector": "AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"}, "published": "2017-12-01T00:00:00", "title": "SUSE SLED12 / SLES12 Security Update : binutils (SUSE-SU-2017:3170-1)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2017-8395", "CVE-2017-9755", "CVE-2017-9043", "CVE-2017-12456", "CVE-2017-14745", "CVE-2017-14130", "CVE-2017-12448", "CVE-2017-9042", "CVE-2017-7614", "CVE-2017-7223", "CVE-2017-14529", "CVE-2017-14729", "CVE-2017-14974", "CVE-2017-7299", "CVE-2017-9746", "CVE-2017-7300", "CVE-2017-9041", "CVE-2017-8396", "CVE-2017-14128", "CVE-2017-9038", "CVE-2017-7227", "CVE-2017-12453", "CVE-2017-8394", "CVE-2017-9954", "CVE-2017-9039", "CVE-2017-7224", "CVE-2017-9955", "CVE-2017-7303", "CVE-2017-12450", "CVE-2017-9750", "CVE-2017-9756", "CVE-2017-12799", "CVE-2017-7302", "CVE-2017-9748", "CVE-2014-9939", "CVE-2017-6966", "CVE-2017-14333", "CVE-2017-7225", "CVE-2017-12452", "CVE-2017-9044", "CVE-2017-8393", "CVE-2017-8397", "CVE-2017-8392", "CVE-2017-7301", "CVE-2017-6965", "CVE-2017-7210", "CVE-2017-7304", "CVE-2017-7209", "CVE-2017-7226", "CVE-2017-9040", "CVE-2017-13757", "CVE-2017-8398", "CVE-2017-9747", "CVE-2017-14129", "CVE-2017-8421", "CVE-2017-12454", "CVE-2017-6969"], "modified": "2017-12-01T00:00:00", "cpe": ["p-cpe:/a:novell:suse_linux:binutils-debuginfo", "cpe:/o:novell:suse_linux:12", "p-cpe:/a:novell:suse_linux:binutils-debugsource", "p-cpe:/a:novell:suse_linux:binutils"], "id": "SUSE_SU-2017-3170-1.NASL", "href": "https://www.tenable.com/plugins/nessus/104968", "sourceData": "#%NASL_MIN_LEVEL 70300\n#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were\n# extracted from SUSE update advisory SUSE-SU-2017:3170-1.\n# The text itself is copyright (C) SUSE.\n#\n\ninclude('deprecated_nasl_level.inc');\ninclude('compat.inc');\n\nif (description)\n{\n script_id(104968);\n script_version(\"3.7\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/06\");\n\n script_cve_id(\"CVE-2014-9939\", \"CVE-2017-12448\", \"CVE-2017-12450\", \"CVE-2017-12452\", \"CVE-2017-12453\", \"CVE-2017-12454\", \"CVE-2017-12456\", \"CVE-2017-12799\", \"CVE-2017-13757\", \"CVE-2017-14128\", \"CVE-2017-14129\", \"CVE-2017-14130\", \"CVE-2017-14333\", \"CVE-2017-14529\", \"CVE-2017-14729\", \"CVE-2017-14745\", \"CVE-2017-14974\", \"CVE-2017-6965\", \"CVE-2017-6966\", \"CVE-2017-6969\", \"CVE-2017-7209\", \"CVE-2017-7210\", \"CVE-2017-7223\", \"CVE-2017-7224\", \"CVE-2017-7225\", \"CVE-2017-7226\", \"CVE-2017-7227\", \"CVE-2017-7299\", \"CVE-2017-7300\", \"CVE-2017-7301\", \"CVE-2017-7302\", \"CVE-2017-7303\", \"CVE-2017-7304\", \"CVE-2017-7614\", \"CVE-2017-8392\", \"CVE-2017-8393\", \"CVE-2017-8394\", \"CVE-2017-8395\", \"CVE-2017-8396\", \"CVE-2017-8397\", \"CVE-2017-8398\", \"CVE-2017-8421\", \"CVE-2017-9038\", \"CVE-2017-9039\", \"CVE-2017-9040\", \"CVE-2017-9041\", \"CVE-2017-9042\", \"CVE-2017-9043\", \"CVE-2017-9044\", \"CVE-2017-9746\", \"CVE-2017-9747\", \"CVE-2017-9748\", \"CVE-2017-9750\", \"CVE-2017-9755\", \"CVE-2017-9756\", \"CVE-2017-9954\", \"CVE-2017-9955\");\n\n script_name(english:\"SUSE SLED12 / SLES12 Security Update : binutils (SUSE-SU-2017:3170-1)\");\n script_summary(english:\"Checks rpm output for the updated packages.\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote SUSE host is missing one or more security updates.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"GNU binutil was updated to the 2.29.1 release, bringing various new\nfeatures, fixing a lot of bugs and security issues. Following security\nissues are being addressed by this release :\n\n - 18750 bsc#1030296 CVE-2014-9939\n\n - 20891 bsc#1030585 CVE-2017-7225\n\n - 20892 bsc#1030588 CVE-2017-7224\n\n - 20898 bsc#1030589 CVE-2017-7223\n\n - 20905 bsc#1030584 CVE-2017-7226\n\n - 20908 bsc#1031644 CVE-2017-7299\n\n - 20909 bsc#1031656 CVE-2017-7300\n\n - 20921 bsc#1031595 CVE-2017-7302\n\n - 20922 bsc#1031593 CVE-2017-7303\n\n - 20924 bsc#1031638 CVE-2017-7301\n\n - 20931 bsc#1031590 CVE-2017-7304\n\n - 21135 bsc#1030298 CVE-2017-7209\n\n - 21137 bsc#1029909 CVE-2017-6965\n\n - 21139 bsc#1029908 CVE-2017-6966\n\n - 21156 bsc#1029907 CVE-2017-6969\n\n - 21157 bsc#1030297 CVE-2017-7210\n\n - 21409 bsc#1037052 CVE-2017-8392\n\n - 21412 bsc#1037057 CVE-2017-8393\n\n - 21414 bsc#1037061 CVE-2017-8394\n\n - 21432 bsc#1037066 CVE-2017-8396\n\n - 21440 bsc#1037273 CVE-2017-8421\n\n - 21580 bsc#1044891 CVE-2017-9746\n\n - 21581 bsc#1044897 CVE-2017-9747\n\n - 21582 bsc#1044901 CVE-2017-9748\n\n - 21587 bsc#1044909 CVE-2017-9750\n\n - 21594 bsc#1044925 CVE-2017-9755\n\n - 21595 bsc#1044927 CVE-2017-9756\n\n - 21787 bsc#1052518 CVE-2017-12448\n\n - 21813 bsc#1052503, CVE-2017-12456, bsc#1052507,\n CVE-2017-12454, bsc#1052509, CVE-2017-12453,\n bsc#1052511, CVE-2017-12452, bsc#1052514,\n CVE-2017-12450, bsc#1052503, CVE-2017-12456,\n bsc#1052507, CVE-2017-12454, bsc#1052509,\n CVE-2017-12453, bsc#1052511, CVE-2017-12452,\n bsc#1052514, CVE-2017-12450\n\n - 21933 bsc#1053347 CVE-2017-12799\n\n - 21990 bsc#1058480 CVE-2017-14333\n\n - 22018 bsc#1056312 CVE-2017-13757\n\n - 22047 bsc#1057144 CVE-2017-14129\n\n - 22058 bsc#1057149 CVE-2017-14130\n\n - 22059 bsc#1057139 CVE-2017-14128\n\n - 22113 bsc#1059050 CVE-2017-14529\n\n - 22148 bsc#1060599 CVE-2017-14745\n\n - 22163 bsc#1061241 CVE-2017-14974\n\n - 22170 bsc#1060621 CVE-2017-14729 Update to binutils\n 2.29. [fate#321454, fate#321494, fate#323293] :\n\n - The MIPS port now supports microMIPS eXtended Physical\n Addressing (XPA) instructions for assembly and\n disassembly.\n\n - The MIPS port now supports the microMIPS Release 5 ISA\n for assembly and disassembly.\n\n - The MIPS port now supports the Imagination interAptiv\n MR2 processor, which implements the MIPS32r3 ISA, the\n MIPS16e2 ASE as well as a couple of\n implementation-specific regular MIPS and MIPS16e2 ASE\n instructions.\n\n - The SPARC port now supports the SPARC M8 processor,\n which implements the Oracle SPARC Architecture 2017.\n\n - The MIPS port now supports the MIPS16e2 ASE for assembly\n and disassembly.\n\n - Add support for ELF SHF_GNU_MBIND and PT_GNU_MBIND_XXX.\n\n - Add support for the wasm32 ELF conversion of the\n WebAssembly file format.\n\n - Add --inlines option to objdump, which extends the\n --line-numbers option so that inlined functions will\n display their nesting information.\n\n - Add --merge-notes options to objcopy to reduce the size\n of notes in a binary file by merging and deleting\n redundant notes.\n\n - Add support for locating separate debug info files using\n the build-id method, where the separate file has a name\n based upon the build-id of the original file.\n\n - GAS specific :\n\n - Add support for ELF SHF_GNU_MBIND.\n\n - Add support for the WebAssembly file format and wasm32\n ELF conversion.\n\n - PowerPC gas now checks that the correct register class\n is used in instructions. For instance, 'addi\n %f4,%cr3,%r31' warns three times that the registers are\n invalid.\n\n - Add support for the Texas Instruments PRU processor.\n\n - Support for the ARMv8-R architecture and Cortex-R52\n processor has been added to the ARM port.\n\n - GNU ld specific :\n\n - Support for -z shstk in the x86 ELF linker to generate\n GNU_PROPERTY_X86_FEATURE_1_SHSTK in ELF GNU program\n properties.\n\n - Add support for GNU_PROPERTY_X86_FEATURE_1_SHSTK in ELF\n GNU program properties in the x86 ELF linker.\n\n - Add support for GNU_PROPERTY_X86_FEATURE_1_IBT in ELF\n GNU program properties in the x86 ELF linker.\n\n - Support for -z ibtplt in the x86 ELF linker to generate\n IBT-enabled PLT.\n\n - Support for -z ibt in the x86 ELF linker to generate\n IBT-enabled PLT as well as\n GNU_PROPERTY_X86_FEATURE_1_IBT in ELF GNU program\n properties.\n\n - Add support for ELF SHF_GNU_MBIND and PT_GNU_MBIND_XXX.\n\n - Add support for ELF GNU program properties.\n\n - Add support for the Texas Instruments PRU processor.\n\n - When configuring for arc*-*-linux* targets the default\n linker emulation will change if --with-cpu=nps400 is\n used at configure time.\n\n - Improve assignment of LMAs to orphan sections in some\n edge cases where a mixture of both AT>LMA_REGION and\n AT(LMA) are used.\n\n - Orphan sections placed after an empty section that has\n an AT(LMA) will now take an load memory address starting\n from LMA.\n\n - Section groups can now be resolved (the group deleted\n and the group members placed like normal sections) at\n partial link time either using the new linker option\n --force-group-allocation or by placing\n FORCE_GROUP_ALLOCATION into the linker script.\n\n - Add riscv64 target, tested with gcc7 and downstream\n newlib 2.4.0\n\n - Prepare riscv32 target (gh#riscv/riscv-newlib#8)\n\n - Make compressed debug section handling explicit, disable\n for old products and enable for gas on all architectures\n otherwise. [bsc#1029995]\n\n - Remove empty rpath component removal optimization from\n to workaround CMake rpath handling. [bsc#1025282] Minor\n security bugs fixed: PR 21147, PR 21148, PR 21149, PR\n 21150, PR 21151, PR 21155, PR 21158, PR 21159\n\n - Update to binutils 2.28.\n\n - Add support for locating separate debug info files using\n the build-id method, where the separate file has a name\n based upon the build-id of the original file.\n\n - This version of binutils fixes a problem with PowerPC\n VLE 16A and 16D relocations which were functionally\n swapped, for example, R_PPC_VLE_HA16A performed like\n R_PPC_VLE_HA16D while R_PPC_VLE_HA16D performed like\n R_PPC_VLE_HA16A. This could have been fixed by\n renumbering relocations, which would keep object files\n created by an older version of gas compatible with a\n newer ld. However, that would require an ABI update,\n affecting other assemblers and linkers that create and\n process the relocations correctly. It is recommended\n that all VLE object files be recompiled, but ld can\n modify the relocations if --vle-reloc-fixup is passed to\n ld. If the new ld command line option is not used, ld\n will ld warn on finding relocations inconsistent with\n the instructions being relocated.\n\n - The nm program has a new command line option\n (--with-version-strings) which will display a symbol's\n version information, if any, after the symbol's name.\n\n - The ARC port of objdump now accepts a -M option to\n specify the extra instruction class(es) that should be\n disassembled.\n\n - The --remove-section option for objcopy and strip now\n accepts section patterns starting with an exclamation\n point to indicate a non-matching section. A non-matching\n section is removed from the set of sections matched by\n an earlier --remove-section pattern.\n\n - The --only-section option for objcopy now accepts\n section patterns starting with an exclamation point to\n indicate a non-matching section. A non-matching section\n is removed from the set of sections matched by an\n earlier --only-section pattern.\n\n - New --remove-relocations=SECTIONPATTERN option for\n objcopy and strip. This option can be used to remove\n sections containing relocations. The SECTIONPATTERN is\n the section to which the relocations apply, not the\n relocation section itself.\n\n - GAS specific :\n\n - Add support for the RISC-V architecture.\n\n - Add support for the ARM Cortex-M23 and Cortex-M33\n processors.\n\n - GNU ld specific :\n\n - The EXCLUDE_FILE linker script construct can now be\n applied outside of the section list in order for the\n exclusions to apply over all input sections in the list.\n\n - Add support for the RISC-V architecture.\n\n - The command line option --no-eh-frame-hdr can now be\n used in ELF based linkers to disable the automatic\n generation of .eh_frame_hdr sections.\n\n - Add --in-implib=<infile> to the ARM linker to enable\n specifying a set of Secure Gateway veneers that must\n exist in the output import library specified by\n --out-implib=<outfile> and the address they must have.\n As such, --in-implib is only supported in combination\n with --cmse-implib.\n\n - Extended the --out-implib=<file> option, previously\n restricted to x86 PE targets, to any ELF based target.\n This allows the generation of an import library for an\n ELF executable, which can then be used by another\n application to link against the executable.\n\n - GOLD specific :\n\n - Add -z bndplt option (x86-64 only) to support Intel MPX.\n\n - Add --orphan-handling option.\n\n - Add --stub-group-multi option (PowerPC only).\n\n - Add --target1-rel, --target1-abs, --target2 options (Arm\n only).\n\n - Add -z stack-size option.\n\n - Add --be8 option (Arm only).\n\n - Add HIDDEN support in linker scripts.\n\n - Add SORT_BY_INIT_PRIORITY support in linker scripts.\n\n - Other fixes :\n\n - Fix section alignment on .gnu_debuglink. [bso#21193]\n\n - Add s390x to gold_archs.\n\n - Fix alignment frags for aarch64 (bsc#1003846)\n\n - Call ldconfig for libbfd\n\n - Fix an assembler problem with clang on ARM.\n\n - Restore monotonically increasing section offsets.\n\n - Update to binutils 2.27.\n\n - Add a configure option, --enable-64-bit-archive, to\n force use of a 64-bit format when creating an archive\n symbol index.\n\n - Add --elf-stt-common= option to objcopy for ELF targets\n to control whether to convert common symbols to the\n STT_COMMON type.\n\n - GAS specific :\n\n - Default to --enable-compressed-debug-sections=gas for\n Linux/x86 targets.\n\n - Add --no-pad-sections to stop the assembler from padding\n the end of output sections up to their alignment\n boundary.\n\n - Support for the ARMv8-M architecture has been added to\n the ARM port. Support for the ARMv8-M Security and DSP\n Extensions has also been added to the ARM port.\n\n - ARC backend accepts .extInstruction, .extCondCode,\n .extAuxRegister, and .extCoreRegister pseudo-ops that\n allow an user to define custom instructions, conditional\n codes, auxiliary and core registers.\n\n - Add a configure option --enable-elf-stt-common to decide\n whether ELF assembler should generate common symbols\n with the STT_COMMON type by default. Default to no.\n\n - New command line option --elf-stt-common= for ELF\n targets to control whether to generate common symbols\n with the STT_COMMON type.\n\n - Add ability to set section flags and types via numeric\n values for ELF based targets.\n\n - Add a configure option --enable-x86-relax-relocations to\n decide whether x86 assembler should generate relax\n relocations by default. Default to yes, except for x86\n Solaris targets older than Solaris 12.\n\n - New command line option -mrelax-relocations= for x86\n target to control whether to generate relax relocations.\n\n - New command line option -mfence-as-lock-add=yes for x86\n target to encode lfence, mfence and sfence as 'lock addl\n $0x0, (%[re]sp)'.\n\n - Add assembly-time relaxation option for ARC cpus.\n\n - Add --with-cpu=TYPE configure option for ARC gas. This\n allows the default cpu type to be adjusted at configure\n time.\n\n - GOLD specific :\n\n - Add a configure option --enable-relro to decide whether\n -z relro should be enabled by default. Default to yes.\n\n - Add support for s390, MIPS, AArch64, and TILE-Gx\n architectures.\n\n - Add support for STT_GNU_IFUNC symbols.\n\n - Add support for incremental linking (--incremental).\n\n - GNU ld specific :\n\n - Add a configure option --enable-relro to decide whether\n -z relro should be enabled in ELF linker by default.\n Default to yes for all Linux targets except FRV, HPPA,\n IA64 and MIPS.\n\n - Support for -z noreloc-overflow in the x86-64 ELF linker\n to disable relocation overflow check.\n\n - Add -z common/-z nocommon options for ELF targets to\n control whether to convert common symbols to the\n STT_COMMON type during a relocatable link.\n\n - Support for -z nodynamic-undefined-weak in the x86 ELF\n linker, which avoids dynamic relocations against\n undefined weak symbols in executable.\n\n - The NOCROSSREFSTO command was added to the linker script\n language.\n\n - Add --no-apply-dynamic-relocs to the AArch64 linker to\n do not apply link-time values for dynamic\n relocations.</file></outfile></infile>\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the SUSE security advisory. Tenable\nhas attempted to automatically clean and format it as much as possible\nwithout introducing additional issues.\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1003846\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1025282\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1029907\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1029908\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1029909\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1029995\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1030296\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1030297\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1030298\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1030583\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1030584\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1030585\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1030588\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1030589\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1031590\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1031593\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1031595\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1031638\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1031644\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1031656\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1033122\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1037052\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1037057\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1037061\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1037062\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1037066\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1037070\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1037072\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1037273\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1038874\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1038875\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1038876\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1038877\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1038878\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1038880\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1038881\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1044891\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1044897\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1044901\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1044909\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1044925\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1044927\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1046094\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1052061\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1052496\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1052503\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1052507\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1052509\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1052511\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1052514\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1052518\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1053347\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1056312\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1056437\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1057139\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1057144\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1057149\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1058480\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1059050\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1060599\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1060621\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1061241\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=437293\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=445037\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=546106\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=561142\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=578249\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=590820\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=691290\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=698346\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=713504\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=776968\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=863764\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=938658\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=970239\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2014-9939/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12448/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12450/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12452/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12453/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12454/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12456/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12799/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-13757/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14128/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14129/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14130/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14333/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14529/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14729/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14745/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14974/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-6965/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-6966/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-6969/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-7209/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-7210/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-7223/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-7224/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-7225/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-7226/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-7227/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-7299/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-7300/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-7301/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-7302/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-7303/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-7304/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-7614/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-8392/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-8393/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-8394/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-8395/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-8396/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-8397/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-8398/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-8421/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9038/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9039/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9040/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9041/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9042/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9043/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9044/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9746/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9747/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9748/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9750/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9755/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9756/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9954/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-9955/\"\n );\n # https://www.suse.com/support/update/announcement/2017/suse-su-20173170-1/\n script_set_attribute(\n attribute:\"see_also\",\n value:\"http://www.nessus.org/u?3ef1d319\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\n\"To install this SUSE Security Update use YaST online_update.\nAlternatively you can run the command listed for your product :\n\nSUSE Linux Enterprise Software Development Kit 12-SP3:zypper in -t\npatch SUSE-SLE-SDK-12-SP3-2017-1971=1\n\nSUSE Linux Enterprise Software Development Kit 12-SP2:zypper in -t\npatch SUSE-SLE-SDK-12-SP2-2017-1971=1\n\nSUSE Linux Enterprise Server for SAP 12-SP1:zypper in -t patch\nSUSE-SLE-SAP-12-SP1-2017-1971=1\n\nSUSE Linux Enterprise Server for Raspberry Pi 12-SP2:zypper in -t\npatch SUSE-SLE-RPI-12-SP2-2017-1971=1\n\nSUSE Linux Enterprise Server 12-SP3:zypper in -t patch\nSUSE-SLE-SERVER-12-SP3-2017-1971=1\n\nSUSE Linux Enterprise Server 12-SP2:zypper in -t patch\nSUSE-SLE-SERVER-12-SP2-2017-1971=1\n\nSUSE Linux Enterprise Desktop 12-SP3:zypper in -t patch\nSUSE-SLE-DESKTOP-12-SP3-2017-1971=1\n\nSUSE Linux Enterprise Desktop 12-SP2:zypper in -t patch\nSUSE-SLE-DESKTOP-12-SP2-2017-1971=1\n\nOpenStack Cloud Magnum Orchestration 7:zypper in -t patch\nSUSE-OpenStack-Cloud-Magnum-Orchestration-7-2017-1971=1\n\nTo bring your system up-to-date, use 'zypper patch'.\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P\");\n script_set_cvss_temporal_vector(\"CVSS2#E:POC/RL:OF/RC:C\");\n script_set_cvss3_base_vector(\"CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H\");\n script_set_cvss3_temporal_vector(\"CVSS:3.0/E:P/RL:O/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:novell:suse_linux:12\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2017/03/17\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2017/11/30\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2017/12/01\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2017-2021 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"SuSE Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/cpu\", \"Host/SuSE/release\", \"Host/SuSE/rpm-list\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"rpm.inc\");\n\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nrelease = get_kb_item(\"Host/SuSE/release\");\nif (isnull(release) || release !~ \"^(SLED|SLES)\") audit(AUDIT_OS_NOT, \"SUSE\");\nos_ver = pregmatch(pattern: \"^(SLE(S|D)\\d+)\", string:release);\nif (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, \"SUSE\");\nos_ver = os_ver[1];\nif (! preg(pattern:\"^(SLED12|SLES12)$\", string:os_ver)) audit(AUDIT_OS_NOT, \"SUSE SLED12 / SLES12\", \"SUSE \" + os_ver);\n\nif (!get_kb_item(\"Host/SuSE/rpm-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\ncpu = get_kb_item(\"Host/cpu\");\nif (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);\nif (cpu !~ \"^i[3-6]86$\" && \"x86_64\" >!< cpu && \"s390x\" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, \"SUSE \" + os_ver, cpu);\n\nsp = get_kb_item(\"Host/SuSE/patchlevel\");\nif (isnull(sp)) sp = \"0\";\nif (os_ver == \"SLES12\" && (! preg(pattern:\"^(2|3)$\", string:sp))) audit(AUDIT_OS_NOT, \"SLES12 SP2/3\", os_ver + \" SP\" + sp);\nif (os_ver == \"SLED12\" && (! preg(pattern:\"^(2|3)$\", string:sp))) audit(AUDIT_OS_NOT, \"SLED12 SP2/3\", os_ver + \" SP\" + sp);\n\n\nflag = 0;\nif (rpm_check(release:\"SLES12\", sp:\"3\", reference:\"binutils-2.29.1-9.20.2\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"3\", reference:\"binutils-debuginfo-2.29.1-9.20.2\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"3\", reference:\"binutils-debugsource-2.29.1-9.20.2\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"2\", reference:\"binutils-2.29.1-9.20.2\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"2\", reference:\"binutils-debuginfo-2.29.1-9.20.2\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"2\", reference:\"binutils-debugsource-2.29.1-9.20.2\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"3\", cpu:\"x86_64\", reference:\"binutils-2.29.1-9.20.2\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"3\", cpu:\"x86_64\", reference:\"binutils-debuginfo-2.29.1-9.20.2\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"3\", cpu:\"x86_64\", reference:\"binutils-debugsource-2.29.1-9.20.2\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"2\", cpu:\"x86_64\", reference:\"binutils-2.29.1-9.20.2\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"2\", cpu:\"x86_64\", reference:\"binutils-debuginfo-2.29.1-9.20.2\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"2\", cpu:\"x86_64\", reference:\"binutils-debugsource-2.29.1-9.20.2\")) flag++;\n\n\nif (flag)\n{\n if (report_verbosity > 0) security_hole(port:0, extra:rpm_report_get());\n else security_hole(0);\n exit(0);\n}\nelse\n{\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"binutils\");\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2021-01-01T06:08:36", "description": "The Docker images provided with SUSE CaaS Platform 2.0 have been\nupdated to include the following updates: binutils :\n\n - Update to version 2.29\n\n - 18750 bsc#1030296 CVE-2014-9939\n\n - 20891 bsc#1030585 CVE-2017-7225\n\n - 20892 bsc#1030588 CVE-2017-7224\n\n - 20898 bsc#1030589 CVE-2017-7223\n\n - 20905 bsc#1030584 CVE-2017-7226\n\n - 20908 bsc#1031644 CVE-2017-7299\n\n - 20909 bsc#1031656 CVE-2017-7300\n\n - 20921 bsc#1031595 CVE-2017-7302\n\n - 20922 bsc#1031593 CVE-2017-7303\n\n - 20924 bsc#1031638 CVE-2017-7301\n\n - 20931 bsc#1031590 CVE-2017-7304\n\n - 21135 bsc#1030298 CVE-2017-7209\n\n - 21137 bsc#1029909 CVE-2017-6965\n\n - 21139 bsc#1029908 CVE-2017-6966\n\n - 21156 bsc#1029907 CVE-2017-6969\n\n - 21157 bsc#1030297 CVE-2017-7210\n\n - 21409 bsc#1037052 CVE-2017-8392\n\n - 21412 bsc#1037057 CVE-2017-8393\n\n - 21414 bsc#1037061 CVE-2017-8394\n\n - 21432 bsc#1037066 CVE-2017-8396\n\n - 21440 bsc#1037273 CVE-2017-8421\n\n - 21580 bsc#1044891 CVE-2017-9746\n\n - 21581 bsc#1044897 CVE-2017-9747\n\n - 21582 bsc#1044901 CVE-2017-9748\n\n - 21587 bsc#1044909 CVE-2017-9750\n\n - 21594 bsc#1044925 CVE-2017-9755\n\n - 21595 bsc#1044927 CVE-2017-9756\n\n - 21787 bsc#1052518 CVE-2017-12448\n\n - 21813 bsc#1052503, CVE-2017-12456, bsc#1052507,\n CVE-2017-12454, bsc#1052509, CVE-2017-12453,\n bsc#1052511, CVE-2017-12452, bsc#1052514,\n CVE-2017-12450, bsc#1052503, CVE-2017-12456,\n bsc#1052507, CVE-2017-12454, bsc#1052509,\n CVE-2017-12453, bsc#1052511, CVE-2017-12452,\n bsc#1052514, CVE-2017-12450\n\n - 21933 bsc#1053347 CVE-2017-12799\n\n - 21990 bsc#1058480 CVE-2017-14333\n\n - 22018 bsc#1056312 CVE-2017-13757\n\n - 22047 bsc#1057144 CVE-2017-14129\n\n - 22058 bsc#1057149 CVE-2017-14130\n\n - 22059 bsc#1057139 CVE-2017-14128\n\n - 22113 bsc#1059050 CVE-2017-14529\n\n - 22148 bsc#1060599 CVE-2017-14745\n\n - 22163 bsc#1061241 CVE-2017-14974\n\n - 22170 bsc#1060621 CVE-2017-14729\n\n - Make compressed debug section handling explicit, disable\n for old products and enable for gas on all architectures\n otherwise. [bsc#1029995]\n\n - Remove empty rpath component removal optimization from\n to workaround CMake rpath handling. [bsc#1025282]\n\n - Fix alignment frags for aarch64 (bsc#1003846) \ncoreutils :\n\n - Fix df(1) to no longer interact with excluded file\n system types, so for example specifying -x nfs no longer\n hangs with problematic nfs mounts. (bsc#1026567)\n\n - Ensure df -l no longer interacts with dummy file system\n types, so for example no longer hangs with problematic\n NFS mounted via system.automount(5). (bsc#1043059)\n\n - Significantly speed up df(1) for huge mount lists.\n (bsc#965780) file :\n\n - update to version 5.22.\n\n - CVE-2014-9621: The ELF parser in file allowed remote\n attackers to cause a denial of service via a long\n string. (bsc#913650)\n\n - CVE-2014-9620: The ELF parser in file allowed remote\n attackers to cause a denial of service via a large\n number of notes. (bsc#913651)\n\n - CVE-2014-9653: readelf.c in file did not consider that\n pread calls sometimes read only a subset of the\n available data, which allows remote attackers to cause a\n denial of service (uninitialized memory access) or\n possibly have unspecified other impact via a crafted ELF\n file. (bsc#917152)\n\n - CVE-2014-8116: The ELF parser (readelf.c) in file\n allowed remote attackers to cause a denial of service\n (CPU consumption or crash) via a large number of (1)\n program or (2) section headers or (3) invalid\n capabilities. (bsc#910253)\n\n - CVE-2014-8117: softmagic.c in file did not properly\n limit recursion, which allowed remote attackers to cause\n a denial of service (CPU consumption or crash) via\n unspecified vectors. (bsc#910253)\n\n - Fixed a memory corruption during rpmbuild (bsc#1063269)\n\n - Backport of a fix for an increased printable string\n length as found in file 5.30 (bsc#996511)\n\n - file command throws 'Composite Document File V2\n Document, corrupt: Can't read SSAT' error against excel\n 97/2003 file format. (bsc#1009966) gcc7 :\n\n - Support for specific IBM Power9 processor instructions.\n\n - Support for specific IBM zSeries z14 processor\n instructions.\n\n - New packages cross-npvtx-gcc7 and nvptx-tools added to\n the Toolchain Module for specific NVIDIA Card offload\n support. gzip :\n\n - fix mishandling of leading zeros in the end-of-block\n code (bsc#1067891) libsolv :\n\n - Many fixes and improvements for cleandeps.\n\n - Always create dup rules for 'distupgrade' jobs.\n\n - Use recommends also for ordering packages.\n\n - Fix splitprovides handling with addalreadyrecommended\n turned off. (bsc#1059065)\n\n - Expose solver_get_recommendations() in bindings.\n\n - Fix bug in solver_prune_to_highest_prio_per_name\n resulting in bad output from\n solver_get_recommendations().\n\n - Support 'without' and 'unless' dependencies.\n\n - Use same heuristic as upstream to determine source RPMs.\n\n - Fix memory leak in bindings.\n\n - Add pool_best_solvables() function.\n\n - Fix 64bit integer parsing from RPM headers.\n\n - Enable bzip2 and xz/lzma compression support.\n\n - Enable complex/rich dependencies on distributions with\n RPM 4.13+. libtool :\n\n - Add missing dependencies and provides to baselibs.conf\n to make sure libltdl libraries are properly installed.\n (bsc#1056381) libzypp :\n\n - Fix media handling in presence of a repo path prefix.\n (bsc#1062561)\n\n - Fix RepoProvideFile ignoring a repo path prefix.\n (bsc#1062561)\n\n - Remove unused legacy notify-message script.\n (bsc#1058783)\n\n - Support multiple product licenses in repomd.\n (fate#322276)\n\n - Propagate 'rpm --import' errors. (bsc#1057188)\n\n - Fix typos in zypp.conf. openssl :\n\n - CVE-2017-3735: openssl1,openssl: Malformed X.509\n IPAdressFamily could cause OOB read (bsc#1056058)\n\n - CVE-2017-3736: openssl: bn_sqrx8x_internal carry bug on\n x86_64 (bsc#1066242)\n\n - Out of bounds read+crash in DES_fcrypt (bsc#1065363)\n\n - openssl DEFAULT_SUSE cipher list is missing ECDHE-ECDSA\n ciphers (bsc#1055825) perl: Security issues for perl :\n\n - CVE-2017-12837: Heap-based buffer overflow in the\n S_regatom function in regcomp.c in Perl 5 before\n 5.24.3-RC1 and 5.26.x before 5.26.1-RC1 allows remote\n attackers to cause a denial of service (out-of-bounds\n write) via a regular expression with a escape and the\n case-insensitive modifier. (bnc#1057724)\n\n - CVE-2017-12883: Buffer overflow in the S_grok_bslash_N\n function in regcomp.c in Perl 5 before 5.24.3-RC1 and\n 5.26.x before 5.26.1-RC1 allows remote attackers to\n disclose sensitive information or cause a denial of\n service (application crash) via a crafted regular\n expression with an invalid escape. (bnc#1057721)\n\n - CVE-2017-6512: Race condition in the rmtree and\n remove_tree functions in the File-Path module before\n 2.13 for Perl allows attackers to set the mode on\n arbitrary files via vectors involving\n directory-permission loosening logic. (bnc#1047178) Bug\n fixes for perl :\n\n - backport set_capture_string changes from upstream\n (bsc#999735)\n\n - reformat baselibs.conf as source validator workaround\n systemd :\n\n - unit: When JobTimeoutSec= is turned off, implicitly turn\n off JobRunningTimeoutSec= too. (bsc#1048605,\n bsc#1004995)\n\n - compat-rules: Generate compat by-id symlinks with 'nvme'\n prefix missing and warn users that have broken symlinks.\n (bsc#1063249)\n\n - compat-rules: Allow to specify the generation number\n through the kernel command line.\n\n - scsi_id: Fixup prefix for pre-SPC inquiry reply.\n (bsc#1039099)\n\n - tmpfiles: Remove old ICE and X11 sockets at boot.\n\n - tmpfiles: Silently ignore any path that passes through\n autofs. (bsc#1045472)\n\n - pam_logind: Skip leading /dev/ from PAM_TTY field before\n passing it on.\n\n - shared/machine-pool: Fix another mkfs.btrfs checking.\n (bsc#1053595)\n\n - shutdown: Fix incorrect fscanf() result check.\n\n - shutdown: Don't remount,ro network filesystems.\n (bsc#1035386)\n\n - shutdown: Don't be fooled when detaching DM devices with\n BTRFS. (bsc#1055641)\n\n - bash-completion: Add support for --now. (bsc#1053137)\n\n - Add convert-lib-udev-path.sh script to convert /lib/udev\n directory into a symlink pointing to /usr/lib/udev when\n upgrading from SLE11. (bsc#1050152)\n\n - Add a rule to teach hotplug to offline containers\n transparently. (bsc#1040800) timezone :\n\n - Northern Cyprus switches from +03 to +02/+03 on\n 2017-10-29\n\n - Fiji ends DST 2018-01-14, not 2018-01-21\n\n - Namibia switches from +01/+02 to +02 on 2018-04-01\n\n - Sudan switches from +03 to +02 on 2017-11-01\n\n - Tonga likely switches from +13/+14 to +13 on 2017-11-05\n\n - Turks and Caicos switches from -04 to -05/-04 on\n 2018-11-04\n\n - Corrections to past DST transitions\n\n - Move oversized Canada/East-Saskatchewan to 'backward'\n file\n\n - zic(8) and the reference runtime now reject multiple\n leap seconds within 28 days of each other, or leap\n seconds before the Epoch. util-linux :\n\n - Allow unmounting of filesystems without calling stat()\n on the mount point, when '-c' is used. (bsc#1040968)\n\n - Fix an infinite loop, a crash and report the correct\n minimum and maximum frequencies in lscpu for some\n processors. (bsc#1055446)\n\n - Fix a lscpu failure on Sydney Amazon EC2 region.\n (bsc#1066500)\n\n - If multiple subvolumes are mounted, report the default\n subvolume. (bsc#1039276) velum :\n\n - Fix logout issue on DEX download page * page doesn't\n exist (bsc#1066611)\n\n - Handle invalid sessions more user friendly\n\n - Fix undesired minimum nodes alert blink (bsc#1066371)\n wicked :\n\n - A regression in wicked was causing the hostname not to\n be set correctly via DHCP in some cases\n (bsc#1057007,bsc#1050258)\n\n - Configure the interface MTU correctly even in cases\n where the interface was up already (bsc#1059292)\n\n - Don't abort the process that adds configures routes if\n one route fails (bsc#1036619)\n\n - Handle DHCP4 user-class ids properly (bsc#1045522)\n\n - ethtool: handle channels parameters (bsc#1043883) \nzypper :\n\n - Locale: Fix possible segmentation fault. (bsc#1064999)\n\n - Add summary hint if product is better updated by a\n different command. This is mainly used by rolling\n distributions like openSUSE Tumbleweed to remind their\n users to use 'zypper dup' to update (not zypper up or\n patch). (bsc#1061384)\n\n - Unify '(add|modify)(repo|service)' property related\n arguments.\n\n - Fixed 'add' commands supporting to set only a subset of\n properties.\n\n - Introduced '-f/-F' as preferred short option for\n --[no-]refresh in all four commands. (bsc#661410,\n bsc#1053671)\n\n - Fix missing package names in installation report.\n (bsc#1058695)\n\n - Differ between unsupported and packages with unknown\n support status. (bsc#1057634)\n\n - Return error code '107' if an RPM's %post configuration\n script fails, but only if ZYPPER_ON_CODE12_RETURN_107=1\n is set in the environment. (bsc#1047233)\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the SUSE security advisory. Tenable\nhas attempted to automatically clean and format it as much as possible\nwithout introducing additional issues.", "edition": 28, "cvss3": {"score": 9.8, "vector": "AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"}, "published": "2018-01-17T00:00:00", "title": "SUSE SLES12 Security Update : CaaS Platform 2.0 images (SUSE-SU-2018:0053-1)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2017-12837", "CVE-2017-9755", "CVE-2017-12456", "CVE-2017-14745", "CVE-2017-14130", "CVE-2014-8117", "CVE-2014-8116", "CVE-2017-12448", "CVE-2017-7223", "CVE-2017-3735", "CVE-2017-14529", "CVE-2017-14729", "CVE-2017-14974", "CVE-2017-7299", "CVE-2017-9746", "CVE-2017-7300", "CVE-2017-12883", "CVE-2017-8396", "CVE-2017-14128", "CVE-2017-12453", "CVE-2017-3737", "CVE-2017-8394", "CVE-2017-6512", "CVE-2017-7224", "CVE-2014-9620", "CVE-2017-7303", "CVE-2017-12450", "CVE-2017-9750", "CVE-2017-9756", "CVE-2017-12799", "CVE-2017-7302", "CVE-2017-9748", "CVE-2014-9939", "CVE-2014-9621", "CVE-2014-3710", "CVE-2017-6966", "CVE-2017-14333", "CVE-2017-7225", "CVE-2017-12452", "CVE-2014-9653", "CVE-2017-8393", "CVE-2017-8392", "CVE-2017-7301", "CVE-2017-6965", "CVE-2017-3738", "CVE-2017-7210", "CVE-2017-7304", "CVE-2017-7209", "CVE-2017-7226", "CVE-2017-3736", "CVE-2017-13757", "CVE-2017-9747", "CVE-2017-14129", "CVE-2017-8421", "CVE-2017-12454", "CVE-2017-6969"], "modified": "2021-01-02T00:00:00", "cpe": ["p-cpe:/a:novell:suse_linux:sles12-caasp-dex-image", "p-cpe:/a:novell:suse_linux:sles12-sidecar-image", "cpe:/o:novell:suse_linux:12", "p-cpe:/a:novell:suse_linux:sles12-kubedns-image", "p-cpe:/a:novell:suse_linux:sles12-velum-image", "p-cpe:/a:novell:suse_linux:sles12-dnsmasq-nanny-image", "p-cpe:/a:novell:suse_linux:sles12-salt-api-image", "p-cpe:/a:novell:suse_linux:sles12-haproxy-image", "p-cpe:/a:novell:suse_linux:sles12-mariadb-image", "p-cpe:/a:novell:suse_linux:sles12-salt-master-image", "p-cpe:/a:novell:suse_linux:sles12-tiller-image", "p-cpe:/a:novell:suse_linux:sles12-openldap-image", "p-cpe:/a:novell:suse_linux:sles12-pv-recycler-node-image", "p-cpe:/a:novell:suse_linux:sles12-salt-minion-image", "p-cpe:/a:novell:suse_linux:sles12-pause-image"], "id": "SUSE_SU-2018-0053-1.NASL", "href": "https://www.tenable.com/plugins/nessus/106092", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were\n# extracted from SUSE update advisory SUSE-SU-2018:0053-1.\n# The text itself is copyright (C) SUSE.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(106092);\n script_version(\"3.8\");\n script_cvs_date(\"Date: 2019/09/10 13:51:46\");\n\n script_cve_id(\"CVE-2014-3710\", \"CVE-2014-8116\", \"CVE-2014-8117\", \"CVE-2014-9620\", \"CVE-2014-9621\", \"CVE-2014-9653\", \"CVE-2014-9939\", \"CVE-2017-12448\", \"CVE-2017-12450\", \"CVE-2017-12452\", \"CVE-2017-12453\", \"CVE-2017-12454\", \"CVE-2017-12456\", \"CVE-2017-12799\", \"CVE-2017-12837\", \"CVE-2017-12883\", \"CVE-2017-13757\", \"CVE-2017-14128\", \"CVE-2017-14129\", \"CVE-2017-14130\", \"CVE-2017-14333\", \"CVE-2017-14529\", \"CVE-2017-14729\", \"CVE-2017-14745\", \"CVE-2017-14974\", \"CVE-2017-3735\", \"CVE-2017-3736\", \"CVE-2017-3737\", \"CVE-2017-3738\", \"CVE-2017-6512\", \"CVE-2017-6965\", \"CVE-2017-6966\", \"CVE-2017-6969\", \"CVE-2017-7209\", \"CVE-2017-7210\", \"CVE-2017-7223\", \"CVE-2017-7224\", \"CVE-2017-7225\", \"CVE-2017-7226\", \"CVE-2017-7299\", \"CVE-2017-7300\", \"CVE-2017-7301\", \"CVE-2017-7302\", \"CVE-2017-7303\", \"CVE-2017-7304\", \"CVE-2017-8392\", \"CVE-2017-8393\", \"CVE-2017-8394\", \"CVE-2017-8396\", \"CVE-2017-8421\", \"CVE-2017-9746\", \"CVE-2017-9747\", \"CVE-2017-9748\", \"CVE-2017-9750\", \"CVE-2017-9755\", \"CVE-2017-9756\");\n script_bugtraq_id(70807, 71692, 71700, 71714, 71715, 72516);\n\n script_name(english:\"SUSE SLES12 Security Update : CaaS Platform 2.0 images (SUSE-SU-2018:0053-1)\");\n script_summary(english:\"Checks rpm output for the updated packages.\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote SUSE host is missing one or more security updates.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"The Docker images provided with SUSE CaaS Platform 2.0 have been\nupdated to include the following updates: binutils :\n\n - Update to version 2.29\n\n - 18750 bsc#1030296 CVE-2014-9939\n\n - 20891 bsc#1030585 CVE-2017-7225\n\n - 20892 bsc#1030588 CVE-2017-7224\n\n - 20898 bsc#1030589 CVE-2017-7223\n\n - 20905 bsc#1030584 CVE-2017-7226\n\n - 20908 bsc#1031644 CVE-2017-7299\n\n - 20909 bsc#1031656 CVE-2017-7300\n\n - 20921 bsc#1031595 CVE-2017-7302\n\n - 20922 bsc#1031593 CVE-2017-7303\n\n - 20924 bsc#1031638 CVE-2017-7301\n\n - 20931 bsc#1031590 CVE-2017-7304\n\n - 21135 bsc#1030298 CVE-2017-7209\n\n - 21137 bsc#1029909 CVE-2017-6965\n\n - 21139 bsc#1029908 CVE-2017-6966\n\n - 21156 bsc#1029907 CVE-2017-6969\n\n - 21157 bsc#1030297 CVE-2017-7210\n\n - 21409 bsc#1037052 CVE-2017-8392\n\n - 21412 bsc#1037057 CVE-2017-8393\n\n - 21414 bsc#1037061 CVE-2017-8394\n\n - 21432 bsc#1037066 CVE-2017-8396\n\n - 21440 bsc#1037273 CVE-2017-8421\n\n - 21580 bsc#1044891 CVE-2017-9746\n\n - 21581 bsc#1044897 CVE-2017-9747\n\n - 21582 bsc#1044901 CVE-2017-9748\n\n - 21587 bsc#1044909 CVE-2017-9750\n\n - 21594 bsc#1044925 CVE-2017-9755\n\n - 21595 bsc#1044927 CVE-2017-9756\n\n - 21787 bsc#1052518 CVE-2017-12448\n\n - 21813 bsc#1052503, CVE-2017-12456, bsc#1052507,\n CVE-2017-12454, bsc#1052509, CVE-2017-12453,\n bsc#1052511, CVE-2017-12452, bsc#1052514,\n CVE-2017-12450, bsc#1052503, CVE-2017-12456,\n bsc#1052507, CVE-2017-12454, bsc#1052509,\n CVE-2017-12453, bsc#1052511, CVE-2017-12452,\n bsc#1052514, CVE-2017-12450\n\n - 21933 bsc#1053347 CVE-2017-12799\n\n - 21990 bsc#1058480 CVE-2017-14333\n\n - 22018 bsc#1056312 CVE-2017-13757\n\n - 22047 bsc#1057144 CVE-2017-14129\n\n - 22058 bsc#1057149 CVE-2017-14130\n\n - 22059 bsc#1057139 CVE-2017-14128\n\n - 22113 bsc#1059050 CVE-2017-14529\n\n - 22148 bsc#1060599 CVE-2017-14745\n\n - 22163 bsc#1061241 CVE-2017-14974\n\n - 22170 bsc#1060621 CVE-2017-14729\n\n - Make compressed debug section handling explicit, disable\n for old products and enable for gas on all architectures\n otherwise. [bsc#1029995]\n\n - Remove empty rpath component removal optimization from\n to workaround CMake rpath handling. [bsc#1025282]\n\n - Fix alignment frags for aarch64 (bsc#1003846) \ncoreutils :\n\n - Fix df(1) to no longer interact with excluded file\n system types, so for example specifying -x nfs no longer\n hangs with problematic nfs mounts. (bsc#1026567)\n\n - Ensure df -l no longer interacts with dummy file system\n types, so for example no longer hangs with problematic\n NFS mounted via system.automount(5). (bsc#1043059)\n\n - Significantly speed up df(1) for huge mount lists.\n (bsc#965780) file :\n\n - update to version 5.22.\n\n - CVE-2014-9621: The ELF parser in file allowed remote\n attackers to cause a denial of service via a long\n string. (bsc#913650)\n\n - CVE-2014-9620: The ELF parser in file allowed remote\n attackers to cause a denial of service via a large\n number of notes. (bsc#913651)\n\n - CVE-2014-9653: readelf.c in file did not consider that\n pread calls sometimes read only a subset of the\n available data, which allows remote attackers to cause a\n denial of service (uninitialized memory access) or\n possibly have unspecified other impact via a crafted ELF\n file. (bsc#917152)\n\n - CVE-2014-8116: The ELF parser (readelf.c) in file\n allowed remote attackers to cause a denial of service\n (CPU consumption or crash) via a large number of (1)\n program or (2) section headers or (3) invalid\n capabilities. (bsc#910253)\n\n - CVE-2014-8117: softmagic.c in file did not properly\n limit recursion, which allowed remote attackers to cause\n a denial of service (CPU consumption or crash) via\n unspecified vectors. (bsc#910253)\n\n - Fixed a memory corruption during rpmbuild (bsc#1063269)\n\n - Backport of a fix for an increased printable string\n length as found in file 5.30 (bsc#996511)\n\n - file command throws 'Composite Document File V2\n Document, corrupt: Can't read SSAT' error against excel\n 97/2003 file format. (bsc#1009966) gcc7 :\n\n - Support for specific IBM Power9 processor instructions.\n\n - Support for specific IBM zSeries z14 processor\n instructions.\n\n - New packages cross-npvtx-gcc7 and nvptx-tools added to\n the Toolchain Module for specific NVIDIA Card offload\n support. gzip :\n\n - fix mishandling of leading zeros in the end-of-block\n code (bsc#1067891) libsolv :\n\n - Many fixes and improvements for cleandeps.\n\n - Always create dup rules for 'distupgrade' jobs.\n\n - Use recommends also for ordering packages.\n\n - Fix splitprovides handling with addalreadyrecommended\n turned off. (bsc#1059065)\n\n - Expose solver_get_recommendations() in bindings.\n\n - Fix bug in solver_prune_to_highest_prio_per_name\n resulting in bad output from\n solver_get_recommendations().\n\n - Support 'without' and 'unless' dependencies.\n\n - Use same heuristic as upstream to determine source RPMs.\n\n - Fix memory leak in bindings.\n\n - Add pool_best_solvables() function.\n\n - Fix 64bit integer parsing from RPM headers.\n\n - Enable bzip2 and xz/lzma compression support.\n\n - Enable complex/rich dependencies on distributions with\n RPM 4.13+. libtool :\n\n - Add missing dependencies and provides to baselibs.conf\n to make sure libltdl libraries are properly installed.\n (bsc#1056381) libzypp :\n\n - Fix media handling in presence of a repo path prefix.\n (bsc#1062561)\n\n - Fix RepoProvideFile ignoring a repo path prefix.\n (bsc#1062561)\n\n - Remove unused legacy notify-message script.\n (bsc#1058783)\n\n - Support multiple product licenses in repomd.\n (fate#322276)\n\n - Propagate 'rpm --import' errors. (bsc#1057188)\n\n - Fix typos in zypp.conf. openssl :\n\n - CVE-2017-3735: openssl1,openssl: Malformed X.509\n IPAdressFamily could cause OOB read (bsc#1056058)\n\n - CVE-2017-3736: openssl: bn_sqrx8x_internal carry bug on\n x86_64 (bsc#1066242)\n\n - Out of bounds read+crash in DES_fcrypt (bsc#1065363)\n\n - openssl DEFAULT_SUSE cipher list is missing ECDHE-ECDSA\n ciphers (bsc#1055825) perl: Security issues for perl :\n\n - CVE-2017-12837: Heap-based buffer overflow in the\n S_regatom function in regcomp.c in Perl 5 before\n 5.24.3-RC1 and 5.26.x before 5.26.1-RC1 allows remote\n attackers to cause a denial of service (out-of-bounds\n write) via a regular expression with a escape and the\n case-insensitive modifier. (bnc#1057724)\n\n - CVE-2017-12883: Buffer overflow in the S_grok_bslash_N\n function in regcomp.c in Perl 5 before 5.24.3-RC1 and\n 5.26.x before 5.26.1-RC1 allows remote attackers to\n disclose sensitive information or cause a denial of\n service (application crash) via a crafted regular\n expression with an invalid escape. (bnc#1057721)\n\n - CVE-2017-6512: Race condition in the rmtree and\n remove_tree functions in the File-Path module before\n 2.13 for Perl allows attackers to set the mode on\n arbitrary files via vectors involving\n directory-permission loosening logic. (bnc#1047178) Bug\n fixes for perl :\n\n - backport set_capture_string changes from upstream\n (bsc#999735)\n\n - reformat baselibs.conf as source validator workaround\n systemd :\n\n - unit: When JobTimeoutSec= is turned off, implicitly turn\n off JobRunningTimeoutSec= too. (bsc#1048605,\n bsc#1004995)\n\n - compat-rules: Generate compat by-id symlinks with 'nvme'\n prefix missing and warn users that have broken symlinks.\n (bsc#1063249)\n\n - compat-rules: Allow to specify the generation number\n through the kernel command line.\n\n - scsi_id: Fixup prefix for pre-SPC inquiry reply.\n (bsc#1039099)\n\n - tmpfiles: Remove old ICE and X11 sockets at boot.\n\n - tmpfiles: Silently ignore any path that passes through\n autofs. (bsc#1045472)\n\n - pam_logind: Skip leading /dev/ from PAM_TTY field before\n passing it on.\n\n - shared/machine-pool: Fix another mkfs.btrfs checking.\n (bsc#1053595)\n\n - shutdown: Fix incorrect fscanf() result check.\n\n - shutdown: Don't remount,ro network filesystems.\n (bsc#1035386)\n\n - shutdown: Don't be fooled when detaching DM devices with\n BTRFS. (bsc#1055641)\n\n - bash-completion: Add support for --now. (bsc#1053137)\n\n - Add convert-lib-udev-path.sh script to convert /lib/udev\n directory into a symlink pointing to /usr/lib/udev when\n upgrading from SLE11. (bsc#1050152)\n\n - Add a rule to teach hotplug to offline containers\n transparently. (bsc#1040800) timezone :\n\n - Northern Cyprus switches from +03 to +02/+03 on\n 2017-10-29\n\n - Fiji ends DST 2018-01-14, not 2018-01-21\n\n - Namibia switches from +01/+02 to +02 on 2018-04-01\n\n - Sudan switches from +03 to +02 on 2017-11-01\n\n - Tonga likely switches from +13/+14 to +13 on 2017-11-05\n\n - Turks and Caicos switches from -04 to -05/-04 on\n 2018-11-04\n\n - Corrections to past DST transitions\n\n - Move oversized Canada/East-Saskatchewan to 'backward'\n file\n\n - zic(8) and the reference runtime now reject multiple\n leap seconds within 28 days of each other, or leap\n seconds before the Epoch. util-linux :\n\n - Allow unmounting of filesystems without calling stat()\n on the mount point, when '-c' is used. (bsc#1040968)\n\n - Fix an infinite loop, a crash and report the correct\n minimum and maximum frequencies in lscpu for some\n processors. (bsc#1055446)\n\n - Fix a lscpu failure on Sydney Amazon EC2 region.\n (bsc#1066500)\n\n - If multiple subvolumes are mounted, report the default\n subvolume. (bsc#1039276) velum :\n\n - Fix logout issue on DEX download page * page doesn't\n exist (bsc#1066611)\n\n - Handle invalid sessions more user friendly\n\n - Fix undesired minimum nodes alert blink (bsc#1066371)\n wicked :\n\n - A regression in wicked was causing the hostname not to\n be set correctly via DHCP in some cases\n (bsc#1057007,bsc#1050258)\n\n - Configure the interface MTU correctly even in cases\n where the interface was up already (bsc#1059292)\n\n - Don't abort the process that adds configures routes if\n one route fails (bsc#1036619)\n\n - Handle DHCP4 user-class ids properly (bsc#1045522)\n\n - ethtool: handle channels parameters (bsc#1043883) \nzypper :\n\n - Locale: Fix possible segmentation fault. (bsc#1064999)\n\n - Add summary hint if product is better updated by a\n different command. This is mainly used by rolling\n distributions like openSUSE Tumbleweed to remind their\n users to use 'zypper dup' to update (not zypper up or\n patch). (bsc#1061384)\n\n - Unify '(add|modify)(repo|service)' property related\n arguments.\n\n - Fixed 'add' commands supporting to set only a subset of\n properties.\n\n - Introduced '-f/-F' as preferred short option for\n --[no-]refresh in all four commands. (bsc#661410,\n bsc#1053671)\n\n - Fix missing package names in installation report.\n (bsc#1058695)\n\n - Differ between unsupported and packages with unknown\n support status. (bsc#1057634)\n\n - Return error code '107' if an RPM's %post configuration\n script fails, but only if ZYPPER_ON_CODE12_RETURN_107=1\n is set in the environment. (bsc#1047233)\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the SUSE security advisory. Tenable\nhas attempted to automatically clean and format it as much as possible\nwithout introducing additional issues.\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1003846\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1004995\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1009966\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1022404\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1025282\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1025891\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1026567\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1029907\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1029908\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1029909\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1029995\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1030623\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1035386\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1036619\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1039099\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1039276\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1039513\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1040800\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1040968\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1041090\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1043059\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1043590\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1043883\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1043966\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1044016\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1045472\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1045522\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1045732\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1047178\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1047233\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1048605\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1048861\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1050152\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1050258\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1050487\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1052503\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1052507\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1052509\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1052511\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1052514\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1052518\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1053137\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1053347\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1053595\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1053671\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1055446\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1055641\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1055825\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1056058\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1056312\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1056381\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1057007\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1057139\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1057144\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1057149\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1057188\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1057634\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1057721\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1057724\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1058480\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1058695\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1058783\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1059050\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1059065\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1059075\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1059292\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1059723\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1060599\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1060621\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1061241\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1061384\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1062561\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1063249\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1063269\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1064571\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1064999\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1065363\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1066242\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1066371\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1066500\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1066611\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1067891\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1070878\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1070958\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1071905\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1071906\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2014-3710/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2014-8116/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2014-8117/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2014-9620/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2014-9621/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2014-9653/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12448/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12450/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12452/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12453/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12454/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12456/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12799/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12837/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-12883/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-13757/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14128/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14129/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14130/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14333/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14529/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14729/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14745/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-14974/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-3735/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-3736/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-3737/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-3738/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2017-6512/\"\n );\n # https://www.suse.com/support/update/announcement/2018/suse-su-20180053-1/\n script_set_attribute(\n attribute:\"see_also\",\n value:\"http://www.nessus.org/u?b2e30c71\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\n\"To install this SUSE Security Update use YaST online_update.\nAlternatively you can run the command listed for your product :\n\nSUSE CaaS Platform ALL:zypper in -t patch SUSE-CAASP-ALL-2018-40=1\n\nTo bring your system up-to-date, use 'zypper patch'.\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P\");\n script_set_cvss_temporal_vector(\"CVSS2#E:POC/RL:OF/RC:C\");\n script_set_cvss3_base_vector(\"CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H\");\n script_set_cvss3_temporal_vector(\"CVSS:3.0/E:P/RL:O/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:sles12-caasp-dex-image\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:sles12-dnsmasq-nanny-image\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:sles12-haproxy-image\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:sles12-kubedns-image\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:sles12-mariadb-image\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:sles12-openldap-image\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:sles12-pause-image\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:sles12-pv-recycler-node-image\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:sles12-salt-api-image\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:sles12-salt-master-image\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:sles12-salt-minion-image\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:sles12-sidecar-image\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:sles12-tiller-image\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:sles12-velum-image\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:novell:suse_linux:12\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2014/11/05\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2018/01/09\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2018/01/17\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2018-2019 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"SuSE Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/cpu\", \"Host/SuSE/release\", \"Host/SuSE/rpm-list\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"rpm.inc\");\n\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nrelease = get_kb_item(\"Host/SuSE/release\");\nif (isnull(release) || release !~ \"^(SLED|SLES)\") audit(AUDIT_OS_NOT, \"SUSE\");\nos_ver = pregmatch(pattern: \"^(SLE(S|D)\\d+)\", string:release);\nif (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, \"SUSE\");\nos_ver = os_ver[1];\nif (! preg(pattern:\"^(SLES12)$\", string:os_ver)) audit(AUDIT_OS_NOT, \"SUSE SLES12\", \"SUSE \" + os_ver);\n\nif (!get_kb_item(\"Host/SuSE/rpm-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\ncpu = get_kb_item(\"Host/cpu\");\nif (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);\nif (cpu !~ \"^i[3-6]86$\" && \"x86_64\" >!< cpu && \"s390x\" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, \"SUSE \" + os_ver, cpu);\nif (cpu >!< \"x86_64\") audit(AUDIT_ARCH_NOT, \"x86_64\", cpu);\n\n\n\nflag = 0;\nif (rpm_check(release:\"SLES12\", cpu:\"x86_64\", reference:\"sles12-caasp-dex-image-2.0.0-3.3.11\")) flag++;\nif (rpm_check(release:\"SLES12\", cpu:\"x86_64\", reference:\"sles12-dnsmasq-nanny-image-2.0.1-2.3.15\")) flag++;\nif (rpm_check(release:\"SLES12\", cpu:\"x86_64\", reference:\"sles12-haproxy-image-2.0.1-2.3.16\")) flag++;\nif (rpm_check(release:\"SLES12\", cpu:\"x86_64\", reference:\"sles12-kubedns-image-2.0.1-2.3.11\")) flag++;\nif (rpm_check(release:\"SLES12\", cpu:\"x86_64\", reference:\"sles12-mariadb-image-2.0.1-2.3.15\")) flag++;\nif (rpm_check(release:\"SLES12\", cpu:\"x86_64\", reference:\"sles12-openldap-image-2.0.0-2.3.11\")) flag++;\nif (rpm_check(release:\"SLES12\", cpu:\"x86_64\", reference:\"sles12-pause-image-2.0.1-2.3.9\")) flag++;\nif (rpm_check(release:\"SLES12\", cpu:\"x86_64\", reference:\"sles12-pv-recycler-node-image-2.0.1-2.3.10\")) flag++;\nif (rpm_check(release:\"SLES12\", cpu:\"x86_64\", reference:\"sles12-salt-api-image-2.0.1-2.3.10\")) flag++;\nif (rpm_check(release:\"SLES12\", cpu:\"x86_64\", reference:\"sles12-salt-master-image-2.0.1-2.3.10\")) flag++;\nif (rpm_check(release:\"SLES12\", cpu:\"x86_64\", reference:\"sles12-salt-minion-image-2.0.1-2.3.14\")) flag++;\nif (rpm_check(release:\"SLES12\", cpu:\"x86_64\", reference:\"sles12-sidecar-image-2.0.1-2.3.11\")) flag++;\nif (rpm_check(release:\"SLES12\", cpu:\"x86_64\", reference:\"sles12-tiller-image-2.0.0-2.3.11\")) flag++;\nif (rpm_check(release:\"SLES12\", cpu:\"x86_64\", reference:\"sles12-velum-image-2.0.1-2.3.13\")) flag++;\n\n\nif (flag)\n{\n if (report_verbosity > 0) security_hole(port:0, extra:rpm_report_get());\n else security_hole(0);\n exit(0);\n}\nelse\n{\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"CaaS Platform 2.0 images\");\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2021-01-20T12:31:35", "description": "GNU binutil was updated to the 2.29.1 release, bringing various new\nfeatures, fixing a lot of bugs and security issues.\n\nFollowing security issues are being addressed by this release :\n\n - 18750 bsc#1030296 CVE-2014-9939\n\n - 20891 bsc#1030585 CVE-2017-7225\n\n - 20892 bsc#1030588 CVE-2017-7224\n\n - 20898 bsc#1030589 CVE-2017-7223\n\n - 20905 bsc#1030584 CVE-2017-7226\n\n - 20908 bsc#1031644 CVE-2017-7299\n\n - 20909 bsc#1031656 CVE-2017-7300\n\n - 20921 bsc#1031595 CVE-2017-7302\n\n - 20922 bsc#1031593 CVE-2017-7303\n\n - 20924 bsc#1031638 CVE-2017-7301\n\n - 20931 bsc#1031590 CVE-2017-7304\n\n - 21135 bsc#1030298 CVE-2017-7209 \n\n - 21137 bsc#1029909 CVE-2017-6965\n\n - 21139 bsc#1029908 CVE-2017-6966\n\n - 21156 bsc#1029907 CVE-2017-6969\n\n - 21157 bsc#1030297 CVE-2017-7210\n\n - 21409 bsc#1037052 CVE-2017-8392\n\n - 21412 bsc#1037057 CVE-2017-8393\n\n - 21414 bsc#1037061 CVE-2017-8394\n\n - 21432 bsc#1037066 CVE-2017-8396\n\n - 21440 bsc#1037273 CVE-2017-8421\n\n - 21580 bsc#1044891 CVE-2017-9746\n\n - 21581 bsc#1044897 CVE-2017-9747\n\n - 21582 bsc#1044901 CVE-2017-9748\n\n - 21587 bsc#1044909 CVE-2017-9750\n\n - 21594 bsc#1044925 CVE-2017-9755\n\n - 21595 bsc#1044927 CVE-2017-9756\n\n - 21787 bsc#1052518 CVE-2017-12448\n\n - 21813 bsc#1052503, CVE-2017-12456, bsc#1052507,\n CVE-2017-12454, bsc#1052509, CVE-2017-12453,\n bsc#1052511, CVE-2017-12452, bsc#1052514,\n CVE-2017-12450, bsc#1052503, CVE-2017-12456,\n bsc#1052507, CVE-2017-12454, bsc#1052509,\n CVE-2017-12453, bsc#1052511, CVE-2017-12452,\n bsc#1052514, CVE-2017-12450\n\n - 21933 bsc#1053347 CVE-2017-12799\n\n - 21990 bsc#1058480 CVE-2017-14333\n\n - 22018 bsc#1056312 CVE-2017-13757\n\n - 22047 bsc#1057144 CVE-2017-14129\n\n - 22058 bsc#1057149 CVE-2017-14130\n\n - 22059 bsc#1057139 CVE-2017-14128\n\n - 22113 bsc#1059050 CVE-2017-14529\n\n - 22148 bsc#1060599 CVE-2017-14745\n\n - 22163 bsc#1061241 CVE-2017-14974\n\n - 22170 bsc#1060621 CVE-2017-14729\n\nUpdate to binutils 2.29. [fate#321454, fate#321494, fate#323293] :\n\n - The MIPS port now supports microMIPS eXtended Physical\n Addressing (XPA) instructions for assembly and\n disassembly.\n\n - The MIPS port now supports the microMIPS Release 5 ISA\n for assembly and disassembly.\n\n - The MIPS port now supports the Imagination interAptiv\n MR2 processor, which implements the MIPS32r3 ISA, the\n MIPS16e2 ASE as well as a couple of\n implementation-specific regular MIPS and MIPS16e2 ASE\n instructions.\n\n - The SPARC port now supports the SPARC M8 processor,\n which implements the Oracle SPARC Architecture 2017.\n\n - The MIPS port now supports the MIPS16e2 ASE for assembly\n and disassembly.\n\n - Add support for ELF SHF_GNU_MBIND and PT_GNU_MBIND_XXX.\n\n - Add support for the wasm32 ELF conversion of the\n WebAssembly file format.\n\n - Add --inlines option to objdump, which extends the\n --line-numbers option so that inlined functions will\n display their nesting information.\n\n - Add --merge-notes options to objcopy to reduce the size\n of notes in a binary file by merging and deleting\n redundant notes.\n\n - Add support for locating separate debug info files using\n the build-id method, where the separate file has a name\n based upon the build-id of the original file.\n\n - GAS specific :\n\n - Add support for ELF SHF_GNU_MBIND.\n\n - Add support for the WebAssembly file format and wasm32\n ELF conversion.\n\n - PowerPC gas now checks that the correct register class\n is used in instructions. For instance, 'addi\n %f4,%cr3,%r31' warns three times that the registers are\n invalid.\n\n - Add support for the Texas Instruments PRU processor.\n\n - Support for the ARMv8-R architecture and Cortex-R52\n processor has been added to the ARM port.\n\n - GNU ld specific :\n\n - Support for -z shstk in the x86 ELF linker to generate\n GNU_PROPERTY_X86_FEATURE_1_SHSTK in ELF GNU program\n properties.\n\n - Add support for GNU_PROPERTY_X86_FEATURE_1_SHSTK in ELF\n GNU program properties in the x86 ELF linker.\n\n - Add support for GNU_PROPERTY_X86_FEATURE_1_IBT in ELF\n GNU program properties in the x86 ELF linker.\n\n - Support for -z ibtplt in the x86 ELF linker to generate\n IBT-enabled PLT.\n\n - Support for -z ibt in the x86 ELF linker to generate\n IBT-enabled PLT as well as\n GNU_PROPERTY_X86_FEATURE_1_IBT in ELF GNU program\n properties.\n\n - Add support for ELF SHF_GNU_MBIND and PT_GNU_MBIND_XXX.\n\n - Add support for ELF GNU program properties.\n\n - Add support for the Texas Instruments PRU processor.\n\n - When configuring for arc*-*-linux* targets the default\n linker emulation will change if --with-cpu=nps400 is\n used at configure time.\n\n - Improve assignment of LMAs to orphan sections in some\n edge cases where a mixture of both AT>LMA_REGION and\n AT(LMA) are used.\n\n - Orphan sections placed after an empty section that has\n an AT(LMA) will now take an load memory address starting\n from LMA.\n\n - Section groups can now be resolved (the group deleted\n and the group members placed like normal sections) at\n partial link time either using the new linker option\n --force-group-allocation or by placing\n FORCE_GROUP_ALLOCATION into the linker script.\n\n - Add riscv64 target, tested with gcc7 and downstream\n newlib 2.4.0\n\n - Prepare riscv32 target (gh#riscv/riscv-newlib#8)\n\n - Make compressed debug section handling explicit, disable\n for old products and enable for gas on all architectures\n otherwise. [bsc#1029995]\n\n - Remove empty rpath component removal optimization from\n to workaround CMake rpath handling. [bsc#1025282]\n\n Minor security bugs fixed: PR 21147, PR 21148, PR 21149,\n PR 21150, PR 21151, PR 21155, PR 21158, PR 21159\n\n - Update to binutils 2.28.\n\n - Add support for locating separate debug info files using\n the build-id method, where the separate file has a name\n based upon the build-id of the original file.\n\n - This version of binutils fixes a problem with PowerPC\n VLE 16A and 16D relocations which were functionally\n swapped, for example, R_PPC_VLE_HA16A performed like\n R_PPC_VLE_HA16D while R_PPC_VLE_HA16D performed like\n R_PPC_VLE_HA16A. This could have been fixed by\n renumbering relocations, which would keep object files\n created by an older version of gas compatible with a\n newer ld. However, that would require an ABI update,\n affecting other assemblers and linkers that create and\n process the relocations correctly. It is recommended\n that all VLE object files be recompiled, but ld can\n modify the relocations if --vle-reloc-fixup is passed to\n ld. If the new ld command line option is not used, ld\n will ld warn on finding relocations inconsistent with\n the instructions being relocated.\n\n - The nm program has a new command line option\n (--with-version-strings) which will display a symbol's\n version information, if any, after the symbol's name.\n\n - The ARC port of objdump now accepts a -M option to\n specify the extra instruction class(es) that should be\n disassembled.\n\n - The --remove-section option for objcopy and strip now\n accepts section patterns starting with an exclamation\n point to indicate a non-matching section. A non-matching\n section is removed from the set of sections matched by\n an earlier --remove-section pattern.\n\n - The --only-section option for objcopy now accepts\n section patterns starting with an exclamation point to\n indicate a non-matching section. A non-matching section\n is removed from the set of sections matched by an\n earlier --only-section pattern.\n\n - New --remove-relocations=SECTIONPATTERN option for\n objcopy and strip. This option can be used to remove\n sections containing relocations. The SECTIONPATTERN is\n the section to which the relocations apply, not the\n relocation section itself.\n\n - GAS specific :\n\n - Add support for the RISC-V architecture.\n\n - Add support for the ARM Cortex-M23 and Cortex-M33\n processors.\n\n - GNU ld specific :\n\n - The EXCLUDE_FILE linker script construct can now be\n applied outside of the section list in order for the\n exclusions to apply over all input sections in the list.\n\n - Add support for the RISC-V architecture.\n\n - The command line option --no-eh-frame-hdr can now be\n used in ELF based linkers to disable the automatic\n generation of .eh_frame_hdr sections.\n\n - Add --in-implib=<infile> to the ARM linker to enable\n specifying a set of Secure Gateway veneers that must\n exist in the output import library specified by\n --out-implib=<outfile> and the address they must have.\n As such, --in-implib is only supported in combination\n with --cmse-implib.\n\n - Extended the --out-implib=<file> option, previously\n restricted to x86 PE targets, to any ELF based target.\n This allows the generation of an import library for an\n ELF executable, which can then be used by another\n application to link against the executable.\n\n - GOLD specific :\n\n - Add -z bndplt option (x86-64 only) to support Intel MPX.\n\n - Add --orphan-handling option.\n\n - Add --stub-group-multi option (PowerPC only).\n\n - Add --target1-rel, --target1-abs, --target2 options (Arm\n only).\n\n - Add -z stack-size option.\n\n - Add --be8 option (Arm only).\n\n - Add HIDDEN support in linker scripts.\n\n - Add SORT_BY_INIT_PRIORITY support in linker scripts.\n\n - Other fixes :\n\n - Fix section alignment on .gnu_debuglink. [bso#21193]\n\n - Add s390x to gold_archs.\n\n - Fix alignment frags for aarch64 (bsc#1003846)\n\n - Call ldconfig for libbfd\n\n - Fix an assembler problem with clang on ARM.\n\n - Restore monotonically increasing section offsets.\n\n - Update to binutils 2.27.\n\n - Add a configure option, --enable-64-bit-archive, to\n force use of a 64-bit format when creating an archive\n symbol index.\n\n - Add --elf-stt-common= option to objcopy for ELF targets\n to control whether to convert common symbols to the\n STT_COMMON type.\n\n - GAS specific :\n\n - Default to --enable-compressed-debug-sections=gas for\n Linux/x86 targets.\n\n - Add --no-pad-sections to stop the assembler from padding\n the end of output sections up to their alignment\n boundary.\n\n - Support for the ARMv8-M architecture has been added to\n the ARM port. Support for the ARMv8-M Security and DSP\n Extensions has also been added to the ARM port.\n\n - ARC backend accepts .extInstruction, .extCondCode,\n .extAuxRegister, and .extCoreRegister pseudo-ops that\n allow an user to define custom instructions, conditional\n codes, auxiliary and core registers.\n\n - Add a configure option --enable-elf-stt-common to decide\n whether ELF assembler should generate common symbols\n with the STT_COMMON type by default. Default to no.\n\n - New command line option --elf-stt-common= for ELF\n targets to control whether to generate common symbols\n with the STT_COMMON type.\n\n - Add ability to set section flags and types via numeric\n values for ELF based targets.\n\n - Add a configure option --enable-x86-relax-relocations to\n decide whether x86 assembler should generate relax\n relocations by default. Default to yes, except for x86\n Solaris targets older than Solaris 12.\n\n - New command line option -mrelax-relocations= for x86\n target to control whether to generate relax relocations.\n\n - New command line option -mfence-as-lock-add=yes for x86\n target to encode lfence, mfence and sfence as 'lock addl\n $0x0, (%[re]sp)'.\n\n - Add assembly-time relaxation option for ARC cpus.\n\n - Add --with-cpu=TYPE configure option for ARC gas. This\n allows the default cpu type to be adjusted at configure\n time.\n\n - GOLD specific :\n\n - Add a configure option --enable-relro to decide whether\n -z relro should be enabled by default. Default to yes.\n\n - Add support for s390, MIPS, AArch64, and TILE-Gx\n architectures.\n\n - Add support for STT_GNU_IFUNC symbols.\n\n - Add support for incremental linking (--incremental).\n\n - GNU ld specific :\n\n - Add a configure option --enable-relro to decide whether\n -z relro should be enabled in ELF linker by default.\n Default to yes for all Linux targets except FRV, HPPA,\n IA64 and MIPS.\n\n - Support for -z noreloc-overflow in the x86-64 ELF linker\n to disable relocation overflow check.\n\n - Add -z common/-z nocommon options for ELF targets to\n control whether to convert common symbols to the\n STT_COMMON type during a relocatable link.\n\n - Support for -z nodynamic-undefined-weak in the x86 ELF\n linker, which avoids dynamic relocations against\n undefined weak symbols in executable.\n\n - The NOCROSSREFSTO command was added to the linker script\n language.\n\n - Add --no-apply-dynamic-relocs to the AArch64 linker to\n do not apply link-time values for dynamic relocations.\n\nThis update was imported from the SUSE:SLE-12:Update update project.", "edition": 19, "cvss3": {"score": 9.8, "vector": "AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"}, "published": "2017-12-14T00:00:00", "title": "openSUSE Security Update : binutils (openSUSE-2017-1330)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2017-8395", "CVE-2017-9755", "CVE-2017-9043", "CVE-2017-12456", "CVE-2017-14745", "CVE-2017-14130", "CVE-2017-12448", "CVE-2017-9042", "CVE-2017-7614", "CVE-2017-7223", "CVE-2017-14529", "CVE-2017-14729", "CVE-2017-14974", "CVE-2017-7299", "CVE-2017-9746", "CVE-2017-7300", "CVE-2017-9041", "CVE-2017-8396", "CVE-2017-14128", "CVE-2017-9038", "CVE-2017-7227", "CVE-2017-12453", "CVE-2017-8394", "CVE-2017-9954", "CVE-2017-9039", "CVE-2017-7224", "CVE-2017-9955", "CVE-2017-7303", "CVE-2017-12450", "CVE-2017-9750", "CVE-2017-9756", "CVE-2017-12799", "CVE-2017-7302", "CVE-2017-9748", "CVE-2014-9939", "CVE-2017-6966", "CVE-2017-14333", "CVE-2017-7225", "CVE-2017-12452", "CVE-2017-9044", "CVE-2017-8393", "CVE-2017-8397", "CVE-2017-8392", "CVE-2017-7301", "CVE-2017-6965", "CVE-2017-7210", "CVE-2017-7304", "CVE-2017-7209", "CVE-2017-7226", "CVE-2017-9040", "CVE-2017-13757", "CVE-2017-8398", "CVE-2017-9747", "CVE-2017-14129", "CVE-2017-8421", "CVE-2017-12454", "CVE-2017-6969"], "modified": "2017-12-14T00:00:00", "cpe": ["p-cpe:/a:novell:opensuse:cross-ppc-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-ppc64-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-i386-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-mips-binutils", "p-cpe:/a:novell:opensuse:cross-m68k-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-hppa-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-ppc64-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-avr-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-sparc64-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-s390-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-ppc-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-m68k-binutils", "p-cpe:/a:novell:opensuse:cross-ppc64le-binutils", "p-cpe:/a:novell:opensuse:cross-hppa64-binutils", "p-cpe:/a:novell:opensuse:cross-ia64-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-sparc-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-i386-binutils", "p-cpe:/a:novell:opensuse:cross-mips-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-s390-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-ppc-binutils", "p-cpe:/a:novell:opensuse:cross-s390x-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-hppa64-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-sparc64-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-arm-binutils", "p-cpe:/a:novell:opensuse:cross-ppc64le-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-aarch64-binutils-debugsource", "p-cpe:/a:novell:opensuse:binutils-gold", "p-cpe:/a:novell:opensuse:binutils-devel-32bit", "p-cpe:/a:novell:opensuse:cross-aarch64-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-spu-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-i386-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-x86_64-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-m68k-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-x86_64-binutils", "p-cpe:/a:novell:opensuse:cross-spu-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-avr-binutils", "p-cpe:/a:novell:opensuse:cross-hppa-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-s390-binutils", "p-cpe:/a:novell:opensuse:binutils", "p-cpe:/a:novell:opensuse:cross-ppc64le-binutils-debuginfo", "p-cpe:/a:novell:opensuse:binutils-devel", "cpe:/o:novell:opensuse:42.3", "p-cpe:/a:novell:opensuse:cross-arm-binutils-debugsource", "p-cpe:/a:novell:opensuse:binutils-debugsource", "cpe:/o:novell:opensuse:42.2", "p-cpe:/a:novell:opensuse:cross-aarch64-binutils", "p-cpe:/a:novell:opensuse:cross-sparc-binutils", "p-cpe:/a:novell:opensuse:binutils-gold-debuginfo", "p-cpe:/a:novell:opensuse:binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-hppa-binutils", "p-cpe:/a:novell:opensuse:cross-avr-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-mips-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-ppc64-binutils", "p-cpe:/a:novell:opensuse:cross-x86_64-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-spu-binutils", "p-cpe:/a:novell:opensuse:cross-sparc64-binutils", "p-cpe:/a:novell:opensuse:cross-arm-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-ia64-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-sparc-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-s390x-binutils-debuginfo", "p-cpe:/a:novell:opensuse:cross-s390x-binutils", "p-cpe:/a:novell:opensuse:cross-hppa64-binutils-debugsource", "p-cpe:/a:novell:opensuse:cross-ia64-binutils"], "id": "OPENSUSE-2017-1330.NASL", "href": "https://www.tenable.com/plugins/nessus/105225", "sourceData": "#%NASL_MIN_LEVEL 70300\n#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were\n# extracted from openSUSE Security Update openSUSE-2017-1330.\n#\n# The text description of this plugin is (C) SUSE LLC.\n#\n\ninclude('deprecated_nasl_level.inc');\ninclude('compat.inc');\n\nif (description)\n{\n script_id(105225);\n script_version(\"3.6\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/19\");\n\n script_cve_id(\"CVE-2014-9939\", \"CVE-2017-12448\", \"CVE-2017-12450\", \"CVE-2017-12452\", \"CVE-2017-12453\", \"CVE-2017-12454\", \"CVE-2017-12456\", \"CVE-2017-12799\", \"CVE-2017-13757\", \"CVE-2017-14128\", \"CVE-2017-14129\", \"CVE-2017-14130\", \"CVE-2017-14333\", \"CVE-2017-14529\", \"CVE-2017-14729\", \"CVE-2017-14745\", \"CVE-2017-14974\", \"CVE-2017-6965\", \"CVE-2017-6966\", \"CVE-2017-6969\", \"CVE-2017-7209\", \"CVE-2017-7210\", \"CVE-2017-7223\", \"CVE-2017-7224\", \"CVE-2017-7225\", \"CVE-2017-7226\", \"CVE-2017-7227\", \"CVE-2017-7299\", \"CVE-2017-7300\", \"CVE-2017-7301\", \"CVE-2017-7302\", \"CVE-2017-7303\", \"CVE-2017-7304\", \"CVE-2017-7614\", \"CVE-2017-8392\", \"CVE-2017-8393\", \"CVE-2017-8394\", \"CVE-2017-8395\", \"CVE-2017-8396\", \"CVE-2017-8397\", \"CVE-2017-8398\", \"CVE-2017-8421\", \"CVE-2017-9038\", \"CVE-2017-9039\", \"CVE-2017-9040\", \"CVE-2017-9041\", \"CVE-2017-9042\", \"CVE-2017-9043\", \"CVE-2017-9044\", \"CVE-2017-9746\", \"CVE-2017-9747\", \"CVE-2017-9748\", \"CVE-2017-9750\", \"CVE-2017-9755\", \"CVE-2017-9756\", \"CVE-2017-9954\", \"CVE-2017-9955\");\n\n script_name(english:\"openSUSE Security Update : binutils (openSUSE-2017-1330)\");\n script_summary(english:\"Check for the openSUSE-2017-1330 patch\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote openSUSE host is missing a security update.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"GNU binutil was updated to the 2.29.1 release, bringing various new\nfeatures, fixing a lot of bugs and security issues.\n\nFollowing security issues are being addressed by this release :\n\n - 18750 bsc#1030296 CVE-2014-9939\n\n - 20891 bsc#1030585 CVE-2017-7225\n\n - 20892 bsc#1030588 CVE-2017-7224\n\n - 20898 bsc#1030589 CVE-2017-7223\n\n - 20905 bsc#1030584 CVE-2017-7226\n\n - 20908 bsc#1031644 CVE-2017-7299\n\n - 20909 bsc#1031656 CVE-2017-7300\n\n - 20921 bsc#1031595 CVE-2017-7302\n\n - 20922 bsc#1031593 CVE-2017-7303\n\n - 20924 bsc#1031638 CVE-2017-7301\n\n - 20931 bsc#1031590 CVE-2017-7304\n\n - 21135 bsc#1030298 CVE-2017-7209 \n\n - 21137 bsc#1029909 CVE-2017-6965\n\n - 21139 bsc#1029908 CVE-2017-6966\n\n - 21156 bsc#1029907 CVE-2017-6969\n\n - 21157 bsc#1030297 CVE-2017-7210\n\n - 21409 bsc#1037052 CVE-2017-8392\n\n - 21412 bsc#1037057 CVE-2017-8393\n\n - 21414 bsc#1037061 CVE-2017-8394\n\n - 21432 bsc#1037066 CVE-2017-8396\n\n - 21440 bsc#1037273 CVE-2017-8421\n\n - 21580 bsc#1044891 CVE-2017-9746\n\n - 21581 bsc#1044897 CVE-2017-9747\n\n - 21582 bsc#1044901 CVE-2017-9748\n\n - 21587 bsc#1044909 CVE-2017-9750\n\n - 21594 bsc#1044925 CVE-2017-9755\n\n - 21595 bsc#1044927 CVE-2017-9756\n\n - 21787 bsc#1052518 CVE-2017-12448\n\n - 21813 bsc#1052503, CVE-2017-12456, bsc#1052507,\n CVE-2017-12454, bsc#1052509, CVE-2017-12453,\n bsc#1052511, CVE-2017-12452, bsc#1052514,\n CVE-2017-12450, bsc#1052503, CVE-2017-12456,\n bsc#1052507, CVE-2017-12454, bsc#1052509,\n CVE-2017-12453, bsc#1052511, CVE-2017-12452,\n bsc#1052514, CVE-2017-12450\n\n - 21933 bsc#1053347 CVE-2017-12799\n\n - 21990 bsc#1058480 CVE-2017-14333\n\n - 22018 bsc#1056312 CVE-2017-13757\n\n - 22047 bsc#1057144 CVE-2017-14129\n\n - 22058 bsc#1057149 CVE-2017-14130\n\n - 22059 bsc#1057139 CVE-2017-14128\n\n - 22113 bsc#1059050 CVE-2017-14529\n\n - 22148 bsc#1060599 CVE-2017-14745\n\n - 22163 bsc#1061241 CVE-2017-14974\n\n - 22170 bsc#1060621 CVE-2017-14729\n\nUpdate to binutils 2.29. [fate#321454, fate#321494, fate#323293] :\n\n - The MIPS port now supports microMIPS eXtended Physical\n Addressing (XPA) instructions for assembly and\n disassembly.\n\n - The MIPS port now supports the microMIPS Release 5 ISA\n for assembly and disassembly.\n\n - The MIPS port now supports the Imagination interAptiv\n MR2 processor, which implements the MIPS32r3 ISA, the\n MIPS16e2 ASE as well as a couple of\n implementation-specific regular MIPS and MIPS16e2 ASE\n instructions.\n\n - The SPARC port now supports the SPARC M8 processor,\n which implements the Oracle SPARC Architecture 2017.\n\n - The MIPS port now supports the MIPS16e2 ASE for assembly\n and disassembly.\n\n - Add support for ELF SHF_GNU_MBIND and PT_GNU_MBIND_XXX.\n\n - Add support for the wasm32 ELF conversion of the\n WebAssembly file format.\n\n - Add --inlines option to objdump, which extends the\n --line-numbers option so that inlined functions will\n display their nesting information.\n\n - Add --merge-notes options to objcopy to reduce the size\n of notes in a binary file by merging and deleting\n redundant notes.\n\n - Add support for locating separate debug info files using\n the build-id method, where the separate file has a name\n based upon the build-id of the original file.\n\n - GAS specific :\n\n - Add support for ELF SHF_GNU_MBIND.\n\n - Add support for the WebAssembly file format and wasm32\n ELF conversion.\n\n - PowerPC gas now checks that the correct register class\n is used in instructions. For instance, 'addi\n %f4,%cr3,%r31' warns three times that the registers are\n invalid.\n\n - Add support for the Texas Instruments PRU processor.\n\n - Support for the ARMv8-R architecture and Cortex-R52\n processor has been added to the ARM port.\n\n - GNU ld specific :\n\n - Support for -z shstk in the x86 ELF linker to generate\n GNU_PROPERTY_X86_FEATURE_1_SHSTK in ELF GNU program\n properties.\n\n - Add support for GNU_PROPERTY_X86_FEATURE_1_SHSTK in ELF\n GNU program properties in the x86 ELF linker.\n\n - Add support for GNU_PROPERTY_X86_FEATURE_1_IBT in ELF\n GNU program properties in the x86 ELF linker.\n\n - Support for -z ibtplt in the x86 ELF linker to generate\n IBT-enabled PLT.\n\n - Support for -z ibt in the x86 ELF linker to generate\n IBT-enabled PLT as well as\n GNU_PROPERTY_X86_FEATURE_1_IBT in ELF GNU program\n properties.\n\n - Add support for ELF SHF_GNU_MBIND and PT_GNU_MBIND_XXX.\n\n - Add support for ELF GNU program properties.\n\n - Add support for the Texas Instruments PRU processor.\n\n - When configuring for arc*-*-linux* targets the default\n linker emulation will change if --with-cpu=nps400 is\n used at configure time.\n\n - Improve assignment of LMAs to orphan sections in some\n edge cases where a mixture of both AT>LMA_REGION and\n AT(LMA) are used.\n\n - Orphan sections placed after an empty section that has\n an AT(LMA) will now take an load memory address starting\n from LMA.\n\n - Section groups can now be resolved (the group deleted\n and the group members placed like normal sections) at\n partial link time either using the new linker option\n --force-group-allocation or by placing\n FORCE_GROUP_ALLOCATION into the linker script.\n\n - Add riscv64 target, tested with gcc7 and downstream\n newlib 2.4.0\n\n - Prepare riscv32 target (gh#riscv/riscv-newlib#8)\n\n - Make compressed debug section handling explicit, disable\n for old products and enable for gas on all architectures\n otherwise. [bsc#1029995]\n\n - Remove empty rpath component removal optimization from\n to workaround CMake rpath handling. [bsc#1025282]\n\n Minor security bugs fixed: PR 21147, PR 21148, PR 21149,\n PR 21150, PR 21151, PR 21155, PR 21158, PR 21159\n\n - Update to binutils 2.28.\n\n - Add support for locating separate debug info files using\n the build-id method, where the separate file has a name\n based upon the build-id of the original file.\n\n - This version of binutils fixes a problem with PowerPC\n VLE 16A and 16D relocations which were functionally\n swapped, for example, R_PPC_VLE_HA16A performed like\n R_PPC_VLE_HA16D while R_PPC_VLE_HA16D performed like\n R_PPC_VLE_HA16A. This could have been fixed by\n renumbering relocations, which would keep object files\n created by an older version of gas compatible with a\n newer ld. However, that would require an ABI update,\n affecting other assemblers and linkers that create and\n process the relocations correctly. It is recommended\n that all VLE object files be recompiled, but ld can\n modify the relocations if --vle-reloc-fixup is passed to\n ld. If the new ld command line option is not used, ld\n will ld warn on finding relocations inconsistent with\n the instructions being relocated.\n\n - The nm program has a new command line option\n (--with-version-strings) which will display a symbol's\n version information, if any, after the symbol's name.\n\n - The ARC port of objdump now accepts a -M option to\n specify the extra instruction class(es) that should be\n disassembled.\n\n - The --remove-section option for objcopy and strip now\n accepts section patterns starting with an exclamation\n point to indicate a non-matching section. A non-matching\n section is removed from the set of sections matched by\n an earlier --remove-section pattern.\n\n - The --only-section option for objcopy now accepts\n section patterns starting with an exclamation point to\n indicate a non-matching section. A non-matching section\n is removed from the set of sections matched by an\n earlier --only-section pattern.\n\n - New --remove-relocations=SECTIONPATTERN option for\n objcopy and strip. This option can be used to remove\n sections containing relocations. The SECTIONPATTERN is\n the section to which the relocations apply, not the\n relocation section itself.\n\n - GAS specific :\n\n - Add support for the RISC-V architecture.\n\n - Add support for the ARM Cortex-M23 and Cortex-M33\n processors.\n\n - GNU ld specific :\n\n - The EXCLUDE_FILE linker script construct can now be\n applied outside of the section list in order for the\n exclusions to apply over all input sections in the list.\n\n - Add support for the RISC-V architecture.\n\n - The command line option --no-eh-frame-hdr can now be\n used in ELF based linkers to disable the automatic\n generation of .eh_frame_hdr sections.\n\n - Add --in-implib=<infile> to the ARM linker to enable\n specifying a set of Secure Gateway veneers that must\n exist in the output import library specified by\n --out-implib=<outfile> and the address they must have.\n As such, --in-implib is only supported in combination\n with --cmse-implib.\n\n - Extended the --out-implib=<file> option, previously\n restricted to x86 PE targets, to any ELF based target.\n This allows the generation of an import library for an\n ELF executable, which can then be used by another\n application to link against the executable.\n\n - GOLD specific :\n\n - Add -z bndplt option (x86-64 only) to support Intel MPX.\n\n - Add --orphan-handling option.\n\n - Add --stub-group-multi option (PowerPC only).\n\n - Add --target1-rel, --target1-abs, --target2 options (Arm\n only).\n\n - Add -z stack-size option.\n\n - Add --be8 option (Arm only).\n\n - Add HIDDEN support in linker scripts.\n\n - Add SORT_BY_INIT_PRIORITY support in linker scripts.\n\n - Other fixes :\n\n - Fix section alignment on .gnu_debuglink. [bso#21193]\n\n - Add s390x to gold_archs.\n\n - Fix alignment frags for aarch64 (bsc#1003846)\n\n - Call ldconfig for libbfd\n\n - Fix an assembler problem with clang on ARM.\n\n - Restore monotonically increasing section offsets.\n\n - Update to binutils 2.27.\n\n - Add a configure option, --enable-64-bit-archive, to\n force use of a 64-bit format when creating an archive\n symbol index.\n\n - Add --elf-stt-common= option to objcopy for ELF targets\n to control whether to convert common symbols to the\n STT_COMMON type.\n\n - GAS specific :\n\n - Default to --enable-compressed-debug-sections=gas for\n Linux/x86 targets.\n\n - Add --no-pad-sections to stop the assembler from padding\n the end of output sections up to their alignment\n boundary.\n\n - Support for the ARMv8-M architecture has been added to\n the ARM port. Support for the ARMv8-M Security and DSP\n Extensions has also been added to the ARM port.\n\n - ARC backend accepts .extInstruction, .extCondCode,\n .extAuxRegister, and .extCoreRegister pseudo-ops that\n allow an user to define custom instructions, conditional\n codes, auxiliary and core registers.\n\n - Add a configure option --enable-elf-stt-common to decide\n whether ELF assembler should generate common symbols\n with the STT_COMMON type by default. Default to no.\n\n - New command line option --elf-stt-common= for ELF\n targets to control whether to generate common symbols\n with the STT_COMMON type.\n\n - Add ability to set section flags and types via numeric\n values for ELF based targets.\n\n - Add a configure option --enable-x86-relax-relocations to\n decide whether x86 assembler should generate relax\n relocations by default. Default to yes, except for x86\n Solaris targets older than Solaris 12.\n\n - New command line option -mrelax-relocations= for x86\n target to control whether to generate relax relocations.\n\n - New command line option -mfence-as-lock-add=yes for x86\n target to encode lfence, mfence and sfence as 'lock addl\n $0x0, (%[re]sp)'.\n\n - Add assembly-time relaxation option for ARC cpus.\n\n - Add --with-cpu=TYPE configure option for ARC gas. This\n allows the default cpu type to be adjusted at configure\n time.\n\n - GOLD specific :\n\n - Add a configure option --enable-relro to decide whether\n -z relro should be enabled by default. Default to yes.\n\n - Add support for s390, MIPS, AArch64, and TILE-Gx\n architectures.\n\n - Add support for STT_GNU_IFUNC symbols.\n\n - Add support for incremental linking (--incremental).\n\n - GNU ld specific :\n\n - Add a configure option --enable-relro to decide whether\n -z relro should be enabled in ELF linker by default.\n Default to yes for all Linux targets except FRV, HPPA,\n IA64 and MIPS.\n\n - Support for -z noreloc-overflow in the x86-64 ELF linker\n to disable relocation overflow check.\n\n - Add -z common/-z nocommon options for ELF targets to\n control whether to convert common symbols to the\n STT_COMMON type during a relocatable link.\n\n - Support for -z nodynamic-undefined-weak in the x86 ELF\n linker, which avoids dynamic relocations against\n undefined weak symbols in executable.\n\n - The NOCROSSREFSTO command was added to the linker script\n language.\n\n - Add --no-apply-dynamic-relocs to the AArch64 linker to\n do not apply link-time values for dynamic relocations.\n\nThis update was imported from the SUSE:SLE-12:Update update project.\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1003846\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1025282\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1029907\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1029908\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1029909\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1029995\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1030296\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1030297\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1030298\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1030583\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1030584\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1030585\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1030588\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1030589\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1031590\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1031593\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1031595\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1031638\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1031644\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1031656\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1033122\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1037052\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1037057\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1037061\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1037062\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1037066\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1037070\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1037072\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1037273\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1038874\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1038875\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1038876\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1038877\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1038878\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1038880\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1038881\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1044891\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1044897\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1044901\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1044909\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1044925\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1044927\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1046094\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1052061\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1052496\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1052503\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1052507\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1052509\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1052511\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1052514\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1052518\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1053347\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1056312\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1056437\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1057139\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1057144\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1057149\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1058480\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1059050\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1060599\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1060621\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1061241\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=437293\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=445037\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=546106\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=561142\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=578249\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=590820\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=691290\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=698346\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=713504\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=776968\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=863764\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=938658\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=970239\"\n );\n # https://features.opensuse.org/306880\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://features.opensuse.org/\"\n );\n # https://features.opensuse.org/311376\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://features.opensuse.org/\"\n );\n # https://features.opensuse.org/311554\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://features.opensuse.org/\"\n );\n # https://features.opensuse.org/311972\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://features.opensuse.org/\"\n );\n # https://features.opensuse.org/312149\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://features.opensuse.org/\"\n );\n # https://features.opensuse.org/321454\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://features.opensuse.org/\"\n );\n # https://features.opensuse.org/321494\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://features.opensuse.org/\"\n );\n # https://features.opensuse.org/323293\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://features.opensuse.org/\"\n );\n # https://features.opensuse.org/323972\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://features.opensuse.org/\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\"Update the affected binutils packages.\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P\");\n script_set_cvss_temporal_vector(\"CVSS2#E:POC/RL:OF/RC:C\");\n script_set_cvss3_base_vector(\"CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H\");\n script_set_cvss3_temporal_vector(\"CVSS:3.0/E:P/RL:O/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:binutils-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:binutils-devel-32bit\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:binutils-gold\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:binutils-gold-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-aarch64-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-aarch64-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-aarch64-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-arm-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-arm-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-arm-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-avr-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-avr-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-avr-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-hppa-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-hppa-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-hppa-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-hppa64-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-hppa64-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-hppa64-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-i386-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-i386-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-i386-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-ia64-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-ia64-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-ia64-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-m68k-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-m68k-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-m68k-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-mips-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-mips-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-mips-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-ppc-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-ppc-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-ppc-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-ppc64-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-ppc64-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-ppc64-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-ppc64le-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-ppc64le-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-ppc64le-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-s390-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-s390-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-s390-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-s390x-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-s390x-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-s390x-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-sparc-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-sparc-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-sparc-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-sparc64-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-sparc64-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-sparc64-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-spu-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-spu-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-spu-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-x86_64-binutils\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-x86_64-binutils-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:cross-x86_64-binutils-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:novell:opensuse:42.2\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:novell:opensuse:42.3\");\n\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2017/12/02\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2017/12/14\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2017-2021 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"SuSE Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/SuSE/release\", \"Host/SuSE/rpm-list\", \"Host/cpu\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"rpm.inc\");\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nrelease = get_kb_item(\"Host/SuSE/release\");\nif (isnull(release) || release =~ \"^(SLED|SLES)\") audit(AUDIT_OS_NOT, \"openSUSE\");\nif (release !~ \"^(SUSE42\\.2|SUSE42\\.3)$\") audit(AUDIT_OS_RELEASE_NOT, \"openSUSE\", \"42.2 / 42.3\", release);\nif (!get_kb_item(\"Host/SuSE/rpm-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\nourarch = get_kb_item(\"Host/cpu\");\nif (!ourarch) audit(AUDIT_UNKNOWN_ARCH);\nif (ourarch !~ \"^(i586|i686|x86_64)$\") audit(AUDIT_ARCH_NOT, \"i586 / i686 / x86_64\", ourarch);\n\nflag = 0;\n\nif ( rpm_check(release:\"SUSE42.2\", reference:\"binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"binutils-devel-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"binutils-gold-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"binutils-gold-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-aarch64-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-aarch64-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-aarch64-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-arm-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-arm-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-arm-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-avr-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-avr-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-avr-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-hppa-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-hppa-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-hppa-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-hppa64-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-hppa64-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-hppa64-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-ia64-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-ia64-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-ia64-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-m68k-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-m68k-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-m68k-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-mips-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-mips-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-mips-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-ppc-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-ppc-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-ppc-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-ppc64-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-ppc64-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-ppc64-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-ppc64le-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-ppc64le-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-ppc64le-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-s390-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-s390-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-s390-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-s390x-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-s390x-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-s390x-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-sparc-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-sparc-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-sparc-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-sparc64-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-sparc64-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-sparc64-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-spu-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-spu-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-spu-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-x86_64-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-x86_64-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", reference:\"cross-x86_64-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", cpu:\"x86_64\", reference:\"binutils-devel-32bit-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", cpu:\"x86_64\", reference:\"cross-i386-binutils-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", cpu:\"x86_64\", reference:\"cross-i386-binutils-debuginfo-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.2\", cpu:\"x86_64\", reference:\"cross-i386-binutils-debugsource-2.29.1-9.6.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"binutils-devel-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"binutils-gold-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"binutils-gold-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-aarch64-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-aarch64-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-aarch64-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-arm-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-arm-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-arm-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-avr-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-avr-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-avr-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-hppa-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-hppa-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-hppa-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-hppa64-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-hppa64-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-hppa64-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-ia64-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-ia64-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-ia64-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-m68k-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-m68k-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-m68k-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-mips-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-mips-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-mips-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-ppc-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-ppc-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-ppc-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-ppc64-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-ppc64-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-ppc64-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-ppc64le-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-ppc64le-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-ppc64le-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-s390-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-s390-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-s390-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-s390x-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-s390x-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-s390x-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-sparc-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-sparc-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-sparc-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-sparc64-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-sparc64-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-sparc64-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-spu-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-spu-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-spu-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-x86_64-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-x86_64-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"cross-x86_64-binutils-debugsource-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", cpu:\"x86_64\", reference:\"binutils-devel-32bit-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", cpu:\"x86_64\", reference:\"cross-i386-binutils-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", cpu:\"x86_64\", reference:\"cross-i386-binutils-debuginfo-2.29.1-13.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", cpu:\"x86_64\", reference:\"cross-i386-binutils-debugsource-2.29.1-13.1\") ) flag++;\n\nif (flag)\n{\n if (report_verbosity > 0) security_hole(port:0, extra:rpm_report_get());\n else security_hole(0);\n exit(0);\n}\nelse\n{\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"binutils / binutils-debuginfo / binutils-debugsource / etc\");\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}], "gentoo": [{"lastseen": "2018-01-08T02:51:30", "bulletinFamily": "unix", "cvelist": ["CVE-2017-9755", "CVE-2017-12456", "CVE-2017-9751", "CVE-2017-14130", "CVE-2017-7223", "CVE-2017-9746", "CVE-2017-14128", "CVE-2017-7227", "CVE-2017-7224", "CVE-2017-9750", "CVE-2017-9756", "CVE-2017-12799", "CVE-2017-15023", "CVE-2017-14333", "CVE-2017-7225", "CVE-2017-15938", "CVE-2017-12967", "CVE-2017-7210", "CVE-2017-15939", "CVE-2017-9743", "CVE-2017-7209", "CVE-2017-9749", "CVE-2017-15996", "CVE-2017-14129"], "description": "### Background\n\nThe GNU Binutils are a collection of tools to create, modify and analyse binary files. Many of the files use BFD, the Binary File Descriptor library, to do low-level manipulation. \n\n### Description\n\nMultiple vulnerabilities have been discovered in Binutils. Please review the referenced CVE identifiers for details. \n\n### Impact\n\nA remote attacker, by enticing a user to compile/execute a specially crafted ELF, tekhex, PE, or binary file, could possibly cause a Denial of Service condition. \n\n### Workaround\n\nThere are no known workarounds at this time.\n\n### Resolution\n\nAll Binutils users should upgrade to the latest version:\n \n \n # emerge --sync\n # emerge --ask --oneshot --verbose \">=sys-devel/binutils-2.29.1-r1\"", "edition": 1, "modified": "2018-01-07T00:00:00", "published": "2018-01-07T00:00:00", "href": "https://security.gentoo.org/glsa/201801-01", "id": "GLSA-201801-01", "title": "Binutils: Multiple vulnerabilities", "type": "gentoo", "cvss": {"score": 6.8, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:PARTIAL/I:PARTIAL/A:PARTIAL/"}}]}