ID CVE-2015-6755 Type cve Reporter cve@mitre.org Modified 2016-12-24T02:59:00
Description
The ContainerNode::parserInsertBefore function in core/dom/ContainerNode.cpp in Blink, as used in Google Chrome before 46.0.2490.71, proceeds with a DOM tree insertion in certain cases where a parent node no longer contains a child node, which allows remote attackers to bypass the Same Origin Policy via crafted JavaScript code.
{"id": "CVE-2015-6755", "bulletinFamily": "NVD", "title": "CVE-2015-6755", "description": "The ContainerNode::parserInsertBefore function in core/dom/ContainerNode.cpp in Blink, as used in Google Chrome before 46.0.2490.71, proceeds with a DOM tree insertion in certain cases where a parent node no longer contains a child node, which allows remote attackers to bypass the Same Origin Policy via crafted JavaScript code.", "published": "2015-10-15T10:59:00", "modified": "2016-12-24T02:59:00", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}, "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-6755", "reporter": "cve@mitre.org", "references": ["http://www.debian.org/security/2015/dsa-3376", "http://www.securitytracker.com/id/1033816", "http://www.ubuntu.com/usn/USN-2770-1", "https://security.gentoo.org/glsa/201603-09", "https://src.chromium.org/viewvc/blink?revision=200690&view=revision", "http://www.securityfocus.com/bid/77071", "http://rhn.redhat.com/errata/RHSA-2015-1912.html", "http://www.ubuntu.com/usn/USN-2770-2", "http://googlechromereleases.blogspot.com/2015/10/stable-channel-update.html", "https://code.google.com/p/chromium/issues/detail?id=519558"], "cvelist": ["CVE-2015-6755"], "type": "cve", "lastseen": "2020-12-09T20:03:07", "edition": 5, "viewCount": 1, "enchantments": {"dependencies": {"references": [{"type": "seebug", "idList": ["SSV:93035"]}, {"type": "ubuntu", "idList": ["USN-2770-1", "USN-2770-2"]}, {"type": "openvas", "idList": ["OPENVAS:1361412562310805994", "OPENVAS:1361412562310842495", "OPENVAS:703376", "OPENVAS:1361412562310842501", "OPENVAS:1361412562310121451", "OPENVAS:1361412562310131102", "OPENVAS:1361412562310805995", "OPENVAS:1361412562310703376", "OPENVAS:1361412562310805996"]}, {"type": "nessus", "idList": ["UBUNTU_USN-2770-2.NASL", "REDHAT-RHSA-2015-1912.NASL", "FREEBSD_PKG_8301C04D71DF11E59FCB00262D5ED8EE.NASL", "DEBIAN_DSA-3376.NASL", "GENTOO_GLSA-201603-09.NASL", "MACOSX_GOOGLE_CHROME_45_0_2490_71.NASL", "UBUNTU_USN-2770-1.NASL", "GOOGLE_CHROME_45_0_2490_71.NASL", "OPENSUSE-2015-679.NASL"]}, {"type": "threatpost", "idList": ["THREATPOST:C51401709B419BF04B7D260B9F842C61"]}, {"type": "redhat", "idList": ["RHSA-2015:1912"]}, {"type": "archlinux", "idList": ["ASA-201510-8"]}, {"type": "freebsd", "idList": ["8301C04D-71DF-11E5-9FCB-00262D5ED8EE"]}, {"type": "kaspersky", "idList": ["KLA10678"]}, {"type": "securityvulns", "idList": ["SECURITYVULNS:DOC:32571", "SECURITYVULNS:VULN:14737"]}, {"type": "debian", "idList": ["DEBIAN:DSA-3376-1:92CEB"]}, {"type": "gentoo", "idList": ["GLSA-201603-09"]}], "modified": "2020-12-09T20:03:07", "rev": 2}, "score": {"value": 5.1, "vector": "NONE", "modified": "2020-12-09T20:03:07", "rev": 2}, "vulnersScore": 5.1}, "cpe": ["cpe:/a:google:chrome:45.0.2454.101"], "affectedSoftware": [{"cpeName": "google:chrome", "name": "google chrome", "operator": "le", "version": "45.0.2454.101"}], "cvss2": {"cvssV2": {"accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "PARTIAL", "baseScore": 7.5, "confidentialityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "vectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:P", "version": "2.0"}, "exploitabilityScore": 10.0, "impactScore": 6.4, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "severity": "HIGH", "userInteractionRequired": false}, "cvss3": {}, "cpe23": ["cpe:2.3:a:google:chrome:45.0.2454.101:*:*:*:*:*:*:*"], "cwe": ["CWE-264"], "scheme": null, "cpeConfiguration": {"CVE_data_version": "4.0", "nodes": [{"cpe_match": [{"cpe23Uri": "cpe:2.3:a:google:chrome:45.0.2454.101:*:*:*:*:*:*:*", "versionEndIncluding": "45.0.2454.101", "vulnerable": true}], "operator": "OR"}]}}
{"seebug": [{"lastseen": "2017-11-19T11:58:05", "description": "#### VULNERABILITY DETAILS\n\nFrom /WebKit/Source/core/dom/ContainerNode.cpp:\n\n`` void ContainerNode::parserInsertBefore(PassRefPtrWillBeRawPtr newChild, Node& nextChild) { (...) while (RefPtrWillBeRawPtr parent = newChild->parentNode()) parent->parserRemoveChild(*newChild);\n \n \n if (document() != newChild->document())\n document(). adoptNode(newChild. get(), ASSERT_NO_EXCEPTION);\n \n {\n EventDispatchForbiddenScope assertNoEventDispatch;\n ScriptForbiddenScope forbidScript;\n \n treeScope(). adoptIfNeeded(*newChild);\n insertBeforeCommon(nextChild, *newChild);\n newChild->updateAncestorConnectedSubframeCountforinsertion();\n ChildListMutationScope(*this). childAdded(*newChild);\n }\n \n notifyNodeInserted(*newChild, ChildrenChangeSourceParser);\n \n\n} ``\n\n|parserRemoveChild| can run script, and it can remove |nextChild| from the DOM or move the node around. When this happens, the tree will be in an inconsistent state after the |insertBeforeCommon| call, allowing an attacker to bypass the frame restrictions.\n\n#### VERSION\n\nChrome 44.0.2403.130 (Stable) \nChrome 45.0.2454.26 (Beta) \nChrome 46.0.2471.2 (Dev) \nChromium 46.0.2480.0 (Release build compiled today)\n\nAttachment: [CVE-2015-6755](<http://paper.seebug.org/papers/Archive/poc/CVE-2015-6755.zip>)\n", "published": "2017-04-24T00:00:00", "type": "seebug", "title": "Chrome Universal XSS via ContainerNode::parserInsertBefore (CVE-2015-6755)", "bulletinFamily": "exploit", "cvelist": ["CVE-2015-6755"], "modified": "2017-04-24T00:00:00", "href": "https://www.seebug.org/vuldb/ssvid-93035", "id": "SSV:93035", "sourceData": "", "sourceHref": "", "cvss": {"score": 7.5, "vector": "AV:NETWORK/AC:LOW/Au:NONE/C:PARTIAL/I:PARTIAL/A:PARTIAL/"}}], "ubuntu": [{"lastseen": "2020-07-02T11:36:25", "bulletinFamily": "unix", "cvelist": ["CVE-2015-6762", "CVE-2015-7834", "CVE-2015-6759", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "description": "It was discovered that ContainerNode::parserInsertBefore in Blink would \nincorrectly proceed with a DOM tree insertion in some circumstances. If a \nuser were tricked in to opening a specially crafted website, an attacker \ncould potentially exploit this to bypass same origin restrictions. \n(CVE-2015-6755)\n\nA use-after-free was discovered in the service worker implementation in \nChromium. If a user were tricked in to opening a specially crafted \nwebsite, an attacker could potentially exploit this to cause a denial of \nservice via application crash, or execute arbitrary code with the \nprivileges of the user invoking the program. (CVE-2015-6757)\n\nIt was discovered that Blink did not ensure that the origin of \nLocalStorage resources are considered unique. If a user were tricked in to \nopening a specially crafted website, an attacker could potentially exploit \nthis to obtain sensitive information. (CVE-2015-6759)\n\nA race condition and memory corruption was discovered in FFmpeg. If a user \nwere tricked in to opening a specially crafted website, an attacker could \npotentially exploit this to cause a denial of service via renderer crash, \nor execute arbitrary code with the privileges of the sandboxed render \nprocess. (CVE-2015-6761)\n\nIt was discovered that CSSFontFaceSrcValue::fetch in Blink did not use \nCORS in some circumstances. If a user were tricked in to opening a \nspecially crafted website, an attacker could potentially exploit this to \nbypass same origin restrictions. (CVE-2015-6762)\n\nMultiple security issues were discovered in Chromium. If a user were \ntricked in to opening a specially crafted website, an attacker could \npotentially exploit these to read uninitialized memory, cause a denial \nof service via application crash or execute arbitrary code with the \nprivileges of the user invoking the program. (CVE-2015-6763)\n\nMultiple security issues were discovered in V8. If a user were tricked \nin to opening a specially crafted website, an attacker could potentially \nexploit these to read uninitialized memory, cause a denial of service via \nrenderer crash or execute arbitrary code with the privileges of the \nsandboxed render process. (CVE-2015-7834)", "edition": 5, "modified": "2015-10-20T00:00:00", "published": "2015-10-20T00:00:00", "id": "USN-2770-1", "href": "https://ubuntu.com/security/notices/USN-2770-1", "title": "Oxide vulnerabilities", "type": "ubuntu", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-07-09T00:33:13", "bulletinFamily": "unix", "cvelist": ["CVE-2015-6762", "CVE-2015-7834", "CVE-2015-6759", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "description": "USN-2770-1 fixed vulnerabilities in Oxide in Ubuntu 14.04 LTS and Ubuntu \n15.04. This update provides the corresponding updates for Ubuntu 15.10.\n\nOriginal advisory details:\n\nIt was discovered that ContainerNode::parserInsertBefore in Blink would \nincorrectly proceed with a DOM tree insertion in some circumstances. If a \nuser were tricked in to opening a specially crafted website, an attacker \ncould potentially exploit this to bypass same origin restrictions. \n(CVE-2015-6755)\n\nA use-after-free was discovered in the service worker implementation in \nChromium. If a user were tricked in to opening a specially crafted \nwebsite, an attacker could potentially exploit this to cause a denial of \nservice via application crash, or execute arbitrary code with the \nprivileges of the user invoking the program. (CVE-2015-6757)\n\nIt was discovered that Blink did not ensure that the origin of \nLocalStorage resources are considered unique. If a user were tricked in to \nopening a specially crafted website, an attacker could potentially exploit \nthis to obtain sensitive information. (CVE-2015-6759)\n\nA race condition and memory corruption was discovered in FFmpeg. If a user \nwere tricked in to opening a specially crafted website, an attacker could \npotentially exploit this to cause a denial of service via renderer crash, \nor execute arbitrary code with the privileges of the sandboxed render \nprocess. (CVE-2015-6761)\n\nIt was discovered that CSSFontFaceSrcValue::fetch in Blink did not use \nCORS in some circumstances. If a user were tricked in to opening a \nspecially crafted website, an attacker could potentially exploit this to \nbypass same origin restrictions. (CVE-2015-6762)\n\nMultiple security issues were discovered in Chromium. If a user were \ntricked in to opening a specially crafted website, an attacker could \npotentially exploit these to read uninitialized memory, cause a denial \nof service via application crash or execute arbitrary code with the \nprivileges of the user invoking the program. (CVE-2015-6763)\n\nMultiple security issues were discovered in V8. If a user were tricked \nin to opening a specially crafted website, an attacker could potentially \nexploit these to read uninitialized memory, cause a denial of service via \nrenderer crash or execute arbitrary code with the privileges of the \nsandboxed render process. (CVE-2015-7834)", "edition": 5, "modified": "2015-10-22T00:00:00", "published": "2015-10-22T00:00:00", "id": "USN-2770-2", "href": "https://ubuntu.com/security/notices/USN-2770-2", "title": "Oxide vulnerabilities", "type": "ubuntu", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}], "openvas": [{"lastseen": "2019-05-29T18:35:55", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-7834", "CVE-2015-6759", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "description": "The remote host is missing an update for the ", "modified": "2019-03-13T00:00:00", "published": "2015-10-21T00:00:00", "id": "OPENVAS:1361412562310842495", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310842495", "type": "openvas", "title": "Ubuntu Update for oxide-qt USN-2770-1", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# Ubuntu Update for oxide-qt USN-2770-1\n#\n# Authors:\n# System Generated Check\n#\n# Copyright:\n# Copyright (C) 2015 Greenbone Networks GmbH, http://www.greenbone.net\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.842495\");\n script_version(\"$Revision: 14140 $\");\n script_tag(name:\"last_modification\", value:\"$Date: 2019-03-13 13:26:09 +0100 (Wed, 13 Mar 2019) $\");\n script_tag(name:\"creation_date\", value:\"2015-10-21 07:12:05 +0200 (Wed, 21 Oct 2015)\");\n script_cve_id(\"CVE-2015-6755\", \"CVE-2015-6757\", \"CVE-2015-6759\", \"CVE-2015-6761\",\n \"CVE-2015-6762\", \"CVE-2015-6763\", \"CVE-2015-7834\");\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:\"qod_type\", value:\"package\");\n script_name(\"Ubuntu Update for oxide-qt USN-2770-1\");\n script_tag(name:\"summary\", value:\"The remote host is missing an update for the 'oxide-qt'\n package(s) announced via the referenced advisory.\");\n script_tag(name:\"vuldetect\", value:\"Checks if a vulnerable version is present on the target host.\");\n script_tag(name:\"insight\", value:\"It was discovered that\nContainerNode::parserInsertBefore in Blink would incorrectly proceed with a DOM\ntree insertion in some circumstances. If a user were tricked in to opening a\nspecially crafted website, an attacker could potentially exploit this to bypass\nsame origin restrictions. (CVE-2015-6755)\n\nA use-after-free was discovered in the service worker implementation in\nChromium. If a user were tricked in to opening a specially crafted\nwebsite, an attacker could potentially exploit this to cause a denial of\nservice via application crash, or execute arbitrary code with the\nprivileges of the user invoking the program. (CVE-2015-6757)\n\nIt was discovered that Blink did not ensure that the origin of\nLocalStorage resources are considered unique. If a user were tricked in to\nopening a specially crafted website, an attacker could potentially exploit\nthis to obtain sensitive information. (CVE-2015-6759)\n\nA race condition and memory corruption was discovered in FFmpeg. If a user\nwere tricked in to opening a specially crafted website, an attacker could\npotentially exploit this to cause a denial of service via renderer crash,\nor execute arbitrary code with the privileges of the sandboxed render\nprocess. (CVE-2015-6761)\n\nIt was discovered that CSSFontFaceSrcValue::fetch in Blink did not use\nCORS in some circumstances. If a user were tricked in to opening a\nspecially crafted website, an attacker could potentially exploit this to\nbypass same origin restrictions. (CVE-2015-6762)\n\nMultiple security issues were discovered in Chromium. If a user were\ntricked in to opening a specially crafted website, an attacker could\npotentially exploit these to read uninitialized memory, cause a denial\nof service via application crash or execute arbitrary code with the\nprivileges of the user invoking the program. (CVE-2015-6763)\n\nMultiple security issues were discovered in V8. If a user were tricked\nin to opening a specially crafted website, an attacker could potentially\nexploit these to read uninitialized memory, cause a denial of service via\nrenderer crash or execute arbitrary code with the privileges of the\nsandboxed render process. (CVE-2015-7834)\");\n script_tag(name:\"affected\", value:\"oxide-qt on Ubuntu 15.04,\n Ubuntu 14.04 LTS\");\n script_tag(name:\"solution\", value:\"Please Install the Updated Packages.\");\n script_xref(name:\"USN\", value:\"2770-1\");\n script_xref(name:\"URL\", value:\"http://www.ubuntu.com/usn/usn-2770-1/\");\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2015 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(15\\.04|14\\.04 LTS)\");\n\n exit(0);\n}\n\ninclude(\"revisions-lib.inc\");\ninclude(\"pkg-lib-deb.inc\");\n\nrelease = dpkg_get_ssh_release();\nif(!release)\n exit(0);\n\nres = \"\";\n\nif(release == \"UBUNTU15.04\")\n{\n\n if ((res = isdpkgvuln(pkg:\"liboxideqtcore0:amd64\", ver:\"1.10.3-0ubuntu0.15.04.1\", rls:\"UBUNTU15.04\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if ((res = isdpkgvuln(pkg:\"liboxideqtcore0:i386\", ver:\"1.10.3-0ubuntu0.15.04.1\", rls:\"UBUNTU15.04\")) != 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 == \"UBUNTU14.04 LTS\")\n{\n\n if ((res = isdpkgvuln(pkg:\"liboxideqtcore0:amd64\", ver:\"1.10.3-0ubuntu0.14.04.1\", rls:\"UBUNTU14.04 LTS\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if ((res = isdpkgvuln(pkg:\"liboxideqtcore0:i386\", ver:\"1.10.3-0ubuntu0.14.04.1\", 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", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2019-05-29T18:36:52", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-7834", "CVE-2015-6759", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "description": "The remote host is missing an update for the ", "modified": "2019-03-13T00:00:00", "published": "2015-10-26T00:00:00", "id": "OPENVAS:1361412562310842501", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310842501", "type": "openvas", "title": "Ubuntu Update for oxide-qt USN-2770-2", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# Ubuntu Update for oxide-qt USN-2770-2\n#\n# Authors:\n# System Generated Check\n#\n# Copyright:\n# Copyright (C) 2015 Greenbone Networks GmbH, http://www.greenbone.net\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.842501\");\n script_version(\"$Revision: 14140 $\");\n script_tag(name:\"last_modification\", value:\"$Date: 2019-03-13 13:26:09 +0100 (Wed, 13 Mar 2019) $\");\n script_tag(name:\"creation_date\", value:\"2015-10-26 15:33:08 +0100 (Mon, 26 Oct 2015)\");\n script_cve_id(\"CVE-2015-6755\", \"CVE-2015-6757\", \"CVE-2015-6759\", \"CVE-2015-6761\",\n \"CVE-2015-6762\", \"CVE-2015-6763\", \"CVE-2015-7834\");\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:\"qod_type\", value:\"package\");\n script_name(\"Ubuntu Update for oxide-qt USN-2770-2\");\n script_tag(name:\"summary\", value:\"The remote host is missing an update for the 'oxide-qt'\n package(s) announced via the referenced advisory.\");\n script_tag(name:\"vuldetect\", value:\"Checks if a vulnerable version is present on the target host.\");\n script_tag(name:\"insight\", value:\"USN-2770-1 fixed vulnerabilities in Oxide\nin Ubuntu 14.04 LTS and Ubuntu 15.04. This update provides the corresponding\nupdates for Ubuntu 15.10.\n\nOriginal advisory details:\n\nIt was discovered that ContainerNode::parserInsertBefore in Blink would\nincorrectly proceed with a DOM tree insertion in some circumstances. If a\nuser were tricked in to opening a specially crafted website, an attacker\ncould potentially exploit this to bypass same origin restrictions.\n(CVE-2015-6755)\n\nA use-after-free was discovered in the service worker implementation in\nChromium. If a user were tricked in to opening a specially crafted\nwebsite, an attacker could potentially exploit this to cause a denial of\nservice via application crash, or execute arbitrary code with the\nprivileges of the user invoking the program. (CVE-2015-6757)\n\nIt was discovered that Blink did not ensure that the origin of\nLocalStorage resources are considered unique. If a user were tricked in to\nopening a specially crafted website, an attacker could potentially exploit\nthis to obtain sensitive information. (CVE-2015-6759)\n\nA race condition and memory corruption was discovered in FFmpeg. If a user\nwere tricked in to opening a specially crafted website, an attacker could\npotentially exploit this to cause a denial of service via renderer crash,\nor execute arbitrary code with the privileges of the sandboxed render\nprocess. (CVE-2015-6761)\n\nIt was discovered that CSSFontFaceSrcValue::fetch in Blink did not use\nCORS in some circumstances. If a user were tricked in to opening a\nspecially crafted website, an attacker could potentially exploit this to\nbypass same origin restrictions. (CVE-2015-6762)\n\nMultiple security issues were discovered in Chromium. If a user were\ntricked in to opening a specially crafted website, an attacker could\npotentially exploit these to read uninitialized memory, cause a denial\nof service via application crash or execute arbitrary code with the\nprivileges of the user invoking the program. (CVE-2015-6763)\n\nMultiple security issues were discovered in V8. If a user were tricked\nin to opening a specially crafted website, an attacker could potentially\nexploit these to read uninitialized memory, cause a denial of service via\nrenderer crash or execute arbitrary code with the privileges of the\nsandboxed render process. (CVE-2015-7834)\");\n script_tag(name:\"affected\", value:\"oxide-qt on Ubuntu 15.10\");\n script_tag(name:\"solution\", value:\"Please Install the Updated Packages.\");\n script_xref(name:\"USN\", value:\"2770-2\");\n script_xref(name:\"URL\", value:\"http://www.ubuntu.com/usn/usn-2770-2/\");\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2015 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=UBUNTU15\\.10\");\n\n exit(0);\n}\n\ninclude(\"revisions-lib.inc\");\ninclude(\"pkg-lib-deb.inc\");\n\nrelease = dpkg_get_ssh_release();\nif(!release)\n exit(0);\n\nres = \"\";\n\nif(release == \"UBUNTU15.10\")\n{\n\n if ((res = isdpkgvuln(pkg:\"liboxideqtcore0:amd64\", ver:\"1.10.3-0ubuntu0.15.10.1\", rls:\"UBUNTU15.10\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\n\n if ((res = isdpkgvuln(pkg:\"liboxideqtcore0:i386\", ver:\"1.10.3-0ubuntu0.15.10.1\", rls:\"UBUNTU15.10\")) != NULL)\n {\n security_message(data:res);\n exit(0);\n }\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": "2019-05-29T18:36:35", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-6758", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "description": "Mageia Linux Local Security Checks mgasa-2015-0410", "modified": "2018-09-28T00:00:00", "published": "2015-10-26T00:00:00", "id": "OPENVAS:1361412562310131102", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310131102", "type": "openvas", "title": "Mageia Linux Local Check: mgasa-2015-0410", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id: mgasa-2015-0410.nasl 11692 2018-09-28 16:55:19Z cfischer $\n#\n# Mageia Linux security check\n#\n# Authors:\n# Eero Volotinen <eero.volotinen@solinor.com>\n#\n# Copyright:\n# Copyright (c) 2015 Eero Volotinen, http://www.solinor.com\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.131102\");\n script_version(\"$Revision: 11692 $\");\n script_tag(name:\"creation_date\", value:\"2015-10-26 09:36:00 +0200 (Mon, 26 Oct 2015)\");\n script_tag(name:\"last_modification\", value:\"$Date: 2018-09-28 18:55:19 +0200 (Fri, 28 Sep 2018) $\");\n script_name(\"Mageia Linux Local Check: mgasa-2015-0410\");\n script_tag(name:\"insight\", value:\"Updated chromium-browser-stable packages fix security vulnerabilities: Several flaws were found in the processing of malformed web content. A web page containing malicious content could cause Chromium to crash, execute arbitrary code, or disclose sensitive information when visited by the victim (CVE-2015-6755, CVE-2015-6756, CVE-2015-6757, CVE-2015-6758, CVE-2015-6759, CVE-2015-6760, CVE-2015-6761, CVE-2015-6762, CVE-2015-6763).\");\n script_tag(name:\"solution\", value:\"Update the affected packages to the latest available version.\");\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n script_xref(name:\"URL\", value:\"https://advisories.mageia.org/MGASA-2015-0410.html\");\n script_cve_id(\"CVE-2015-6755\", \"CVE-2015-6756\", \"CVE-2015-6757\", \"CVE-2015-6758\", \"CVE-2015-6759\", \"CVE-2015-6760\", \"CVE-2015-6761\", \"CVE-2015-6762\", \"CVE-2015-6763\");\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:\"qod_type\", value:\"package\");\n script_dependencies(\"gather-package-list.nasl\");\n script_mandatory_keys(\"ssh/login/mageia_linux\", \"ssh/login/release\", re:\"ssh/login/release=MAGEIA5\");\n script_category(ACT_GATHER_INFO);\n script_tag(name:\"summary\", value:\"Mageia Linux Local Security Checks mgasa-2015-0410\");\n script_copyright(\"Eero Volotinen\");\n script_family(\"Mageia Linux Local Security Checks\");\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 == \"MAGEIA5\")\n{\nif ((res = isrpmvuln(pkg:\"chromium-browser-stable\", rpm:\"chromium-browser-stable~46.0.2490.80~1.mga5\", rls:\"MAGEIA5\")) != NULL) {\n security_message(data:res);\n exit(0);\n}\nif (__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": "2019-07-19T22:13:52", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-7834", "CVE-2015-6758", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "description": "The host is installed with Google Chrome\n and is prone to multiple vulnerabilities.", "modified": "2019-07-17T00:00:00", "published": "2015-10-19T00:00:00", "id": "OPENVAS:1361412562310805995", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310805995", "type": "openvas", "title": "Google Chrome Multiple Vulnerabilities-01 Oct15 (Mac OS X)", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# Google Chrome Multiple Vulnerabilities-01 Oct15 (Mac OS X)\n#\n# Authors:\n# Shakeel <bshakeel@secpod.com>\n#\n# Copyright:\n# Copyright (C) 2015 Greenbone Networks GmbH, http://www.greenbone.net\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\nCPE = \"cpe:/a:google:chrome\";\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.805995\");\n script_version(\"2019-07-17T08:15:16+0000\");\n script_cve_id(\"CVE-2015-7834\", \"CVE-2015-6763\", \"CVE-2015-6762\", \"CVE-2015-6761\",\n \"CVE-2015-6760\", \"CVE-2015-6759\", \"CVE-2015-6758\", \"CVE-2015-6757\",\n \"CVE-2015-6756\", \"CVE-2015-6755\");\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:\"2019-07-17 08:15:16 +0000 (Wed, 17 Jul 2019)\");\n script_tag(name:\"creation_date\", value:\"2015-10-19 13:09:11 +0530 (Mon, 19 Oct 2015)\");\n script_name(\"Google Chrome Multiple Vulnerabilities-01 Oct15 (Mac OS X)\");\n\n script_tag(name:\"summary\", value:\"The host is installed with Google Chrome\n and is prone to multiple vulnerabilities.\");\n\n script_tag(name:\"vuldetect\", value:\"Checks if a vulnerable version is present on the target host.\");\n\n script_tag(name:\"insight\", value:\"Multiple flaws exists due to,\n\n - An error in 'ContainerNode::parserInsertBefore' function in\n core/dom/ContainerNode.cpp withn Blink.\n\n - A use-after-free error in the CPDFSDK_PageView implementation in\n fpdfsdk/src/fsdk_mgr.cpp in PDFium.\n\n - A use-after-free error in content/browser/service_worker/embedded_worker_instance.cc\n in the ServiceWorker implementation.\n\n - An error in 'CPDF_Document::GetPage' function in\n fpdfapi/fpdf_parser/fpdf_parser_document.cpp in PDFium.\n\n - An error in 'shouldTreatAsUniqueOrigin' function in\n platform/weborigin/SecurityOrigin.cpp in Blink.\n\n - An error in the 'Image11::map' function in renderer/d3d/d3d11/Image11.cpp\n in libANGLE.\n\n - An error in 'update_dimensions' function in libavcodec/vp8.c in FFmpeg.\n\n - An error in the 'CSSFontFaceSrcValue::fetch' function in\n core/css/CSSFontFaceSrcValue.cpp in the Cascading Style Sheets (CSS) implementation.\n\n - Other multiple unspecified errors.\");\n\n script_tag(name:\"impact\", value:\"Successful exploitation would allow a attacker\n to cause a denial of service or possibly have other impact, bypass the security\n restrictions and gain access to potentially sensitive information.\");\n\n script_tag(name:\"affected\", value:\"Google Chrome versions prior to 46.0.2490.71\n on Mac OS X.\");\n\n script_tag(name:\"solution\", value:\"Upgrade to Google Chrome version\n 46.0.2490.71 or later.\");\n\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n\n script_tag(name:\"qod_type\", value:\"executable_version\");\n\n script_xref(name:\"URL\", value:\"http://googlechromereleases.blogspot.in/2015/10/stable-channel-update.html\");\n\n script_copyright(\"Copyright (C) 2015 Greenbone Networks GmbH\");\n script_category(ACT_GATHER_INFO);\n script_family(\"General\");\n script_dependencies(\"gb_google_chrome_detect_macosx.nasl\");\n script_mandatory_keys(\"GoogleChrome/MacOSX/Version\");\n\n exit(0);\n}\n\ninclude(\"host_details.inc\");\ninclude(\"version_func.inc\");\n\nif(!chromeVer = get_app_version(cpe:CPE)){\n exit(0);\n}\n\nif(version_is_less(version:chromeVer, test_version:\"46.0.2490.71\"))\n{\n report = 'Installed version: ' + chromeVer + '\\n' +\n 'Fixed version: 46.0.2490.71' + '\\n';\n security_message(data:report);\n exit(0);\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2019-07-19T22:12:56", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-7834", "CVE-2015-6758", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "description": "The host is installed with Google Chrome\n and is prone to multiple vulnerabilities.", "modified": "2019-07-17T00:00:00", "published": "2015-10-19T00:00:00", "id": "OPENVAS:1361412562310805996", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310805996", "type": "openvas", "title": "Google Chrome Multiple Vulnerabilities-01 Oct15 (Linux)", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# Google Chrome Multiple Vulnerabilities-01 Oct15 (Linux)\n#\n# Authors:\n# Shakeel <bshakeel@secpod.com>\n#\n# Copyright:\n# Copyright (C) 2015 Greenbone Networks GmbH, http://www.greenbone.net\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\nCPE = \"cpe:/a:google:chrome\";\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.805996\");\n script_version(\"2019-07-17T08:15:16+0000\");\n script_cve_id(\"CVE-2015-7834\", \"CVE-2015-6763\", \"CVE-2015-6762\", \"CVE-2015-6761\",\n \"CVE-2015-6760\", \"CVE-2015-6759\", \"CVE-2015-6758\", \"CVE-2015-6757\",\n \"CVE-2015-6756\", \"CVE-2015-6755\");\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:\"2019-07-17 08:15:16 +0000 (Wed, 17 Jul 2019)\");\n script_tag(name:\"creation_date\", value:\"2015-10-19 13:13:05 +0530 (Mon, 19 Oct 2015)\");\n script_name(\"Google Chrome Multiple Vulnerabilities-01 Oct15 (Linux)\");\n\n script_tag(name:\"summary\", value:\"The host is installed with Google Chrome\n and is prone to multiple vulnerabilities.\");\n\n script_tag(name:\"vuldetect\", value:\"Checks if a vulnerable version is present on the target host.\");\n\n script_tag(name:\"insight\", value:\"Multiple flaws exists due to,\n\n - An error in 'ContainerNode::parserInsertBefore' function in\n core/dom/ContainerNode.cpp withn Blink.\n\n - A use-after-free error in the CPDFSDK_PageView implementation in\n fpdfsdk/src/fsdk_mgr.cpp in PDFium.\n\n - A use-after-free error in content/browser/service_worker/embedded_worker_instance.cc\n in the ServiceWorker implementation.\n\n - An error in 'CPDF_Document::GetPage' function in\n fpdfapi/fpdf_parser/fpdf_parser_document.cpp in PDFium.\n\n - An error in 'shouldTreatAsUniqueOrigin' function in\n platform/weborigin/SecurityOrigin.cpp in Blink.\n\n - An error in the 'Image11::map' function in renderer/d3d/d3d11/Image11.cpp\n in libANGLE.\n\n - An error in 'update_dimensions' function in libavcodec/vp8.c in FFmpeg.\n\n - An error in the 'CSSFontFaceSrcValue::fetch' function in\n core/css/CSSFontFaceSrcValue.cpp in the Cascading Style Sheets (CSS) implementation.\n\n - Other multiple unspecified errors.\");\n\n script_tag(name:\"impact\", value:\"Successful exploitation would allow a attacker\n to cause a denial of service or possibly have other impact, bypass the security\n restrictions and gain access to potentially sensitive information.\");\n\n script_tag(name:\"affected\", value:\"Google Chrome versions prior to 46.0.2490.71\n on Linux.\");\n\n script_tag(name:\"solution\", value:\"Upgrade to Google Chrome version\n 46.0.2490.71 or later.\");\n\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n\n script_tag(name:\"qod_type\", value:\"executable_version\");\n\n script_xref(name:\"URL\", value:\"http://googlechromereleases.blogspot.in/2015/10/stable-channel-update.html\");\n\n script_copyright(\"Copyright (C) 2015 Greenbone Networks GmbH\");\n script_category(ACT_GATHER_INFO);\n script_family(\"General\");\n script_dependencies(\"gb_google_chrome_detect_lin.nasl\");\n script_mandatory_keys(\"Google-Chrome/Linux/Ver\");\n\n exit(0);\n}\n\ninclude(\"host_details.inc\");\ninclude(\"version_func.inc\");\n\nif(!chromeVer = get_app_version(cpe:CPE)){\n exit(0);\n}\n\nif(version_is_less(version:chromeVer, test_version:\"46.0.2490.71\"))\n{\n report = 'Installed version: ' + chromeVer + '\\n' +\n 'Fixed version: 46.0.2490.71' + '\\n';\n security_message(data:report);\n exit(0);\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2019-07-19T22:14:08", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-7834", "CVE-2015-6758", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "description": "The host is installed with Google Chrome\n and is prone to multiple vulnerabilities.", "modified": "2019-07-17T00:00:00", "published": "2015-10-19T00:00:00", "id": "OPENVAS:1361412562310805994", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310805994", "type": "openvas", "title": "Google Chrome Multiple Vulnerabilities-01 Oct15 (Windows)", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# Google Chrome Multiple Vulnerabilities-01 Oct15 (Windows)\n#\n# Authors:\n# Shakeel <bshakeel@secpod.com>\n#\n# Copyright:\n# Copyright (C) 2015 Greenbone Networks GmbH, http://www.greenbone.net\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\nCPE = \"cpe:/a:google:chrome\";\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.805994\");\n script_version(\"2019-07-17T08:15:16+0000\");\n script_cve_id(\"CVE-2015-7834\", \"CVE-2015-6763\", \"CVE-2015-6762\", \"CVE-2015-6761\",\n \"CVE-2015-6760\", \"CVE-2015-6759\", \"CVE-2015-6758\", \"CVE-2015-6757\",\n \"CVE-2015-6756\", \"CVE-2015-6755\");\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:\"2019-07-17 08:15:16 +0000 (Wed, 17 Jul 2019)\");\n script_tag(name:\"creation_date\", value:\"2015-10-19 12:49:26 +0530 (Mon, 19 Oct 2015)\");\n script_name(\"Google Chrome Multiple Vulnerabilities-01 Oct15 (Windows)\");\n\n script_tag(name:\"summary\", value:\"The host is installed with Google Chrome\n and is prone to multiple vulnerabilities.\");\n\n script_tag(name:\"vuldetect\", value:\"Checks if a vulnerable version is present on the target host.\");\n\n script_tag(name:\"insight\", value:\"Multiple flaws exists due to,\n\n - An error in 'ContainerNode::parserInsertBefore' function in\n core/dom/ContainerNode.cpp withn Blink.\n\n - A use-after-free error in the CPDFSDK_PageView implementation in\n fpdfsdk/src/fsdk_mgr.cpp in PDFium.\n\n - A use-after-free error in content/browser/service_worker/embedded_worker_instance.cc\n in the ServiceWorker implementation.\n\n - An error in 'CPDF_Document::GetPage' function in\n fpdfapi/fpdf_parser/fpdf_parser_document.cpp in PDFium.\n\n - An error in 'shouldTreatAsUniqueOrigin' function in\n platform/weborigin/SecurityOrigin.cpp in Blink.\n\n - An error in the 'Image11::map' function in renderer/d3d/d3d11/Image11.cpp\n in libANGLE.\n\n - An error in 'update_dimensions' function in libavcodec/vp8.c in FFmpeg.\n\n - An error in the 'CSSFontFaceSrcValue::fetch' function in\n core/css/CSSFontFaceSrcValue.cpp in the Cascading Style Sheets (CSS) implementation.\n\n - Other multiple unspecified errors.\");\n\n script_tag(name:\"impact\", value:\"Successful exploitation would allow an attacker\n to cause a denial of service or possibly have other impact, bypass the security\n restrictions and gain access to potentially sensitive information.\");\n\n script_tag(name:\"affected\", value:\"Google Chrome versions prior to 46.0.2490.71\n on Windows.\");\n\n script_tag(name:\"solution\", value:\"Upgrade to Google Chrome version\n 46.0.2490.71 or later.\");\n\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n\n script_tag(name:\"qod_type\", value:\"registry\");\n\n script_xref(name:\"URL\", value:\"http://googlechromereleases.blogspot.in/2015/10/stable-channel-update.html\");\n\n script_copyright(\"Copyright (C) 2015 Greenbone Networks GmbH\");\n script_category(ACT_GATHER_INFO);\n script_family(\"General\");\n script_dependencies(\"gb_google_chrome_detect_portable_win.nasl\");\n script_mandatory_keys(\"GoogleChrome/Win/Ver\");\n\n exit(0);\n}\n\ninclude(\"host_details.inc\");\ninclude(\"version_func.inc\");\n\nif(!chromeVer = get_app_version(cpe:CPE)){\n exit(0);\n}\n\nif(version_is_less(version:chromeVer, test_version:\"46.0.2490.71\"))\n{\n report = 'Installed version: ' + chromeVer + '\\n' +\n 'Fixed version: 46.0.2490.71' + '\\n';\n security_message(data:report);\n exit(0);\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2019-05-29T18:36:18", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-6758", "CVE-2015-1303", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-1304", "CVE-2015-6757", "CVE-2015-6761"], "description": "Several vulnerabilities have been\ndiscovered in the chromium web browser.\n\nCVE-2015-1303\nMariusz Mlynski discovered a way to bypass the Same Origin Policy\nin the DOM implementation.\n\nCVE-2015-1304\nMariusz Mlynski discovered a way to bypass the Same Origin Policy\nin the v8 javascript library.\n\nCVE-2015-6755\nMariusz Mlynski discovered a way to bypass the Same Origin Policy\nin blink/webkit.\n\nCVE-2015-6756\nA use-after-free issue was found in the pdfium library.\n\nCVE-2015-6757\nCollin Payne found a use-after-free issue in the ServiceWorker\nimplementation.\n\nCVE-2015-6758\nAtte Kettunen found an issue in the pdfium library.\n\nCVE-2015-6759\nMuneaki Nishimura discovered an information leak.\n\nCVE-2015-6760\nRonald Crane discovered a logic error in the ANGLE library\ninvolving lost device events.\n\nCVE-2015-6761\nAki Helin and Khalil Zhani discovered a memory corruption issue in\nthe ffmpeg library.\n\nCVE-2015-6762\nMuneaki Nishimura discovered a way to bypass the Same Origin Policy\nin the CSS implementation.\n\nCVE-2015-6763\nThe chrome 46 development team found and fixed various issues\nduring internal auditing. Also multiple issues were fixed in\nthe v8 javascript library, version 4.6.85.23.", "modified": "2019-03-18T00:00:00", "published": "2015-10-20T00:00:00", "id": "OPENVAS:1361412562310703376", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310703376", "type": "openvas", "title": "Debian Security Advisory DSA 3376-1 (chromium-browser - security update)", "sourceData": "# OpenVAS Vulnerability Test\n# $Id: deb_3376.nasl 14275 2019-03-18 14:39:45Z cfischer $\n# Auto-generated from advisory DSA 3376-1 using nvtgen 1.0\n# Script version: 1.0\n#\n# Author:\n# Greenbone Networks\n#\n# Copyright:\n# Copyright (c) 2015 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\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#\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.703376\");\n script_version(\"$Revision: 14275 $\");\n script_cve_id(\"CVE-2015-1303\", \"CVE-2015-1304\", \"CVE-2015-6755\", \"CVE-2015-6756\",\n \"CVE-2015-6757\", \"CVE-2015-6758\", \"CVE-2015-6759\", \"CVE-2015-6760\",\n \"CVE-2015-6761\", \"CVE-2015-6762\", \"CVE-2015-6763\");\n script_name(\"Debian Security Advisory DSA 3376-1 (chromium-browser - security update)\");\n script_tag(name:\"last_modification\", value:\"$Date: 2019-03-18 15:39:45 +0100 (Mon, 18 Mar 2019) $\");\n script_tag(name:\"creation_date\", value:\"2015-10-20 00:00:00 +0200 (Tue, 20 Oct 2015)\");\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:\"solution_type\", value:\"VendorFix\");\n script_tag(name:\"qod_type\", value:\"package\");\n\n script_xref(name:\"URL\", value:\"http://www.debian.org/security/2015/dsa-3376.html\");\n\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (c) 2015 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=DEB(9|8)\");\n script_tag(name:\"affected\", value:\"chromium-browser on Debian Linux\");\n script_tag(name:\"solution\", value:\"For the stable distribution (jessie),\nthese problems have been fixed in version 46.0.2490.71-1~deb8u1.\n\nFor the testing (stretch) and unstable (sid) distributions, these\nproblems have been fixed in version 46.0.2490.71-1.\n\nWe recommend that you upgrade your chromium-browser packages.\");\n script_tag(name:\"summary\", value:\"Several vulnerabilities have been\ndiscovered in the chromium web browser.\n\nCVE-2015-1303\nMariusz Mlynski discovered a way to bypass the Same Origin Policy\nin the DOM implementation.\n\nCVE-2015-1304\nMariusz Mlynski discovered a way to bypass the Same Origin Policy\nin the v8 javascript library.\n\nCVE-2015-6755\nMariusz Mlynski discovered a way to bypass the Same Origin Policy\nin blink/webkit.\n\nCVE-2015-6756\nA use-after-free issue was found in the pdfium library.\n\nCVE-2015-6757\nCollin Payne found a use-after-free issue in the ServiceWorker\nimplementation.\n\nCVE-2015-6758\nAtte Kettunen found an issue in the pdfium library.\n\nCVE-2015-6759\nMuneaki Nishimura discovered an information leak.\n\nCVE-2015-6760\nRonald Crane discovered a logic error in the ANGLE library\ninvolving lost device events.\n\nCVE-2015-6761\nAki Helin and Khalil Zhani discovered a memory corruption issue in\nthe ffmpeg library.\n\nCVE-2015-6762\nMuneaki Nishimura discovered a way to bypass the Same Origin Policy\nin the CSS implementation.\n\nCVE-2015-6763\nThe chrome 46 development team found and fixed various issues\nduring internal auditing. Also multiple issues were fixed in\nthe v8 javascript library, version 4.6.85.23.\");\n script_tag(name:\"vuldetect\", value:\"This check tests the installed\nsoftware 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((res = isdpkgvuln(pkg:\"chromedriver\", ver:\"46.0.2490.71-1\", rls:\"DEB9\")) != NULL) {\n report += res;\n}\nif((res = isdpkgvuln(pkg:\"chromium\", ver:\"46.0.2490.71-1\", rls:\"DEB9\")) != NULL) {\n report += res;\n}\nif((res = isdpkgvuln(pkg:\"chromium-dbg\", ver:\"46.0.2490.71-1\", rls:\"DEB9\")) != NULL) {\n report += res;\n}\nif((res = isdpkgvuln(pkg:\"chromium-l10n\", ver:\"46.0.2490.71-1\", rls:\"DEB9\")) != NULL) {\n report += res;\n}\nif((res = isdpkgvuln(pkg:\"chromedriver\", ver:\"46.0.2490.71-1~deb8u1\", rls:\"DEB8\")) != NULL) {\n report += res;\n}\nif((res = isdpkgvuln(pkg:\"chromium\", ver:\"46.0.2490.71-1~deb8u1\", rls:\"DEB8\")) != NULL) {\n report += res;\n}\nif((res = isdpkgvuln(pkg:\"chromium-dbg\", ver:\"46.0.2490.71-1~deb8u1\", rls:\"DEB8\")) != NULL) {\n report += res;\n}\nif((res = isdpkgvuln(pkg:\"chromium-inspector\", ver:\"46.0.2490.71-1~deb8u1\", rls:\"DEB8\")) != NULL) {\n report += res;\n}\nif((res = isdpkgvuln(pkg:\"chromium-l10n\", ver:\"46.0.2490.71-1~deb8u1\", rls:\"DEB8\")) != NULL) {\n report += res;\n}\n\nif(report != \"\") {\n security_message(data:report);\n} else if (__pkg_match) {\n exit(99);\n}", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2017-07-24T12:53:07", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-6758", "CVE-2015-1303", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-1304", "CVE-2015-6757", "CVE-2015-6761"], "description": "Several vulnerabilities have been\ndiscovered in the chromium web browser.\n\nCVE-2015-1303 \nMariusz Mlynski discovered a way to bypass the Same Origin Policy\nin the DOM implementation.\n\nCVE-2015-1304 \nMariusz Mlynski discovered a way to bypass the Same Origin Policy\nin the v8 javascript library.\n\nCVE-2015-6755 \nMariusz Mlynski discovered a way to bypass the Same Origin Policy\nin blink/webkit.\n\nCVE-2015-6756 \nA use-after-free issue was found in the pdfium library.\n\nCVE-2015-6757 \nCollin Payne found a use-after-free issue in the ServiceWorker\nimplementation.\n\nCVE-2015-6758 \nAtte Kettunen found an issue in the pdfium library.\n\nCVE-2015-6759 \nMuneaki Nishimura discovered an information leak.\n\nCVE-2015-6760 \nRonald Crane discovered a logic error in the ANGLE library\ninvolving lost device events.\n\nCVE-2015-6761 \nAki Helin and Khalil Zhani discovered a memory corruption issue in\nthe ffmpeg library.\n\nCVE-2015-6762 \nMuneaki Nishimura discovered a way to bypass the Same Origin Policy\nin the CSS implementation.\n\nCVE-2015-6763 \nThe chrome 46 development team found and fixed various issues\nduring internal auditing. Also multiple issues were fixed in\nthe v8 javascript library, version 4.6.85.23.", "modified": "2017-07-07T00:00:00", "published": "2015-10-20T00:00:00", "id": "OPENVAS:703376", "href": "http://plugins.openvas.org/nasl.php?oid=703376", "type": "openvas", "title": "Debian Security Advisory DSA 3376-1 (chromium-browser - security update)", "sourceData": "# OpenVAS Vulnerability Test\n# $Id: deb_3376.nasl 6609 2017-07-07 12:05:59Z cfischer $\n# Auto-generated from advisory DSA 3376-1 using nvtgen 1.0\n# Script version: 1.0\n#\n# Author:\n# Greenbone Networks\n#\n# Copyright:\n# Copyright (c) 2015 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\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#\n\n\nif(description)\n{\n script_id(703376);\n script_version(\"$Revision: 6609 $\");\n script_cve_id(\"CVE-2015-1303\", \"CVE-2015-1304\", \"CVE-2015-6755\", \"CVE-2015-6756\",\n \"CVE-2015-6757\", \"CVE-2015-6758\", \"CVE-2015-6759\", \"CVE-2015-6760\",\n \"CVE-2015-6761\", \"CVE-2015-6762\", \"CVE-2015-6763\");\n script_name(\"Debian Security Advisory DSA 3376-1 (chromium-browser - security update)\");\n script_tag(name: \"last_modification\", value: \"$Date: 2017-07-07 14:05:59 +0200 (Fri, 07 Jul 2017) $\");\n script_tag(name: \"creation_date\", value: \"2015-10-20 00:00:00 +0200 (Tue, 20 Oct 2015)\");\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: \"solution_type\", value: \"VendorFix\");\n script_tag(name: \"qod_type\", value: \"package\");\n\n script_xref(name: \"URL\", value: \"http://www.debian.org/security/2015/dsa-3376.html\");\n\n\n script_category(ACT_GATHER_INFO);\n\n script_copyright(\"Copyright (c) 2015 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\");\n script_tag(name: \"affected\", value: \"chromium-browser on Debian Linux\");\n script_tag(name: \"solution\", value: \"For the stable distribution (jessie),\nthese problems have been fixed in version 46.0.2490.71-1~deb8u1.\n\nFor the testing (stretch) and unstable (sid) distributions, these\nproblems have been fixed in version 46.0.2490.71-1.\n\nWe recommend that you upgrade your chromium-browser packages.\");\n script_tag(name: \"summary\", value: \"Several vulnerabilities have been\ndiscovered in the chromium web browser.\n\nCVE-2015-1303 \nMariusz Mlynski discovered a way to bypass the Same Origin Policy\nin the DOM implementation.\n\nCVE-2015-1304 \nMariusz Mlynski discovered a way to bypass the Same Origin Policy\nin the v8 javascript library.\n\nCVE-2015-6755 \nMariusz Mlynski discovered a way to bypass the Same Origin Policy\nin blink/webkit.\n\nCVE-2015-6756 \nA use-after-free issue was found in the pdfium library.\n\nCVE-2015-6757 \nCollin Payne found a use-after-free issue in the ServiceWorker\nimplementation.\n\nCVE-2015-6758 \nAtte Kettunen found an issue in the pdfium library.\n\nCVE-2015-6759 \nMuneaki Nishimura discovered an information leak.\n\nCVE-2015-6760 \nRonald Crane discovered a logic error in the ANGLE library\ninvolving lost device events.\n\nCVE-2015-6761 \nAki Helin and Khalil Zhani discovered a memory corruption issue in\nthe ffmpeg library.\n\nCVE-2015-6762 \nMuneaki Nishimura discovered a way to bypass the Same Origin Policy\nin the CSS implementation.\n\nCVE-2015-6763 \nThe chrome 46 development team found and fixed various issues\nduring internal auditing. Also multiple issues were fixed in\nthe v8 javascript library, version 4.6.85.23.\");\n script_tag(name: \"vuldetect\", value: \"This check tests the installed\nsoftware version using the apt package manager.\");\n exit(0);\n}\n\ninclude(\"revisions-lib.inc\");\ninclude(\"pkg-lib-deb.inc\");\n\nres = \"\";\nreport = \"\";\nif ((res = isdpkgvuln(pkg:\"chromedriver\", ver:\"46.0.2490.71-1\", rls_regex:\"DEB9.[0-9]+\")) != NULL) {\n report += res;\n}\nif ((res = isdpkgvuln(pkg:\"chromium\", ver:\"46.0.2490.71-1\", rls_regex:\"DEB9.[0-9]+\")) != NULL) {\n report += res;\n}\nif ((res = isdpkgvuln(pkg:\"chromium-dbg\", ver:\"46.0.2490.71-1\", rls_regex:\"DEB9.[0-9]+\")) != NULL) {\n report += res;\n}\nif ((res = isdpkgvuln(pkg:\"chromium-l10n\", ver:\"46.0.2490.71-1\", rls_regex:\"DEB9.[0-9]+\")) != NULL) {\n report += res;\n}\nif ((res = isdpkgvuln(pkg:\"chromedriver\", ver:\"46.0.2490.71-1~deb8u1\", rls_regex:\"DEB8.[0-9]+\")) != NULL) {\n report += res;\n}\nif ((res = isdpkgvuln(pkg:\"chromium\", ver:\"46.0.2490.71-1~deb8u1\", rls_regex:\"DEB8.[0-9]+\")) != NULL) {\n report += res;\n}\nif ((res = isdpkgvuln(pkg:\"chromium-dbg\", ver:\"46.0.2490.71-1~deb8u1\", rls_regex:\"DEB8.[0-9]+\")) != NULL) {\n report += res;\n}\nif ((res = isdpkgvuln(pkg:\"chromium-inspector\", ver:\"46.0.2490.71-1~deb8u1\", rls_regex:\"DEB8.[0-9]+\")) != NULL) {\n report += res;\n}\nif ((res = isdpkgvuln(pkg:\"chromium-l10n\", ver:\"46.0.2490.71-1~deb8u1\", rls_regex:\"DEB8.[0-9]+\")) != NULL) {\n report += res;\n}\n\nif (report != \"\") {\n security_message(data:report);\n} else if (__pkg_match) {\n exit(99); # Not vulnerable.\n}\n", "cvss": {"score": 7.5, "vector": "AV:NETWORK/AC:LOW/Au:NONE/C:PARTIAL/I:PARTIAL/A:PARTIAL/"}}, {"lastseen": "2019-05-29T18:35:37", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6776", "CVE-2016-1628", "CVE-2016-1634", "CVE-2015-6775", "CVE-2016-1638", "CVE-2015-6789", "CVE-2015-6766", "CVE-2015-6762", "CVE-2015-8126", "CVE-2015-1288", "CVE-2015-1281", "CVE-2015-6764", "CVE-2016-1612", "CVE-2015-6770", "CVE-2015-6760", "CVE-2015-6781", "CVE-2015-1291", "CVE-2016-1615", "CVE-2015-1275", "CVE-2016-1626", "CVE-2016-1618", "CVE-2015-1297", "CVE-2015-1286", "CVE-2016-1613", "CVE-2015-1298", "CVE-2015-1295", "CVE-2015-6771", "CVE-2015-1289", "CVE-2015-1296", "CVE-2015-1270", "CVE-2015-6784", "CVE-2015-1272", "CVE-2015-1283", "CVE-2015-1279", "CVE-2015-1274", "CVE-2015-1300", "CVE-2015-1287", "CVE-2016-1621", "CVE-2016-1631", "CVE-2015-6774", "CVE-2015-6778", "CVE-2016-1640", "CVE-2016-1632", "CVE-2015-1282", "CVE-2016-1622", "CVE-2015-6772", "CVE-2015-1285", "CVE-2016-1639", "CVE-2016-1616", "CVE-2015-1302", "CVE-2015-1293", "CVE-2015-6758", "CVE-2015-1303", "CVE-2015-1294", "CVE-2016-1635", "CVE-2015-1276", "CVE-2015-1278", "CVE-2016-1620", "CVE-2015-6767", "CVE-2015-6783", "CVE-2016-1636", "CVE-2015-6787", "CVE-2015-6792", "CVE-2015-1277", "CVE-2016-1627", "CVE-2015-6786", "CVE-2016-1641", "CVE-2016-1633", "CVE-2016-1624", "CVE-2016-1617", "CVE-2015-6791", "CVE-2016-1629", "CVE-2015-6780", "CVE-2015-6785", "CVE-2015-6790", "CVE-2016-1619", "CVE-2015-1271", "CVE-2015-1292", "CVE-2015-6779", "CVE-2015-6788", "CVE-2015-6759", "CVE-2015-1273", "CVE-2015-6756", "CVE-2015-6768", "CVE-2015-6763", "CVE-2016-1630", "CVE-2016-1637", "CVE-2015-6765", "CVE-2015-6755", "CVE-2015-6769", "CVE-2015-6773", "CVE-2015-1304", "CVE-2015-6777", "CVE-2015-1280", "CVE-2015-1299", "CVE-2015-6757", "CVE-2016-1623", "CVE-2015-6782", "CVE-2016-1625", "CVE-2015-1284", "CVE-2016-1614", "CVE-2015-6761"], "description": "Gentoo Linux Local Security Checks", "modified": "2018-10-12T00:00:00", "published": "2016-03-14T00:00:00", "id": "OPENVAS:1361412562310121451", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310121451", "type": "openvas", "title": "Gentoo Security Advisory GLSA 201603-09", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id: glsa-201603-09.nasl 11856 2018-10-12 07:45:29Z cfischer $\n#\n# Gentoo Linux security check\n#\n# Authors:\n# Eero Volotinen <eero.volotinen@solinor.fi>\n#\n# Copyright:\n# Copyright (c) 2016 Eero Volotinen, http://solinor.com\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.121451\");\n script_version(\"$Revision: 11856 $\");\n script_tag(name:\"creation_date\", value:\"2016-03-14 15:52:45 +0200 (Mon, 14 Mar 2016)\");\n script_tag(name:\"last_modification\", value:\"$Date: 2018-10-12 09:45:29 +0200 (Fri, 12 Oct 2018) $\");\n script_name(\"Gentoo Security Advisory GLSA 201603-09\");\n script_tag(name:\"insight\", value:\"Multiple vulnerabilities have been discovered in the Chromium web browser. Please review the CVE identifiers referenced below for details.\");\n script_tag(name:\"solution\", value:\"Update the affected packages to the latest available version.\");\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n script_xref(name:\"URL\", value:\"https://security.gentoo.org/glsa/201603-09\");\n script_cve_id(\"CVE-2015-1270\", \"CVE-2015-1271\", \"CVE-2015-1272\", \"CVE-2015-1273\", \"CVE-2015-1274\", \"CVE-2015-1275\", \"CVE-2015-1276\", \"CVE-2015-1277\", \"CVE-2015-1278\", \"CVE-2015-1279\", \"CVE-2015-1280\", \"CVE-2015-1281\", \"CVE-2015-1282\", \"CVE-2015-1283\", \"CVE-2015-1284\", \"CVE-2015-1285\", \"CVE-2015-1286\", \"CVE-2015-1287\", \"CVE-2015-1288\", \"CVE-2015-1289\", \"CVE-2015-1291\", \"CVE-2015-1292\", \"CVE-2015-1293\", \"CVE-2015-1294\", \"CVE-2015-1295\", \"CVE-2015-1296\", \"CVE-2015-1297\", \"CVE-2015-1298\", \"CVE-2015-1299\", \"CVE-2015-1300\", \"CVE-2015-1302\", \"CVE-2015-1303\", \"CVE-2015-1304\", \"CVE-2015-6755\", \"CVE-2015-6756\", \"CVE-2015-6757\", \"CVE-2015-6758\", \"CVE-2015-6759\", \"CVE-2015-6760\", \"CVE-2015-6761\", \"CVE-2015-6762\", \"CVE-2015-6763\", \"CVE-2015-6764\", \"CVE-2015-6765\", \"CVE-2015-6766\", \"CVE-2015-6767\", \"CVE-2015-6768\", \"CVE-2015-6769\", \"CVE-2015-6770\", \"CVE-2015-6771\", \"CVE-2015-6772\", \"CVE-2015-6773\", \"CVE-2015-6774\", \"CVE-2015-6775\", \"CVE-2015-6776\", \"CVE-2015-6777\", \"CVE-2015-6778\", \"CVE-2015-6779\", \"CVE-2015-6780\", \"CVE-2015-6781\", \"CVE-2015-6782\", \"CVE-2015-6783\", \"CVE-2015-6784\", \"CVE-2015-6785\", \"CVE-2015-6786\", \"CVE-2015-6787\", \"CVE-2015-6788\", \"CVE-2015-6789\", \"CVE-2015-6790\", \"CVE-2015-6791\", \"CVE-2015-6792\", \"CVE-2015-8126\", \"CVE-2016-1612\", \"CVE-2016-1613\", \"CVE-2016-1614\", \"CVE-2016-1615\", \"CVE-2016-1616\", \"CVE-2016-1617\", \"CVE-2016-1618\", \"CVE-2016-1619\", \"CVE-2016-1620\", \"CVE-2016-1621\", \"CVE-2016-1622\", \"CVE-2016-1623\", \"CVE-2016-1624\", \"CVE-2016-1625\", \"CVE-2016-1626\", \"CVE-2016-1627\", \"CVE-2016-1628\", \"CVE-2016-1629\", \"CVE-2016-1630\", \"CVE-2016-1631\", \"CVE-2016-1632\", \"CVE-2016-1633\", \"CVE-2016-1634\", \"CVE-2016-1635\", \"CVE-2016-1636\", \"CVE-2016-1637\", \"CVE-2016-1638\", \"CVE-2016-1639\", \"CVE-2016-1640\", \"CVE-2016-1641\");\n script_tag(name:\"cvss_base\", value:\"10.0\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:L/Au:N/C:C/I:C/A:C\");\n script_tag(name:\"qod_type\", value:\"package\");\n script_dependencies(\"gather-package-list.nasl\");\n script_mandatory_keys(\"ssh/login/gentoo\", \"ssh/login/pkg\");\n script_category(ACT_GATHER_INFO);\n script_tag(name:\"summary\", value:\"Gentoo Linux Local Security Checks\");\n script_copyright(\"Eero Volotinen\");\n script_family(\"Gentoo Local Security Checks\");\n\n exit(0);\n}\n\ninclude(\"revisions-lib.inc\");\ninclude(\"pkg-lib-gentoo.inc\");\n\nres = \"\";\nreport = \"\";\n\nif((res=ispkgvuln(pkg:\"www-client/chromium\", unaffected: make_list(\"ge 49.0.2623.87\"), vulnerable: make_list(\"lt 49.0.2623.87\"))) != NULL) {\n report += res;\n}\n\nif(report != \"\") {\n security_message(data:report);\n} else if (__pkg_match) {\n exit(99);\n}\n", "cvss": {"score": 10.0, "vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C"}}], "nessus": [{"lastseen": "2020-09-23T18:55:28", "description": "USN-2770-1 fixed vulnerabilities in Oxide in Ubuntu 14.04 LTS and\nUbuntu 15.04. This update provides the corresponding updates for\nUbuntu 15.10.\n\nIt was discovered that ContainerNode::parserInsertBefore in Blink\nwould incorrectly proceed with a DOM tree insertion in some\ncircumstances. If a user were tricked in to opening a specially\ncrafted website, an attacker could potentially exploit this to bypass\nsame origin restrictions. (CVE-2015-6755)\n\nA use-after-free was discovered in the service worker\nimplementation in Chromium. If a user were tricked in to\nopening a specially crafted website, an attacker could\npotentially exploit this to cause a denial of service via\napplication crash, or execute arbitrary code with the\nprivileges of the user invoking the program. (CVE-2015-6757)\n\nIt was discovered that Blink did not ensure that the origin\nof LocalStorage resources are considered unique. If a user\nwere tricked in to opening a specially crafted website, an\nattacker could potentially exploit this to obtain sensitive\ninformation. (CVE-2015-6759)\n\nA race condition and memory corruption was discovered in\nFFmpeg. If a user were tricked in to opening a specially\ncrafted website, an attacker could potentially exploit this\nto cause a denial of service via renderer crash, or execute\narbitrary code with the privileges of the sandboxed render\nprocess. (CVE-2015-6761)\n\nIt was discovered that CSSFontFaceSrcValue::fetch in Blink\ndid not use CORS in some circumstances. If a user were\ntricked in to opening a specially crafted website, an\nattacker could potentially exploit this to bypass same\norigin restrictions. (CVE-2015-6762)\n\nMultiple security issues were discovered in Chromium. If a\nuser were tricked in to opening a specially crafted website,\nan attacker could potentially exploit these to read\nuninitialized memory, cause a denial of service via\napplication crash or execute arbitrary code with the\nprivileges of the user invoking the program. (CVE-2015-6763)\n\nMultiple security issues were discovered in V8. If a user\nwere tricked in to opening a specially crafted website, an\nattacker could potentially exploit these to read\nuninitialized memory, cause a denial of service via renderer\ncrash or execute arbitrary code with the privileges of the\nsandboxed render process. (CVE-2015-7834).\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": 21, "published": "2015-10-23T00:00:00", "title": "Ubuntu 15.10 : oxide-qt vulnerabilities (USN-2770-2)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-7834", "CVE-2015-6759", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "modified": "2015-10-23T00:00:00", "cpe": ["cpe:/o:canonical:ubuntu_linux:15.10", "p-cpe:/a:canonical:ubuntu_linux:liboxideqtcore0"], "id": "UBUNTU_USN-2770-2.NASL", "href": "https://www.tenable.com/plugins/nessus/86565", "sourceData": "#%NASL_MIN_LEVEL 80502\n#\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-2770-2. 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(86565);\n script_version(\"2.10\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2020/09/22\");\n\n script_cve_id(\"CVE-2015-6755\", \"CVE-2015-6757\", \"CVE-2015-6759\", \"CVE-2015-6761\", \"CVE-2015-6762\", \"CVE-2015-6763\", \"CVE-2015-7834\");\n script_xref(name:\"USN\", value:\"2770-2\");\n\n script_name(english:\"Ubuntu 15.10 : oxide-qt vulnerabilities (USN-2770-2)\");\n script_summary(english:\"Checks dpkg output for updated package.\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote Ubuntu host is missing a security-related patch.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"USN-2770-1 fixed vulnerabilities in Oxide in Ubuntu 14.04 LTS and\nUbuntu 15.04. This update provides the corresponding updates for\nUbuntu 15.10.\n\nIt was discovered that ContainerNode::parserInsertBefore in Blink\nwould incorrectly proceed with a DOM tree insertion in some\ncircumstances. If a user were tricked in to opening a specially\ncrafted website, an attacker could potentially exploit this to bypass\nsame origin restrictions. (CVE-2015-6755)\n\nA use-after-free was discovered in the service worker\nimplementation in Chromium. If a user were tricked in to\nopening a specially crafted website, an attacker could\npotentially exploit this to cause a denial of service via\napplication crash, or execute arbitrary code with the\nprivileges of the user invoking the program. (CVE-2015-6757)\n\nIt was discovered that Blink did not ensure that the origin\nof LocalStorage resources are considered unique. If a user\nwere tricked in to opening a specially crafted website, an\nattacker could potentially exploit this to obtain sensitive\ninformation. (CVE-2015-6759)\n\nA race condition and memory corruption was discovered in\nFFmpeg. If a user were tricked in to opening a specially\ncrafted website, an attacker could potentially exploit this\nto cause a denial of service via renderer crash, or execute\narbitrary code with the privileges of the sandboxed render\nprocess. (CVE-2015-6761)\n\nIt was discovered that CSSFontFaceSrcValue::fetch in Blink\ndid not use CORS in some circumstances. If a user were\ntricked in to opening a specially crafted website, an\nattacker could potentially exploit this to bypass same\norigin restrictions. (CVE-2015-6762)\n\nMultiple security issues were discovered in Chromium. If a\nuser were tricked in to opening a specially crafted website,\nan attacker could potentially exploit these to read\nuninitialized memory, cause a denial of service via\napplication crash or execute arbitrary code with the\nprivileges of the user invoking the program. (CVE-2015-6763)\n\nMultiple security issues were discovered in V8. If a user\nwere tricked in to opening a specially crafted website, an\nattacker could potentially exploit these to read\nuninitialized memory, cause a denial of service via renderer\ncrash or execute arbitrary code with the privileges of the\nsandboxed render process. (CVE-2015-7834).\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/2770-2/\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\"Update the affected liboxideqtcore0 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_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:liboxideqtcore0\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:canonical:ubuntu_linux:15.10\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2015/10/15\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2015/10/22\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2015/10/23\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"Ubuntu Security Notice (C) 2015-2020 Canonical, Inc. / NASL script (C) 2015-2019 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:\"^(15\\.10)$\", string:release)) audit(AUDIT_OS_NOT, \"Ubuntu 15.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:\"15.10\", pkgname:\"liboxideqtcore0\", pkgver:\"1.10.3-0ubuntu0.15.10.1\")) flag++;\n\nif (flag)\n{\n security_report_v4(\n port : 0,\n severity : SECURITY_HOLE,\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, \"liboxideqtcore0\");\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-09-23T18:55:28", "description": "It was discovered that ContainerNode::parserInsertBefore in Blink\nwould incorrectly proceed with a DOM tree insertion in some\ncircumstances. If a user were tricked in to opening a specially\ncrafted website, an attacker could potentially exploit this to bypass\nsame origin restrictions. (CVE-2015-6755)\n\nA use-after-free was discovered in the service worker implementation\nin Chromium. If a user were tricked in to opening a specially crafted\nwebsite, an attacker could potentially exploit this to cause a denial\nof service via application crash, or execute arbitrary code with the\nprivileges of the user invoking the program. (CVE-2015-6757)\n\nIt was discovered that Blink did not ensure that the origin of\nLocalStorage resources are considered unique. If a user were tricked\nin to opening a specially crafted website, an attacker could\npotentially exploit this to obtain sensitive information.\n(CVE-2015-6759)\n\nA race condition and memory corruption was discovered in FFmpeg. If a\nuser were tricked in to opening a specially crafted website, an\nattacker could potentially exploit this to cause a denial of service\nvia renderer crash, or execute arbitrary code with the privileges of\nthe sandboxed render process. (CVE-2015-6761)\n\nIt was discovered that CSSFontFaceSrcValue::fetch in Blink did not use\nCORS in some circumstances. If a user were tricked in to opening a\nspecially crafted website, an attacker could potentially exploit this\nto bypass same origin restrictions. (CVE-2015-6762)\n\nMultiple security issues were discovered in Chromium. If a user were\ntricked in to opening a specially crafted website, an attacker could\npotentially exploit these to read uninitialized memory, cause a denial\nof service via application crash or execute arbitrary code with the\nprivileges of the user invoking the program. (CVE-2015-6763)\n\nMultiple security issues were discovered in V8. If a user were tricked\nin to opening a specially crafted website, an attacker could\npotentially exploit these to read uninitialized memory, cause a denial\nof service via renderer crash or execute arbitrary code with the\nprivileges of the sandboxed render process. (CVE-2015-7834).\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": 21, "published": "2015-10-21T00:00:00", "title": "Ubuntu 14.04 LTS / 15.04 : oxide-qt vulnerabilities (USN-2770-1)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-7834", "CVE-2015-6759", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "modified": "2015-10-21T00:00:00", "cpe": ["cpe:/o:canonical:ubuntu_linux:15.04", "p-cpe:/a:canonical:ubuntu_linux:liboxideqtcore0", "cpe:/o:canonical:ubuntu_linux:14.04"], "id": "UBUNTU_USN-2770-1.NASL", "href": "https://www.tenable.com/plugins/nessus/86491", "sourceData": "#%NASL_MIN_LEVEL 80502\n#\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-2770-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(86491);\n script_version(\"1.10\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2020/09/22\");\n\n script_cve_id(\"CVE-2015-6755\", \"CVE-2015-6757\", \"CVE-2015-6759\", \"CVE-2015-6761\", \"CVE-2015-6762\", \"CVE-2015-6763\", \"CVE-2015-7834\");\n script_xref(name:\"USN\", value:\"2770-1\");\n\n script_name(english:\"Ubuntu 14.04 LTS / 15.04 : oxide-qt vulnerabilities (USN-2770-1)\");\n script_summary(english:\"Checks dpkg output for updated package.\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote Ubuntu host is missing a security-related patch.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"It was discovered that ContainerNode::parserInsertBefore in Blink\nwould incorrectly proceed with a DOM tree insertion in some\ncircumstances. If a user were tricked in to opening a specially\ncrafted website, an attacker could potentially exploit this to bypass\nsame origin restrictions. (CVE-2015-6755)\n\nA use-after-free was discovered in the service worker implementation\nin Chromium. If a user were tricked in to opening a specially crafted\nwebsite, an attacker could potentially exploit this to cause a denial\nof service via application crash, or execute arbitrary code with the\nprivileges of the user invoking the program. (CVE-2015-6757)\n\nIt was discovered that Blink did not ensure that the origin of\nLocalStorage resources are considered unique. If a user were tricked\nin to opening a specially crafted website, an attacker could\npotentially exploit this to obtain sensitive information.\n(CVE-2015-6759)\n\nA race condition and memory corruption was discovered in FFmpeg. If a\nuser were tricked in to opening a specially crafted website, an\nattacker could potentially exploit this to cause a denial of service\nvia renderer crash, or execute arbitrary code with the privileges of\nthe sandboxed render process. (CVE-2015-6761)\n\nIt was discovered that CSSFontFaceSrcValue::fetch in Blink did not use\nCORS in some circumstances. If a user were tricked in to opening a\nspecially crafted website, an attacker could potentially exploit this\nto bypass same origin restrictions. (CVE-2015-6762)\n\nMultiple security issues were discovered in Chromium. If a user were\ntricked in to opening a specially crafted website, an attacker could\npotentially exploit these to read uninitialized memory, cause a denial\nof service via application crash or execute arbitrary code with the\nprivileges of the user invoking the program. (CVE-2015-6763)\n\nMultiple security issues were discovered in V8. If a user were tricked\nin to opening a specially crafted website, an attacker could\npotentially exploit these to read uninitialized memory, cause a denial\nof service via renderer crash or execute arbitrary code with the\nprivileges of the sandboxed render process. (CVE-2015-7834).\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/2770-1/\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\"Update the affected liboxideqtcore0 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_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:liboxideqtcore0\");\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:15.04\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2015/10/15\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2015/10/20\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2015/10/21\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"Ubuntu Security Notice (C) 2015-2020 Canonical, Inc. / NASL script (C) 2015-2019 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|15\\.04)$\", string:release)) audit(AUDIT_OS_NOT, \"Ubuntu 14.04 / 15.04\", \"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:\"liboxideqtcore0\", pkgver:\"1.10.3-0ubuntu0.14.04.1\")) flag++;\nif (ubuntu_check(osver:\"15.04\", pkgname:\"liboxideqtcore0\", pkgver:\"1.10.3-0ubuntu0.15.04.1\")) flag++;\n\nif (flag)\n{\n security_report_v4(\n port : 0,\n severity : SECURITY_HOLE,\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, \"liboxideqtcore0\");\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-05-31T20:09:25", "description": "Updated chromium-browser packages that fix multiple security issues\nare now available for Red Hat Enterprise Linux 6 Supplementary.\n\nRed Hat Product Security has rated this update as having Important\nsecurity impact. Common Vulnerability Scoring System (CVSS) base\nscores, which give detailed severity ratings, are available for each\nvulnerability from the CVE links in the References section.\n\nChromium is an open source web browser, powered by WebKit (Blink).\n\nSeveral flaws were found in the processing of malformed web content. A\nweb page containing malicious content could cause Chromium to crash,\nexecute arbitrary code, or disclose sensitive information when visited\nby the victim. (CVE-2015-6755, CVE-2015-6756, CVE-2015-6757,\nCVE-2015-6758, CVE-2015-6759, CVE-2015-6760, CVE-2015-6761,\nCVE-2015-6762, CVE-2015-6763)\n\nAll Chromium users should upgrade to these updated packages, which\ncontain Chromium version 46.0.2490.71, which corrects these issues.\nAfter installing the update, Chromium must be restarted for the\nchanges to take effect.", "edition": 19, "published": "2015-10-16T00:00:00", "title": "RHEL 6 : chromium-browser (RHSA-2015:1912)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-6758", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "modified": "2015-10-16T00:00:00", "cpe": ["p-cpe:/a:redhat:enterprise_linux:chromium-browser-debuginfo", "cpe:/o:redhat:enterprise_linux:6.7", "p-cpe:/a:redhat:enterprise_linux:chromium-browser", "cpe:/o:redhat:enterprise_linux:6"], "id": "REDHAT-RHSA-2015-1912.NASL", "href": "https://www.tenable.com/plugins/nessus/86414", "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-2015:1912. The text \n# itself is copyright (C) Red Hat, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(86414);\n script_version(\"2.13\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2020/05/29\");\n\n script_cve_id(\"CVE-2015-6755\", \"CVE-2015-6756\", \"CVE-2015-6757\", \"CVE-2015-6758\", \"CVE-2015-6759\", \"CVE-2015-6760\", \"CVE-2015-6761\", \"CVE-2015-6762\", \"CVE-2015-6763\");\n script_xref(name:\"RHSA\", value:\"2015:1912\");\n\n script_name(english:\"RHEL 6 : chromium-browser (RHSA-2015:1912)\");\n script_summary(english:\"Checks the rpm output for the updated packages\");\n\n script_set_attribute(\n attribute:\"synopsis\",\n value:\"The remote Red Hat host is missing one or more security updates.\"\n );\n script_set_attribute(\n attribute:\"description\",\n value:\n\"Updated chromium-browser packages that fix multiple security issues\nare now available for Red Hat Enterprise Linux 6 Supplementary.\n\nRed Hat Product Security has rated this update as having Important\nsecurity impact. Common Vulnerability Scoring System (CVSS) base\nscores, which give detailed severity ratings, are available for each\nvulnerability from the CVE links in the References section.\n\nChromium is an open source web browser, powered by WebKit (Blink).\n\nSeveral flaws were found in the processing of malformed web content. A\nweb page containing malicious content could cause Chromium to crash,\nexecute arbitrary code, or disclose sensitive information when visited\nby the victim. (CVE-2015-6755, CVE-2015-6756, CVE-2015-6757,\nCVE-2015-6758, CVE-2015-6759, CVE-2015-6760, CVE-2015-6761,\nCVE-2015-6762, CVE-2015-6763)\n\nAll Chromium users should upgrade to these updated packages, which\ncontain Chromium version 46.0.2490.71, which corrects these issues.\nAfter installing the update, Chromium must be restarted for the\nchanges to take effect.\"\n );\n # http://googlechromereleases.blogspot.com/2015/10/stable-channel-update.html\n script_set_attribute(\n attribute:\"see_also\",\n value:\"http://www.nessus.org/u?7a25de1b\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/errata/RHSA-2015:1912\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/security/cve/cve-2015-6760\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/security/cve/cve-2015-6761\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/security/cve/cve-2015-6762\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/security/cve/cve-2015-6763\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/security/cve/cve-2015-6755\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/security/cve/cve-2015-6757\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/security/cve/cve-2015-6756\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/security/cve/cve-2015-6759\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/security/cve/cve-2015-6758\"\n );\n script_set_attribute(\n attribute:\"solution\",\n value:\n\"Update the affected chromium-browser and / or\nchromium-browser-debuginfo 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_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:redhat:enterprise_linux:chromium-browser\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:redhat:enterprise_linux:chromium-browser-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:redhat:enterprise_linux:6\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:redhat:enterprise_linux:6.7\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2015/10/15\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2015/10/15\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2015/10/16\");\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) 2015-2020 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"Red Hat 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\", \"Host/cpu\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"rpm.inc\");\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) || \"Red Hat\" >!< release) audit(AUDIT_OS_NOT, \"Red Hat\");\nos_ver = pregmatch(pattern: \"Red Hat Enterprise Linux.*release ([0-9]+(\\.[0-9]+)?)\", string:release);\nif (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, \"Red Hat\");\nos_ver = os_ver[1];\nif (! preg(pattern:\"^6([^0-9]|$)\", string:os_ver)) audit(AUDIT_OS_NOT, \"Red Hat 6.x\", \"Red Hat \" + 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$\" && \"s390\" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, \"Red Hat\", cpu);\n\nyum_updateinfo = get_kb_item(\"Host/RedHat/yum-updateinfo\");\nif (!empty_or_null(yum_updateinfo)) \n{\n rhsa = \"RHSA-2015:1912\";\n yum_report = redhat_generate_yum_updateinfo_report(rhsa:rhsa);\n if (!empty_or_null(yum_report))\n {\n security_report_v4(\n port : 0,\n severity : SECURITY_HOLE,\n extra : yum_report \n );\n exit(0);\n }\n else\n {\n audit_message = \"affected by Red Hat security advisory \" + rhsa;\n audit(AUDIT_OS_NOT, audit_message);\n }\n}\nelse\n{\n flag = 0;\n if (rpm_check(release:\"RHEL6\", cpu:\"i686\", reference:\"chromium-browser-46.0.2490.71-1.el6\", allowmaj:TRUE)) flag++;\n\n if (rpm_check(release:\"RHEL6\", cpu:\"x86_64\", reference:\"chromium-browser-46.0.2490.71-1.el6\", allowmaj:TRUE)) flag++;\n\n if (rpm_check(release:\"RHEL6\", cpu:\"i686\", reference:\"chromium-browser-debuginfo-46.0.2490.71-1.el6\", allowmaj:TRUE)) flag++;\n\n if (rpm_check(release:\"RHEL6\", cpu:\"x86_64\", reference:\"chromium-browser-debuginfo-46.0.2490.71-1.el6\", allowmaj:TRUE)) flag++;\n\n\n if (flag)\n {\n security_report_v4(\n port : 0,\n severity : SECURITY_HOLE,\n extra : rpm_report_get() + redhat_report_package_caveat()\n );\n exit(0);\n }\n else\n {\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"chromium-browser / chromium-browser-debuginfo\");\n }\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2021-01-07T10:46:39", "description": "Google Chrome Releases reports :\n\n24 security fixes in this release, including :\n\n- [519558] High CVE-2015-6755: Cross-origin bypass in Blink. Credit to\nMariusz Mlynski.\n\n- [507316] High CVE-2015-6756: Use-after-free in PDFium. Credit to\nanonymous.\n\n- [529520] High CVE-2015-6757: Use-after-free in ServiceWorker. Credit\nto Collin Payne.\n\n- [522131] High CVE-2015-6758: Bad-cast in PDFium. Credit to Atte\nKettunen of OUSPG.\n\n- [514076] Medium CVE-2015-6759: Information leakage in LocalStorage.\nCredit to Muneaki Nishimura (nishimunea).\n\n- [519642] Medium CVE-2015-6760: Improper error handling in libANGLE.\nCredit to lastland.net.\n\n- [447860,532967] Medium CVE-2015-6761: Memory corruption in FFMpeg.\nCredit to Aki Helin of OUSPG and anonymous.\n\n- [512678] Low CVE-2015-6762: CORS bypass via CSS fonts. Credit to\nMuneaki Nishimura (nishimunea).\n\n- [542517] CVE-2015-6763: Various fixes from internal audits, fuzzing\nand other initiatives.\n\n- Multiple vulnerabilities in V8 fixed at the tip of the 4.6 branch\n(currently 4.6.85.23).", "edition": 21, "published": "2015-10-14T00:00:00", "title": "FreeBSD : chromium -- multiple vulnerabilities (8301c04d-71df-11e5-9fcb-00262d5ed8ee)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-6758", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "modified": "2015-10-14T00:00:00", "cpe": ["p-cpe:/a:freebsd:freebsd:chromium-npapi", "cpe:/o:freebsd:freebsd", "p-cpe:/a:freebsd:freebsd:chromium-pulse", "p-cpe:/a:freebsd:freebsd:chromium"], "id": "FREEBSD_PKG_8301C04D71DF11E59FCB00262D5ED8EE.NASL", "href": "https://www.tenable.com/plugins/nessus/86377", "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 the FreeBSD VuXML database :\n#\n# Copyright 2003-2018 Jacques Vidrine and contributors\n#\n# Redistribution and use in source (VuXML) and 'compiled' forms (SGML,\n# HTML, PDF, PostScript, RTF and so forth) with or without modification,\n# are permitted provided that the following conditions are met:\n# 1. Redistributions of source code (VuXML) must retain the above\n# copyright notice, this list of conditions and the following\n# disclaimer as the first lines of this file unmodified.\n# 2. Redistributions in compiled form (transformed to other DTDs,\n# published online in any format, converted to PDF, PostScript,\n# RTF and other formats) must reproduce the above copyright\n# notice, this list of conditions and the following disclaimer\n# in the documentation and/or other materials provided with the\n# distribution.\n# \n# THIS DOCUMENTATION IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS \"AS IS\"\n# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\n# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS\n# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\n# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS DOCUMENTATION,\n# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n#\n\ninclude('deprecated_nasl_level.inc');\ninclude('compat.inc');\n\nif (description)\n{\n script_id(86377);\n script_version(\"2.8\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/06\");\n\n script_cve_id(\"CVE-2015-6755\", \"CVE-2015-6756\", \"CVE-2015-6757\", \"CVE-2015-6758\", \"CVE-2015-6759\", \"CVE-2015-6760\", \"CVE-2015-6761\", \"CVE-2015-6762\", \"CVE-2015-6763\");\n\n script_name(english:\"FreeBSD : chromium -- multiple vulnerabilities (8301c04d-71df-11e5-9fcb-00262d5ed8ee)\");\n script_summary(english:\"Checks for updated packages in pkg_info output\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\n\"The remote FreeBSD host is missing one or more security-related\nupdates.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"Google Chrome Releases reports :\n\n24 security fixes in this release, including :\n\n- [519558] High CVE-2015-6755: Cross-origin bypass in Blink. Credit to\nMariusz Mlynski.\n\n- [507316] High CVE-2015-6756: Use-after-free in PDFium. Credit to\nanonymous.\n\n- [529520] High CVE-2015-6757: Use-after-free in ServiceWorker. Credit\nto Collin Payne.\n\n- [522131] High CVE-2015-6758: Bad-cast in PDFium. Credit to Atte\nKettunen of OUSPG.\n\n- [514076] Medium CVE-2015-6759: Information leakage in LocalStorage.\nCredit to Muneaki Nishimura (nishimunea).\n\n- [519642] Medium CVE-2015-6760: Improper error handling in libANGLE.\nCredit to lastland.net.\n\n- [447860,532967] Medium CVE-2015-6761: Memory corruption in FFMpeg.\nCredit to Aki Helin of OUSPG and anonymous.\n\n- [512678] Low CVE-2015-6762: CORS bypass via CSS fonts. Credit to\nMuneaki Nishimura (nishimunea).\n\n- [542517] CVE-2015-6763: Various fixes from internal audits, fuzzing\nand other initiatives.\n\n- Multiple vulnerabilities in V8 fixed at the tip of the 4.6 branch\n(currently 4.6.85.23).\"\n );\n # http://googlechromereleases.blogspot.nl/2015/10/stable-channel-update.html\n script_set_attribute(\n attribute:\"see_also\",\n value:\"http://www.nessus.org/u?a3ea664b\"\n );\n # https://vuxml.freebsd.org/freebsd/8301c04d-71df-11e5-9fcb-00262d5ed8ee.html\n script_set_attribute(\n attribute:\"see_also\",\n value:\"http://www.nessus.org/u?e9373035\"\n );\n script_set_attribute(attribute:\"solution\", value:\"Update the affected packages.\");\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:freebsd:freebsd:chromium\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:freebsd:freebsd:chromium-npapi\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:freebsd:freebsd:chromium-pulse\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:freebsd:freebsd\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2015/10/13\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2015/10/13\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2015/10/14\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2015-2021 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"FreeBSD Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/FreeBSD/release\", \"Host/FreeBSD/pkg_info\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"freebsd_package.inc\");\n\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nif (!get_kb_item(\"Host/FreeBSD/release\")) audit(AUDIT_OS_NOT, \"FreeBSD\");\nif (!get_kb_item(\"Host/FreeBSD/pkg_info\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\n\nflag = 0;\n\nif (pkg_test(save_report:TRUE, pkg:\"chromium<46.0.2490.71\")) flag++;\nif (pkg_test(save_report:TRUE, pkg:\"chromium-npapi<46.0.2490.71\")) flag++;\nif (pkg_test(save_report:TRUE, pkg:\"chromium-pulse<46.0.2490.71\")) flag++;\n\nif (flag)\n{\n if (report_verbosity > 0) security_hole(port:0, extra:pkg_report_get());\n else security_hole(0);\n exit(0);\n}\nelse audit(AUDIT_HOST_NOT, \"affected\");\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2021-01-01T03:30:21", "description": "The version of Google Chrome installed on the remote Mac OS X host is\nprior to 46.0.2490.71. It is, therefore, affected by multiple\nvulnerabilities :\n\n - A same-origin bypass vulnerability exists in Blink that\n allows an attacker to bypass the same-origin policy.\n (CVE-2015-6755)\n\n - A use-after-free error exists in PDFium. A remote\n attacker can exploit this to dereference already freed\n memory, potentially resulting in the execution of\n arbitrary code or a denial of service condition.\n (CVE-2015-6756)\n\n - A use-after-free error exists in ServiceWorker. A remote\n attacker can exploit this to dereference already freed\n memory, potentially resulting in the execution of\n arbitrary code. (CVE-2015-6757)\n\n - An unspecified bad cast issue exists in PDFium that a\n remote attacker can exploit to have an unspecified\n impact. (CVE-2015-6758)\n\n - An unspecified flaw exists in LocalStorage that allows\n an attacker to disclose sensitive information.\n (CVE-2015-6759)\n\n - An unspecified flaw exists when handling errors that\n allows an attacker to have an unspecified impact.\n (CVE-2015-6760)\n\n - A memory corruption issues exists in FFMpeg due to\n improper validation of user-supplied input. A remote\n attacker can exploit this to execute arbitrary code.\n (CVE-2015-6761)\n\n - An unspecified flaw exists when handling CSS fonts. An\n attacker can exploit this to bypass cross-origin\n resource sharing (CORS) restrictions. (CVE-2015-6762)\n\n - Multiple unspecified high severity issues exist that\n allow an attacker to have an unspecified impact.\n (CVE-2015-6763)", "edition": 24, "published": "2015-10-14T00:00:00", "title": "Google Chrome < 46.0.2490.71 Multiple Vulnerabilities (Mac OS X)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-6758", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "modified": "2021-01-02T00:00:00", "cpe": ["cpe:/a:google:chrome"], "id": "MACOSX_GOOGLE_CHROME_45_0_2490_71.NASL", "href": "https://www.tenable.com/plugins/nessus/86381", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(86381);\n script_version(\"1.7\");\n script_cvs_date(\"Date: 2019/11/20\");\n\n script_cve_id(\n \"CVE-2015-6755\",\n \"CVE-2015-6756\",\n \"CVE-2015-6757\",\n \"CVE-2015-6758\",\n \"CVE-2015-6759\",\n \"CVE-2015-6760\",\n \"CVE-2015-6761\",\n \"CVE-2015-6762\",\n \"CVE-2015-6763\"\n );\n\n script_name(english:\"Google Chrome < 46.0.2490.71 Multiple Vulnerabilities (Mac OS X)\");\n script_summary(english:\"Checks the version number of Google Chrome.\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"The remote Mac OS X host contains a web browser that is affected by\nmultiple vulnerabilities.\");\n script_set_attribute(attribute:\"description\", value:\n\"The version of Google Chrome installed on the remote Mac OS X host is\nprior to 46.0.2490.71. It is, therefore, affected by multiple\nvulnerabilities :\n\n - A same-origin bypass vulnerability exists in Blink that\n allows an attacker to bypass the same-origin policy.\n (CVE-2015-6755)\n\n - A use-after-free error exists in PDFium. A remote\n attacker can exploit this to dereference already freed\n memory, potentially resulting in the execution of\n arbitrary code or a denial of service condition.\n (CVE-2015-6756)\n\n - A use-after-free error exists in ServiceWorker. A remote\n attacker can exploit this to dereference already freed\n memory, potentially resulting in the execution of\n arbitrary code. (CVE-2015-6757)\n\n - An unspecified bad cast issue exists in PDFium that a\n remote attacker can exploit to have an unspecified\n impact. (CVE-2015-6758)\n\n - An unspecified flaw exists in LocalStorage that allows\n an attacker to disclose sensitive information.\n (CVE-2015-6759)\n\n - An unspecified flaw exists when handling errors that\n allows an attacker to have an unspecified impact.\n (CVE-2015-6760)\n\n - A memory corruption issues exists in FFMpeg due to\n improper validation of user-supplied input. A remote\n attacker can exploit this to execute arbitrary code.\n (CVE-2015-6761)\n\n - An unspecified flaw exists when handling CSS fonts. An\n attacker can exploit this to bypass cross-origin\n resource sharing (CORS) restrictions. (CVE-2015-6762)\n\n - Multiple unspecified high severity issues exist that\n allow an attacker to have an unspecified impact.\n (CVE-2015-6763)\");\n # http://googlechromereleases.blogspot.com/2015/10/stable-channel-update.html\n script_set_attribute(attribute:\"see_also\", value:\"http://www.nessus.org/u?7a25de1b\");\n script_set_attribute(attribute:\"solution\", value:\n\"Upgrade to Google Chrome 46.0.2490.71 or later.\");\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_attribute(attribute:\"cvss_score_source\", value:\"CVE-2015-6763\");\n\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:\"vuln_publication_date\", value:\"2015/10/13\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2015/10/13\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2015/10/14\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:google:chrome\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"MacOS X Local Security Checks\");\n\n script_copyright(english:\"This script is Copyright (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n\n script_dependencies(\"macosx_google_chrome_installed.nbin\");\n script_require_keys(\"MacOSX/Google Chrome/Installed\");\n\n exit(0);\n}\n\ninclude(\"google_chrome_version.inc\");\n\nget_kb_item_or_exit(\"MacOSX/Google Chrome/Installed\");\n\ngoogle_chrome_check_version(fix:'46.0.2490.71', severity:SECURITY_HOLE);\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2021-01-01T03:05:42", "description": "The version of Google Chrome installed on the remote Windows host is\nprior to 46.0.2490.71. It is, therefore, affected by multiple\nvulnerabilities :\n\n - A same-origin bypass vulnerability exists in Blink that\n allows an attacker to bypass the same-origin policy.\n (CVE-2015-6755)\n\n - A use-after-free error exists in PDFium. A remote\n attacker can exploit this to dereference already freed\n memory, potentially resulting in the execution of\n arbitrary code or a denial of service condition.\n (CVE-2015-6756)\n\n - A use-after-free error exists in ServiceWorker. A remote\n attacker can exploit this to dereference already freed\n memory, potentially resulting in the execution of\n arbitrary code. (CVE-2015-6757)\n\n - An unspecified bad cast issue exists in PDFium that a\n remote attacker can exploit to have an unspecified\n impact. (CVE-2015-6758)\n\n - An unspecified flaw exists in LocalStorage that allows\n an attacker to disclose sensitive information.\n (CVE-2015-6759)\n\n - An unspecified flaw exists when handling errors that\n allows an attacker to have an unspecified impact.\n (CVE-2015-6760)\n\n - A memory corruption issues exists in FFMpeg due to\n improper validation of user-supplied input. A remote\n attacker can exploit this to execute arbitrary code.\n (CVE-2015-6761)\n\n - An unspecified flaw exists when handling CSS fonts. An\n attacker can exploit this to bypass cross-origin\n resource sharing (CORS) restrictions. (CVE-2015-6762)\n\n - Multiple unspecified high severity issues exist that\n allow an attacker to have an unspecified impact.\n (CVE-2015-6763)", "edition": 24, "published": "2015-10-14T00:00:00", "title": "Google Chrome < 46.0.2490.71 Multiple Vulnerabilities", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-6758", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "modified": "2021-01-02T00:00:00", "cpe": ["cpe:/a:google:chrome"], "id": "GOOGLE_CHROME_45_0_2490_71.NASL", "href": "https://www.tenable.com/plugins/nessus/86380", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(86380);\n script_version(\"1.7\");\n script_cvs_date(\"Date: 2019/11/20\");\n\n script_cve_id(\n \"CVE-2015-6755\",\n \"CVE-2015-6756\",\n \"CVE-2015-6757\",\n \"CVE-2015-6758\",\n \"CVE-2015-6759\",\n \"CVE-2015-6760\",\n \"CVE-2015-6761\",\n \"CVE-2015-6762\",\n \"CVE-2015-6763\"\n );\n\n script_name(english:\"Google Chrome < 46.0.2490.71 Multiple Vulnerabilities\");\n script_summary(english:\"Checks the version number of Google Chrome.\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"The remote Windows host contains a web browser that is affected by\nmultiple vulnerabilities.\");\n script_set_attribute(attribute:\"description\", value:\n\"The version of Google Chrome installed on the remote Windows host is\nprior to 46.0.2490.71. It is, therefore, affected by multiple\nvulnerabilities :\n\n - A same-origin bypass vulnerability exists in Blink that\n allows an attacker to bypass the same-origin policy.\n (CVE-2015-6755)\n\n - A use-after-free error exists in PDFium. A remote\n attacker can exploit this to dereference already freed\n memory, potentially resulting in the execution of\n arbitrary code or a denial of service condition.\n (CVE-2015-6756)\n\n - A use-after-free error exists in ServiceWorker. A remote\n attacker can exploit this to dereference already freed\n memory, potentially resulting in the execution of\n arbitrary code. (CVE-2015-6757)\n\n - An unspecified bad cast issue exists in PDFium that a\n remote attacker can exploit to have an unspecified\n impact. (CVE-2015-6758)\n\n - An unspecified flaw exists in LocalStorage that allows\n an attacker to disclose sensitive information.\n (CVE-2015-6759)\n\n - An unspecified flaw exists when handling errors that\n allows an attacker to have an unspecified impact.\n (CVE-2015-6760)\n\n - A memory corruption issues exists in FFMpeg due to\n improper validation of user-supplied input. A remote\n attacker can exploit this to execute arbitrary code.\n (CVE-2015-6761)\n\n - An unspecified flaw exists when handling CSS fonts. An\n attacker can exploit this to bypass cross-origin\n resource sharing (CORS) restrictions. (CVE-2015-6762)\n\n - Multiple unspecified high severity issues exist that\n allow an attacker to have an unspecified impact.\n (CVE-2015-6763)\");\n # http://googlechromereleases.blogspot.com/2015/10/stable-channel-update.html\n script_set_attribute(attribute:\"see_also\", value:\"http://www.nessus.org/u?7a25de1b\");\n script_set_attribute(attribute:\"solution\", value:\n\"Upgrade to Google Chrome 46.0.2490.71 or later.\");\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_attribute(attribute:\"cvss_score_source\", value:\"CVE-2015-6763\");\n\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:\"vuln_publication_date\", value:\"2015/10/13\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2015/10/13\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2015/10/14\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:google:chrome\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"Windows\");\n\n script_copyright(english:\"This script is Copyright (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n\n script_dependencies(\"google_chrome_installed.nasl\");\n script_require_keys(\"SMB/Google_Chrome/Installed\");\n\n exit(0);\n}\n\ninclude(\"google_chrome_version.inc\");\n\nget_kb_item_or_exit(\"SMB/Google_Chrome/Installed\");\ninstalls = get_kb_list(\"SMB/Google_Chrome/*\");\n\ngoogle_chrome_check_version(installs:installs, fix:'46.0.2490.71', severity:SECURITY_HOLE);\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2020-06-05T11:12:28", "description": "Chromium was update do the stable release 46.0.2490.71 to fix security\nissues.\n\nThe following vulnerabilities were fixed :\n\n - CVE-2015-6755: Cross-origin bypass in Blink\n\n - CVE-2015-6756: Use-after-free in PDFium\n\n - CVE-2015-6757: Use-after-free in ServiceWorker\n\n - CVE-2015-6758: Bad-cast in PDFium\n\n - CVE-2015-6759: Information leakage in LocalStorage\n\n - CVE-2015-6760: Improper error handling in libANGLE\n\n - CVE-2015-6761: Memory corruption in FFMpeg\n\n - CVE-2015-6762: CORS bypass via CSS fonts\n\n - CVE-2015-6763: Various fixes from internal audits,\n fuzzing and other initiatives.\n\n - CVE-2015-7834: Multiple vulnerabilities in V8 fixed at\n the tip of the 4.6 branch", "edition": 16, "published": "2015-10-26T00:00:00", "title": "openSUSE Security Update : Chromium (openSUSE-2015-679)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-6764", "CVE-2015-6760", "CVE-2015-7834", "CVE-2015-6758", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "modified": "2015-10-26T00:00:00", "cpe": ["p-cpe:/a:novell:opensuse:chromedriver-debuginfo", "p-cpe:/a:novell:opensuse:chromium-desktop-gnome", "p-cpe:/a:novell:opensuse:chromium", "p-cpe:/a:novell:opensuse:chromium-debugsource", "p-cpe:/a:novell:opensuse:chromedriver", "p-cpe:/a:novell:opensuse:chromium-ffmpegsumo", "cpe:/o:novell:opensuse:13.2", "p-cpe:/a:novell:opensuse:chromium-debuginfo", "cpe:/o:novell:opensuse:13.1", "p-cpe:/a:novell:opensuse:chromium-ffmpegsumo-debuginfo", "p-cpe:/a:novell:opensuse:chromium-desktop-kde"], "id": "OPENSUSE-2015-679.NASL", "href": "https://www.tenable.com/plugins/nessus/86596", "sourceData": "#%NASL_MIN_LEVEL 80502\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-2015-679.\n#\n# The text description of this plugin is (C) SUSE LLC.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(86596);\n script_version(\"2.8\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2020/06/04\");\n\n script_cve_id(\"CVE-2015-6755\", \"CVE-2015-6756\", \"CVE-2015-6757\", \"CVE-2015-6758\", \"CVE-2015-6759\", \"CVE-2015-6760\", \"CVE-2015-6761\", \"CVE-2015-6762\", \"CVE-2015-6763\", \"CVE-2015-6764\", \"CVE-2015-7834\");\n\n script_name(english:\"openSUSE Security Update : Chromium (openSUSE-2015-679)\");\n script_summary(english:\"Check for the openSUSE-2015-679 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\"Chromium was update do the stable release 46.0.2490.71 to fix security\nissues.\n\nThe following vulnerabilities were fixed :\n\n - CVE-2015-6755: Cross-origin bypass in Blink\n\n - CVE-2015-6756: Use-after-free in PDFium\n\n - CVE-2015-6757: Use-after-free in ServiceWorker\n\n - CVE-2015-6758: Bad-cast in PDFium\n\n - CVE-2015-6759: Information leakage in LocalStorage\n\n - CVE-2015-6760: Improper error handling in libANGLE\n\n - CVE-2015-6761: Memory corruption in FFMpeg\n\n - CVE-2015-6762: CORS bypass via CSS fonts\n\n - CVE-2015-6763: Various fixes from internal audits,\n fuzzing and other initiatives.\n\n - CVE-2015-7834: Multiple vulnerabilities in V8 fixed at\n the tip of the 4.6 branch\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://bugzilla.opensuse.org/show_bug.cgi?id=950290\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\"Update the affected Chromium packages.\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:chromedriver\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:chromedriver-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:chromium\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:chromium-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:chromium-debugsource\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:chromium-desktop-gnome\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:chromium-desktop-kde\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:chromium-ffmpegsumo\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:novell:opensuse:chromium-ffmpegsumo-debuginfo\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:novell:opensuse:13.1\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:novell:opensuse:13.2\");\n\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2015/10/17\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2015/10/26\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2015-2020 Tenable Network Security, Inc.\");\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 !~ \"^(SUSE13\\.1|SUSE13\\.2)$\") audit(AUDIT_OS_RELEASE_NOT, \"openSUSE\", \"13.1 / 13.2\", 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:\"SUSE13.1\", reference:\"chromedriver-46.0.2490.71-109.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.1\", reference:\"chromedriver-debuginfo-46.0.2490.71-109.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.1\", reference:\"chromium-46.0.2490.71-109.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.1\", reference:\"chromium-debuginfo-46.0.2490.71-109.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.1\", reference:\"chromium-debugsource-46.0.2490.71-109.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.1\", reference:\"chromium-desktop-gnome-46.0.2490.71-109.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.1\", reference:\"chromium-desktop-kde-46.0.2490.71-109.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.1\", reference:\"chromium-ffmpegsumo-46.0.2490.71-109.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.1\", reference:\"chromium-ffmpegsumo-debuginfo-46.0.2490.71-109.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.2\", reference:\"chromedriver-46.0.2490.71-54.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.2\", reference:\"chromedriver-debuginfo-46.0.2490.71-54.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.2\", reference:\"chromium-46.0.2490.71-54.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.2\", reference:\"chromium-debuginfo-46.0.2490.71-54.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.2\", reference:\"chromium-debugsource-46.0.2490.71-54.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.2\", reference:\"chromium-desktop-gnome-46.0.2490.71-54.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.2\", reference:\"chromium-desktop-kde-46.0.2490.71-54.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.2\", reference:\"chromium-ffmpegsumo-46.0.2490.71-54.1\") ) flag++;\nif ( rpm_check(release:\"SUSE13.2\", reference:\"chromium-ffmpegsumo-debuginfo-46.0.2490.71-54.1\") ) flag++;\n\nif (flag)\n{\n if (report_verbosity > 0) security_hole(port:0, extra:rpm_report_get());\n else security_hole(0);\n exit(0);\n}\nelse\n{\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"chromedriver / chromedriver-debuginfo / chromium / etc\");\n}\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2021-01-12T09:49:16", "description": "Several vulnerabilities have been discovered in the chromium web\nbrowser.\n\n - CVE-2015-1303\n Mariusz Mlynski discovered a way to bypass the Same\n Origin Policy in the DOM implementation.\n\n - CVE-2015-1304\n Mariusz Mlynski discovered a way to bypass the Same\n Origin Policy in the v8 JavaScript library.\n\n - CVE-2015-6755\n Mariusz Mlynski discovered a way to bypass the Same\n Origin Policy in blink/webkit.\n\n - CVE-2015-6756\n A use-after-free issue was found in the pdfium library.\n\n - CVE-2015-6757\n Collin Payne found a use-after-free issue in the\n ServiceWorker implementation.\n\n - CVE-2015-6758\n Atte Kettunen found an issue in the pdfium library.\n\n - CVE-2015-6759\n Muneaki Nishimura discovered an information leak.\n\n - CVE-2015-6760\n Ronald Crane discovered a logic error in the ANGLE\n library involving lost device events.\n\n - CVE-2015-6761\n Aki Helin and Khalil Zhani discovered a memory\n corruption issue in the ffmpeg library.\n\n - CVE-2015-6762\n Muneaki Nishimura discovered a way to bypass the Same\n Origin Policy in the CSS implementation.\n\n - CVE-2015-6763\n The chrome 46 development team found and fixed various\n issues during internal auditing. Also multiple issues\n were fixed in the v8 JavaScript library, version\n 4.6.85.23.", "edition": 21, "published": "2015-10-21T00:00:00", "title": "Debian DSA-3376-1 : chromium-browser - security update", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-6758", "CVE-2015-1303", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-1304", "CVE-2015-6757", "CVE-2015-6761"], "modified": "2015-10-21T00:00:00", "cpe": ["cpe:/o:debian:debian_linux:8.0", "p-cpe:/a:debian:debian_linux:chromium-browser"], "id": "DEBIAN_DSA-3376.NASL", "href": "https://www.tenable.com/plugins/nessus/86486", "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 DSA-3376. 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(86486);\n script_version(\"1.7\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/11\");\n\n script_cve_id(\"CVE-2015-1303\", \"CVE-2015-1304\", \"CVE-2015-6755\", \"CVE-2015-6756\", \"CVE-2015-6757\", \"CVE-2015-6758\", \"CVE-2015-6759\", \"CVE-2015-6760\", \"CVE-2015-6761\", \"CVE-2015-6762\", \"CVE-2015-6763\");\n script_xref(name:\"DSA\", value:\"3376\");\n\n script_name(english:\"Debian DSA-3376-1 : chromium-browser - 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 have been discovered in the chromium web\nbrowser.\n\n - CVE-2015-1303\n Mariusz Mlynski discovered a way to bypass the Same\n Origin Policy in the DOM implementation.\n\n - CVE-2015-1304\n Mariusz Mlynski discovered a way to bypass the Same\n Origin Policy in the v8 JavaScript library.\n\n - CVE-2015-6755\n Mariusz Mlynski discovered a way to bypass the Same\n Origin Policy in blink/webkit.\n\n - CVE-2015-6756\n A use-after-free issue was found in the pdfium library.\n\n - CVE-2015-6757\n Collin Payne found a use-after-free issue in the\n ServiceWorker implementation.\n\n - CVE-2015-6758\n Atte Kettunen found an issue in the pdfium library.\n\n - CVE-2015-6759\n Muneaki Nishimura discovered an information leak.\n\n - CVE-2015-6760\n Ronald Crane discovered a logic error in the ANGLE\n library involving lost device events.\n\n - CVE-2015-6761\n Aki Helin and Khalil Zhani discovered a memory\n corruption issue in the ffmpeg library.\n\n - CVE-2015-6762\n Muneaki Nishimura discovered a way to bypass the Same\n Origin Policy in the CSS implementation.\n\n - CVE-2015-6763\n The chrome 46 development team found and fixed various\n issues during internal auditing. Also multiple issues\n were fixed in the v8 JavaScript library, version\n 4.6.85.23.\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://security-tracker.debian.org/tracker/CVE-2015-1303\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://security-tracker.debian.org/tracker/CVE-2015-1304\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://security-tracker.debian.org/tracker/CVE-2015-6755\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://security-tracker.debian.org/tracker/CVE-2015-6756\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://security-tracker.debian.org/tracker/CVE-2015-6757\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://security-tracker.debian.org/tracker/CVE-2015-6758\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://security-tracker.debian.org/tracker/CVE-2015-6759\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://security-tracker.debian.org/tracker/CVE-2015-6760\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://security-tracker.debian.org/tracker/CVE-2015-6761\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://security-tracker.debian.org/tracker/CVE-2015-6762\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://security-tracker.debian.org/tracker/CVE-2015-6763\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://packages.debian.org/source/jessie/chromium-browser\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://www.debian.org/security/2015/dsa-3376\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\n\"Upgrade the chromium-browser packages.\n\nFor the stable distribution (jessie), these problems have been fixed\nin version 46.0.2490.71-1~deb8u1.\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:debian:debian_linux:chromium-browser\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:debian:debian_linux:8.0\");\n\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2015/10/20\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2015/10/21\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2015-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:\"chromedriver\", reference:\"46.0.2490.71-1~deb8u1\")) flag++;\nif (deb_check(release:\"8.0\", prefix:\"chromium\", reference:\"46.0.2490.71-1~deb8u1\")) flag++;\nif (deb_check(release:\"8.0\", prefix:\"chromium-dbg\", reference:\"46.0.2490.71-1~deb8u1\")) flag++;\nif (deb_check(release:\"8.0\", prefix:\"chromium-inspector\", reference:\"46.0.2490.71-1~deb8u1\")) flag++;\nif (deb_check(release:\"8.0\", prefix:\"chromium-l10n\", reference:\"46.0.2490.71-1~deb8u1\")) flag++;\n\nif (flag)\n{\n if (report_verbosity > 0) security_hole(port:0, extra:deb_report_get());\n else security_hole(0);\n exit(0);\n}\nelse audit(AUDIT_HOST_NOT, \"affected\");\n", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2021-01-12T11:04:58", "description": "The remote host is affected by the vulnerability described in GLSA-201603-09\n(Chromium: Multiple vulnerabilities)\n\n Multiple vulnerabilities have been discovered in the Chromium web\n browser. Please review the CVE identifiers referenced below for details.\n \nImpact :\n\n A remote attacker could possibly execute arbitrary code with the\n privileges of the process, cause a Denial of Service condition, obtain\n sensitive information, or bypass security restrictions.\n \nWorkaround :\n\n There is no known workaround at this time.", "edition": 24, "cvss3": {"score": 9.8, "vector": "AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"}, "published": "2016-03-14T00:00:00", "title": "GLSA-201603-09 : Chromium: Multiple vulnerabilities", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2015-6776", "CVE-2016-1628", "CVE-2016-1634", "CVE-2015-6775", "CVE-2016-1638", "CVE-2015-6789", "CVE-2015-6766", "CVE-2015-6762", "CVE-2015-8126", "CVE-2015-1288", "CVE-2015-1281", "CVE-2015-6764", "CVE-2016-1612", "CVE-2015-6770", "CVE-2015-6760", "CVE-2015-6781", "CVE-2015-1291", "CVE-2016-1615", "CVE-2015-1275", "CVE-2016-1626", "CVE-2016-1618", "CVE-2015-1297", "CVE-2015-1286", "CVE-2016-1613", "CVE-2015-1298", "CVE-2015-1295", "CVE-2015-6771", "CVE-2015-1289", "CVE-2015-1296", "CVE-2015-1270", "CVE-2015-6784", "CVE-2015-1272", "CVE-2015-1283", "CVE-2015-1279", "CVE-2015-1274", "CVE-2015-1300", "CVE-2015-1287", "CVE-2016-1621", "CVE-2016-1631", "CVE-2015-6774", "CVE-2015-6778", "CVE-2016-1640", "CVE-2016-1632", "CVE-2015-1282", "CVE-2016-1622", "CVE-2015-6772", "CVE-2015-1285", "CVE-2016-1639", "CVE-2016-1616", "CVE-2015-1302", "CVE-2015-1293", "CVE-2015-6758", "CVE-2015-1303", "CVE-2015-1294", "CVE-2016-1635", "CVE-2015-1276", "CVE-2015-1278", "CVE-2016-1620", "CVE-2015-6767", "CVE-2015-6783", "CVE-2016-1636", "CVE-2015-6787", "CVE-2015-6792", "CVE-2015-1277", "CVE-2016-1627", "CVE-2015-6786", "CVE-2016-1641", "CVE-2016-1633", "CVE-2016-1624", "CVE-2016-1617", "CVE-2015-6791", "CVE-2016-1629", "CVE-2015-6780", "CVE-2015-6785", "CVE-2015-6790", "CVE-2016-1619", "CVE-2015-1271", "CVE-2015-1292", "CVE-2015-6779", "CVE-2015-6788", "CVE-2015-6759", "CVE-2015-1273", "CVE-2015-6756", "CVE-2015-6768", "CVE-2015-6763", "CVE-2016-1630", "CVE-2016-1637", "CVE-2015-6765", "CVE-2015-6755", "CVE-2015-6769", "CVE-2015-6773", "CVE-2015-1304", "CVE-2015-6777", "CVE-2015-1280", "CVE-2015-1299", "CVE-2015-6757", "CVE-2016-1623", "CVE-2015-6782", "CVE-2016-1625", "CVE-2015-1284", "CVE-2016-1614", "CVE-2015-6761"], "modified": "2016-03-14T00:00:00", "cpe": ["cpe:/o:gentoo:linux", "p-cpe:/a:gentoo:linux:chromium"], "id": "GENTOO_GLSA-201603-09.NASL", "href": "https://www.tenable.com/plugins/nessus/89902", "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 Gentoo Linux Security Advisory GLSA 201603-09.\n#\n# The advisory text is Copyright (C) 2001-2016 Gentoo Foundation, Inc.\n# and licensed under the Creative Commons - Attribution / Share Alike \n# license. See http://creativecommons.org/licenses/by-sa/3.0/\n#\n\ninclude('deprecated_nasl_level.inc');\ninclude('compat.inc');\n\nif (description)\n{\n script_id(89902);\n script_version(\"2.6\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/11\");\n\n script_cve_id(\"CVE-2015-1270\", \"CVE-2015-1271\", \"CVE-2015-1272\", \"CVE-2015-1273\", \"CVE-2015-1274\", \"CVE-2015-1275\", \"CVE-2015-1276\", \"CVE-2015-1277\", \"CVE-2015-1278\", \"CVE-2015-1279\", \"CVE-2015-1280\", \"CVE-2015-1281\", \"CVE-2015-1282\", \"CVE-2015-1283\", \"CVE-2015-1284\", \"CVE-2015-1285\", \"CVE-2015-1286\", \"CVE-2015-1287\", \"CVE-2015-1288\", \"CVE-2015-1289\", \"CVE-2015-1291\", \"CVE-2015-1292\", \"CVE-2015-1293\", \"CVE-2015-1294\", \"CVE-2015-1295\", \"CVE-2015-1296\", \"CVE-2015-1297\", \"CVE-2015-1298\", \"CVE-2015-1299\", \"CVE-2015-1300\", \"CVE-2015-1302\", \"CVE-2015-1303\", \"CVE-2015-1304\", \"CVE-2015-6755\", \"CVE-2015-6756\", \"CVE-2015-6757\", \"CVE-2015-6758\", \"CVE-2015-6759\", \"CVE-2015-6760\", \"CVE-2015-6761\", \"CVE-2015-6762\", \"CVE-2015-6763\", \"CVE-2015-6764\", \"CVE-2015-6765\", \"CVE-2015-6766\", \"CVE-2015-6767\", \"CVE-2015-6768\", \"CVE-2015-6769\", \"CVE-2015-6770\", \"CVE-2015-6771\", \"CVE-2015-6772\", \"CVE-2015-6773\", \"CVE-2015-6774\", \"CVE-2015-6775\", \"CVE-2015-6776\", \"CVE-2015-6777\", \"CVE-2015-6778\", \"CVE-2015-6779\", \"CVE-2015-6780\", \"CVE-2015-6781\", \"CVE-2015-6782\", \"CVE-2015-6783\", \"CVE-2015-6784\", \"CVE-2015-6785\", \"CVE-2015-6786\", \"CVE-2015-6787\", \"CVE-2015-6788\", \"CVE-2015-6789\", \"CVE-2015-6790\", \"CVE-2015-6791\", \"CVE-2015-6792\", \"CVE-2015-8126\", \"CVE-2016-1612\", \"CVE-2016-1613\", \"CVE-2016-1614\", \"CVE-2016-1615\", \"CVE-2016-1616\", \"CVE-2016-1617\", \"CVE-2016-1618\", \"CVE-2016-1619\", \"CVE-2016-1620\", \"CVE-2016-1621\", \"CVE-2016-1622\", \"CVE-2016-1623\", \"CVE-2016-1624\", \"CVE-2016-1625\", \"CVE-2016-1626\", \"CVE-2016-1627\", \"CVE-2016-1628\", \"CVE-2016-1629\", \"CVE-2016-1630\", \"CVE-2016-1631\", \"CVE-2016-1632\", \"CVE-2016-1633\", \"CVE-2016-1634\", \"CVE-2016-1635\", \"CVE-2016-1636\", \"CVE-2016-1637\", \"CVE-2016-1638\", \"CVE-2016-1639\", \"CVE-2016-1640\", \"CVE-2016-1641\");\n script_xref(name:\"GLSA\", value:\"201603-09\");\n\n script_name(english:\"GLSA-201603-09 : Chromium: Multiple vulnerabilities\");\n script_summary(english:\"Checks for updated package(s) in /var/db/pkg\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\n\"The remote Gentoo host is missing one or more security-related\npatches.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"The remote host is affected by the vulnerability described in GLSA-201603-09\n(Chromium: Multiple vulnerabilities)\n\n Multiple vulnerabilities have been discovered in the Chromium web\n browser. Please review the CVE identifiers referenced below for details.\n \nImpact :\n\n A remote attacker could possibly execute arbitrary code with the\n privileges of the process, cause a Denial of Service condition, obtain\n sensitive information, or bypass security restrictions.\n \nWorkaround :\n\n There is no known workaround at this time.\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://security.gentoo.org/glsa/201603-09\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\n\"All Chromium users should upgrade to the latest version:\n # emerge --sync\n # emerge --ask --oneshot --verbose\n '>=www-client/chromium-49.0.2623.87'\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:L/Au:N/C:C/I:C/A:C\");\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:gentoo:linux:chromium\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:gentoo:linux\");\n\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2016/03/12\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2016/03/14\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2016-2021 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"Gentoo Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/Gentoo/release\", \"Host/Gentoo/qpkg-list\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"qpkg.inc\");\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nif (!get_kb_item(\"Host/Gentoo/release\")) audit(AUDIT_OS_NOT, \"Gentoo\");\nif (!get_kb_item(\"Host/Gentoo/qpkg-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\n\nflag = 0;\n\nif (qpkg_check(package:\"www-client/chromium\", unaffected:make_list(\"ge 49.0.2623.87\"), vulnerable:make_list(\"lt 49.0.2623.87\"))) flag++;\n\nif (flag)\n{\n if (report_verbosity > 0) security_hole(port:0, extra:qpkg_report_get());\n else security_hole(0);\n exit(0);\n}\nelse\n{\n tested = qpkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"Chromium\");\n}\n", "cvss": {"score": 10.0, "vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C"}}], "threatpost": [{"lastseen": "2018-10-06T22:56:10", "bulletinFamily": "info", "cvelist": ["CVE-2015-6755", "CVE-2015-6756", "CVE-2015-6757", "CVE-2015-6758", "CVE-2015-6759", "CVE-2015-6760", "CVE-2015-6761", "CVE-2015-6762"], "description": "Google has made some changes to the way it presents browser warnings in Chrome.\n\nStarting with Chrome 46, don\u2019t expect to see the yellow warning icon on HTTPS pages with minor errors. Google announced on Tuesday that it would start marking those pages with the neutral icon it uses on unencrypted HTTPS pages; the change, it said, will affect HTTPS pages with mixed content.\n\n\u201cSite operators face a dilemma: Switching an HTTP site to HTTPS can initially result in mixed content, which is undesirable in the long term but important for debugging the migration. During this process the site may not be fully secured, but it will usually not be less secure than before,\u201d Lucas Garron and Chris Palmer of the Chrome security team wrote in a [blog post](<https://googleonlinesecurity.blogspot.com/2015/10/simplifying-page-security-icon-in-chrome.html>) yesterday. \u201cRemoving the yellow \u201ccaution triangle\u201d badge means that most users will not perceive a warning on mixed content pages during such a migration. We hope that this will encourage site operators to switch to HTTPS sooner rather than later.\u201d\n\nSecure HTTPS pages will continue to get the green closed padlock icon, while HTTP and HTTPS with errors pages will show a gray neutral icon. Broken HTTPS will remain with the red strikethrough icon.\n\n\u201cWe have to strike a balance: representing the security state of a webpage as accurately as possible, while making sure users are not overwhelmed with too many possible states and details,\u201d Garron and Palmer wrote. \u201cWe\u2019ve come to understand that our yellow \u201ccaution triangle\u201d badge can be confusing when compared to the HTTP page icon, and we believe that it is better not to emphasize the difference in security between these two states to most users.\u201d\n\nChrome 46 also includes [24 security fixes](<http://googlechromereleases.blogspot.com/2015/10/stable-channel-update.html>) that were also announced yesterday, including eight from external sources that earned bounties ranging from $8837 to $500.\n\nThe bugs that earned bounties are:\n\n[$8837][519558] High CVE-2015-6755: Cross-origin bypass in Blink. Credit to Mariusz Mlynski.\n\n[$6337][507316] High CVE-2015-6756: Use-after-free in PDFium. Credit to anonymous.\n\n[$3500][529520] High CVE-2015-6757: Use-after-free in ServiceWorker. Credit to Collin Payne.\n\n[$3000][522131] High CVE-2015-6758: Bad-cast in PDFium. Credit to Atte Kettunen of OUSPG.\n\n[$1000][514076] Medium CVE-2015-6759: Information leakage in LocalStorage. Credit to Muneaki Nishimura (nishimunea).\n\n[$1000][519642] Medium CVE-2015-6760: Improper error handling in libANGLE. Credit to lastland.net.\n\n[$500][447860 & 532967] Medium CVE-2015-6761: Memory corruption in FFMpeg. Credit to Aki Helin of OUSPG and anonymous.\n\n[$500][512678] Low CVE-2015-6762: CORS bypass via CSS fonts. Credit to Muneaki Nishimura (nishimunea).\n", "modified": "2015-10-14T18:28:19", "published": "2015-10-14T14:28:19", "id": "THREATPOST:C51401709B419BF04B7D260B9F842C61", "href": "https://threatpost.com/google-patches-chrome-changes-mixed-content-warnings/115029/", "type": "threatpost", "title": "Chrome 46 Patches, Mixed Content Warning Changes", "cvss": {"score": 7.5, "vector": "AV:NETWORK/AC:LOW/Au:NONE/C:PARTIAL/I:PARTIAL/A:PARTIAL/"}}], "redhat": [{"lastseen": "2019-08-13T18:45:33", "bulletinFamily": "unix", "cvelist": ["CVE-2015-6755", "CVE-2015-6756", "CVE-2015-6757", "CVE-2015-6758", "CVE-2015-6759", "CVE-2015-6760", "CVE-2015-6761", "CVE-2015-6762", "CVE-2015-6763"], "description": "Chromium is an open-source web browser, powered by WebKit (Blink).\n\nSeveral flaws were found in the processing of malformed web content. A web\npage containing malicious content could cause Chromium to crash, execute\narbitrary code, or disclose sensitive information when visited by the\nvictim. (CVE-2015-6755, CVE-2015-6756, CVE-2015-6757, CVE-2015-6758,\nCVE-2015-6759, CVE-2015-6760, CVE-2015-6761, CVE-2015-6762, CVE-2015-6763)\n\nAll Chromium users should upgrade to these updated packages, which contain\nChromium version 46.0.2490.71, which corrects these issues. After\ninstalling the update, Chromium must be restarted for the changes to take \neffect.\n", "modified": "2018-06-07T09:04:21", "published": "2015-10-15T04:00:00", "id": "RHSA-2015:1912", "href": "https://access.redhat.com/errata/RHSA-2015:1912", "type": "redhat", "title": "(RHSA-2015:1912) Important: chromium-browser security update", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}], "archlinux": [{"lastseen": "2016-09-02T18:44:43", "bulletinFamily": "unix", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-6758", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "description": "- CVE-2015-6755 (cross-origin bypass):\n\nCross-origin bypass in Blink. Credit to Mariusz Mlynski.\n\n- CVE-2015-6756 (use-after-free):\n\nUse-after-free in PDFium.\n\n- CVE-2015-6757 (use-after-free):\n\nUse-after-free in ServiceWorker. Credit to Collin Payne.\n\n- CVE-2015-6758:\n\nBad-cast in PDFium. Credit to Atte Kettunen of OUSPG.\n\n- CVE-2015-6759 (information leakage):\n\nInformation leakage in LocalStorage. Credit to Muneaki Nishimura\n(nishimunea).\n\n- CVE-2015-6760 (improper error handling):\n\nImproper error handling in libANGLE. Credit to lastland.net.\n\n- CVE-2015-6761 (memory corruption):\n\nMemory corruption in FFMpeg. Credit to Aki Helin of OUSPG and anonymous.\n\n- CVE-2015-6762 (cross-origin resource sharing bypass):\n\nCORS bypass via CSS fonts. Credit to Muneaki Nishimura (nishimunea).\n\n- CVE-2015-6763:\n\nVarious fixes from internal audits, fuzzing and other initiatives.", "modified": "2015-10-14T00:00:00", "published": "2015-10-14T00:00:00", "id": "ASA-201510-8", "href": "https://lists.archlinux.org/pipermail/arch-security/2015-October/000410.html", "type": "archlinux", "title": "chromium: multiple issues", "cvss": {"score": 7.5, "vector": "AV:NETWORK/AC:LOW/Au:NONE/C:PARTIAL/I:PARTIAL/A:PARTIAL/"}}], "freebsd": [{"lastseen": "2019-05-29T18:33:02", "bulletinFamily": "unix", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-6758", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "description": "\nGoogle Chrome Releases reports:\n\n24 security fixes in this release, including:\n\n[519558] High CVE-2015-6755: Cross-origin bypass in Blink.\n\t Credit to Mariusz Mlynski.\n[507316] High CVE-2015-6756: Use-after-free in PDFium. Credit\n\t to anonymous.\n[529520] High CVE-2015-6757: Use-after-free in ServiceWorker.\n\t Credit to Collin Payne.\n[522131] High CVE-2015-6758: Bad-cast in PDFium. Credit to Atte\n\t Kettunen of OUSPG.\n[514076] Medium CVE-2015-6759: Information leakage in\n\t LocalStorage. Credit to Muneaki Nishimura (nishimunea).\n[519642] Medium CVE-2015-6760: Improper error handling in\n\t libANGLE. Credit to lastland.net.\n[447860,532967] Medium CVE-2015-6761: Memory corruption in\n\t FFMpeg. Credit to Aki Helin of OUSPG and anonymous.\n[512678] Low CVE-2015-6762: CORS bypass via CSS fonts. Credit\n\t to Muneaki Nishimura (nishimunea).\n [542517] CVE-2015-6763: Various fixes from internal audits,\n\t fuzzing and other initiatives.\nMultiple vulnerabilities in V8 fixed at the tip of the 4.6\n\t branch (currently 4.6.85.23).\n\n\n", "edition": 4, "modified": "2015-10-13T00:00:00", "published": "2015-10-13T00:00:00", "id": "8301C04D-71DF-11E5-9FCB-00262D5ED8EE", "href": "https://vuxml.freebsd.org/freebsd/8301c04d-71df-11e5-9fcb-00262d5ed8ee.html", "title": "chromium -- multiple vulnerabilities", "type": "freebsd", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}], "kaspersky": [{"lastseen": "2020-09-02T11:49:29", "bulletinFamily": "info", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-7834", "CVE-2015-6758", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-6757", "CVE-2015-6761"], "description": "### *Detect date*:\n10/13/2015\n\n### *Severity*:\nCritical\n\n### *Description*:\nMultiple serious vulnerabilities have been found in Google Chrome. Malicious users can exploit these vulnerabilities to bypass security restrictions cause denial of service or obtain sensitive information.\n\n### *Affected products*:\nGoogle Chrome versions earlier than 46.0.2490.71 (all branches)\n\n### *Solution*:\nUpdate to the latest version. File with name old_chrome can be still detected after update. It caused by Google Chrome update policy which does not remove old versions when installing updates. Try to contact vendor for further delete instructions or ignore such kind of alerts at your own risk. \n[Get Chrome](<https://www.google.com/chrome/>)\n\n### *Original advisories*:\n[Google Chrome blog entry](<http://feedproxy.google.com/~r/GoogleChromeReleases/~3/NJ-cORsAqzQ/stable-channel-update.html>) \n\n\n### *Impacts*:\nOSI \n\n### *Related products*:\n[Google Chrome](<https://threats.kaspersky.com/en/product/Google-Chrome/>)\n\n### *CVE-IDS*:\n[CVE-2015-6763](<https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-6763>)7.5Critical \n[CVE-2015-7834](<https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-7834>)7.5Critical \n[CVE-2015-6757](<https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-6757>)7.5Critical \n[CVE-2015-6758](<https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-6758>)6.8High \n[CVE-2015-6755](<https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-6755>)7.5Critical \n[CVE-2015-6756](<https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-6756>)6.8High \n[CVE-2015-6761](<https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-6761>)6.8High \n[CVE-2015-6762](<https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-6762>)7.5Critical \n[CVE-2015-6759](<https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-6759>)5.0Critical \n[CVE-2015-6760](<https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-6760>)7.5Critical\n\n### *Exploitation*:\nThe following public exploits exists for this vulnerability:", "edition": 41, "modified": "2020-06-18T00:00:00", "published": "2015-10-13T00:00:00", "id": "KLA10678", "href": "https://threats.kaspersky.com/en/vulnerability/KLA10678", "title": "\r KLA10678Multiple vulnerabilities in Google Chrome ", "type": "kaspersky", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}], "securityvulns": [{"lastseen": "2018-08-31T11:10:02", "bulletinFamily": "software", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-6758", "CVE-2015-1303", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-1304", "CVE-2015-6757", "CVE-2015-6761"], "description": "Restrictions bypass, memory corruptions, information disclosure.", "edition": 1, "modified": "2015-10-25T00:00:00", "published": "2015-10-25T00:00:00", "id": "SECURITYVULNS:VULN:14737", "href": "https://vulners.com/securityvulns/SECURITYVULNS:VULN:14737", "title": "Google Chrome / Chromium / Oxide multiple security vulnerabilities", "type": "securityvulns", "cvss": {"score": 7.5, "vector": "AV:NETWORK/AC:LOW/Au:NONE/C:PARTIAL/I:PARTIAL/A:PARTIAL/"}}, {"lastseen": "2018-08-31T11:11:02", "bulletinFamily": "software", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-6758", "CVE-2015-1303", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-1304", "CVE-2015-6757", "CVE-2015-6761"], "description": "\r\n\r\n-----BEGIN PGP SIGNED MESSAGE-----\r\nHash: SHA512\r\n\r\n- -------------------------------------------------------------------------\r\nDebian Security Advisory DSA-3376-1 security@debian.org\r\nhttps://www.debian.org/security/ Michael Gilbert\r\nOctober 20, 2015 https://www.debian.org/security/faq\r\n- -------------------------------------------------------------------------\r\n\r\nPackage : chromium-browser\r\nCVE ID : CVE-2015-1303 CVE-2015-1304 CVE-2015-6755 CVE-2015-6756\r\n CVE-2015-6757 CVE-2015-6758 CVE-2015-6759 CVE-2015-6760\r\n CVE-2015-6761 CVE-2015-6762 CVE-2015-6763\r\n\r\nSeveral vulnerabilities have been discovered in the chromium web browser.\r\n\r\nCVE-2015-1303\r\n\r\n Mariusz Mlynski discovered a way to bypass the Same Origin Policy\r\n in the DOM implementation.\r\n\r\nCVE-2015-1304\r\n\r\n Mariusz Mlynski discovered a way to bypass the Same Origin Policy\r\n in the v8 javascript library.\r\n\r\nCVE-2015-6755\r\n\r\n Mariusz Mlynski discovered a way to bypass the Same Origin Policy\r\n in blink/webkit.\r\n\r\nCVE-2015-6756\r\n\r\n A use-after-free issue was found in the pdfium library.\r\n\r\nCVE-2015-6757\r\n\r\n Collin Payne found a use-after-free issue in the ServiceWorker\r\n implementation.\r\n\r\nCVE-2015-6758\r\n\r\n Atte Kettunen found an issue in the pdfium library.\r\n\r\nCVE-2015-6759\r\n\r\n Muneaki Nishimura discovered an information leak.\r\n\r\nCVE-2015-6760\r\n\r\n Ronald Crane discovered a logic error in the ANGLE library\r\n involving lost device events.\r\n\r\nCVE-2015-6761\r\n\r\n Aki Helin and Khalil Zhani discovered a memory corruption issue in\r\n the ffmpeg library.\r\n\r\nCVE-2015-6762\r\n\r\n Muneaki Nishimura discovered a way to bypass the Same Origin Policy\r\n in the CSS implementation.\r\n\r\nCVE-2015-6763\r\n\r\n The chrome 46 development team found and fixed various issues\r\n during internal auditing. Also multiple issues were fixed in\r\n the v8 javascript library, version 4.6.85.23.\r\n\r\nFor the stable distribution (jessie), these problems have been fixed in\r\nversion 46.0.2490.71-1~deb8u1.\r\n\r\nFor the testing (stretch) and unstable (sid) distributions, these\r\nproblems have been fixed in version 46.0.2490.71-1.\r\n\r\nWe recommend that you upgrade your chromium-browser packages.\r\n\r\nFurther information about Debian Security Advisories, how to apply\r\nthese updates to your system and frequently asked questions can be\r\nfound at: https://www.debian.org/security/\r\n\r\nMailing list: debian-security-announce@lists.debian.org\r\n-----BEGIN PGP SIGNATURE-----\r\nVersion: GnuPG v1\r\n\r\niQQcBAEBCgAGBQJWJwEHAAoJELjWss0C1vRzawcf/2VLLVk0XIIvX6TajYjXf+O+\r\nMFWcbB/EVhdMcF3JTekflcv/LRbYq2TnqWPb0W/AM7hOCWbk4mgD6stbe7l/j2QW\r\n0o3FZkL7pCJL72kvXPxGdvHFs+Qhemrd8AAS9nIqWnqGGcTSC2IdFOLEXec77an7\r\npvQCjT6g/gBb2ywbip7Pv9G3n6oMGTwcBAklm+7So6OjZZpcFrfEqkv8a9zgqH6B\r\niSaoMws7iYaBisKn/5ot91lLbDIuRkSX8RfbG7b6s2v9WiN8bzPZUUJYpsBxf7m/\r\nBY7bZYqpMhjDOEMQJ8NedgHnLabjpBXJi7gn444eHS9VGDgEBtduCJhUQ7oqq/Bl\r\nPEZdBardMDwmV/DSDKGH0WHsAzmDInk5Bd9/yqNspIl0azYaEownEg5mQeU06G3Z\r\noIXX6l+hYzMRrLPEachAdHUyz7PhYU9X5uPUDtpkaGuJsylh2vyW5pGTumhdf/nt\r\nae6VRy5p57HD7atQc+lesNUbO5225QFwaBRf3t/e/nHyYWZHZS9hFWyPha1EGpEy\r\nwuYYnjhSTh/kThEjDkROz3ayNod6NRJ8BkUfsgoj+Ui1cUASFdJtih/S2k70YM1e\r\nmvq5P3kHEUrYVvHpM+m9ZyzbwcluQKS4he3WGlSTEAyS8BIoohZb6QQO+lTOYo2/\r\nqjqBYRhe2GMlW8AYynjQsSdQcHpBxX+qH4kS5+C5swH7c7NogZo7KWdPENW8LQgP\r\nirXB/u+RMbje5X3Qec/pG85vX196r+UUUQNV2ZFIlXbqgKGHWEeJ3+cNulJE2xet\r\nXI5pthBmzxEG0Xpw2OOkjkpRg0W7C0QBlNRbCqsk6KhobhxapoqNmkb2BTxbAs8r\r\nwqrL8R+c0JM0dYH+PuZeZmOyL3XJxHU9cCJUn2f0oCrBKLLSG9gj0v1a5ntqSEjH\r\nA00PXcXq8IXXnIu+xXe6fU3RxcVY0YykKkZKkh003gRItOC45PBP3/gu3KRStNpB\r\nzz4iL2jq4uwEPPgWAGS9BQrDgWaRxDnJPuF0C+uwfdTPLclHSKLewWbgH2zPa5ff\r\nXV60fxw6PM3VyGO1lCfEOVoHHt1jtN9JlM14SuNLaC+y/jFqcVVJJOdqGKAjAqNk\r\nO7fep+G46EPkpy9zTeM+CuekDdU8lClq8caLEC03zQK0C+0QA50zCRxJ6yBzpr8+\r\nDstSjRoqCJLPbFTpHtMK9MEcEXXOyw+9d7/wF9sexNMhq0ONGs0KNFPb+H4dSG+A\r\nLeYtlrgELMQYhWq2y4CB/5EKlljDY99axy/HyICfaRejcTPs6a6x7+vyrcoCcAAm\r\nCo9vSkn7QQJKB942+uOPmcd9bjDhboLrBARbN8q4Rk0tYMYUqa2mwnyYAnSq1xE=\r\n=OCPh\r\n-----END PGP SIGNATURE-----\r\n\r\n", "edition": 1, "modified": "2015-10-25T00:00:00", "published": "2015-10-25T00:00:00", "id": "SECURITYVULNS:DOC:32571", "href": "https://vulners.com/securityvulns/SECURITYVULNS:DOC:32571", "title": "[SECURITY] [DSA 3376-1] chromium-browser security update", "type": "securityvulns", "cvss": {"score": 7.5, "vector": "AV:NETWORK/AC:LOW/Au:NONE/C:PARTIAL/I:PARTIAL/A:PARTIAL/"}}], "debian": [{"lastseen": "2020-08-12T00:57:25", "bulletinFamily": "unix", "cvelist": ["CVE-2015-6762", "CVE-2015-6760", "CVE-2015-6758", "CVE-2015-1303", "CVE-2015-6759", "CVE-2015-6756", "CVE-2015-6763", "CVE-2015-6755", "CVE-2015-1304", "CVE-2015-6757", "CVE-2015-6761"], "description": "- -------------------------------------------------------------------------\nDebian Security Advisory DSA-3376-1 security@debian.org\nhttps://www.debian.org/security/ Michael Gilbert\nOctober 20, 2015 https://www.debian.org/security/faq\n- -------------------------------------------------------------------------\n\nPackage : chromium-browser\nCVE ID : CVE-2015-1303 CVE-2015-1304 CVE-2015-6755 CVE-2015-6756\n CVE-2015-6757 CVE-2015-6758 CVE-2015-6759 CVE-2015-6760\n CVE-2015-6761 CVE-2015-6762 CVE-2015-6763\n\nSeveral vulnerabilities have been discovered in the chromium web browser.\n\nCVE-2015-1303\n\n Mariusz Mlynski discovered a way to bypass the Same Origin Policy\n in the DOM implementation.\n\nCVE-2015-1304\n\n Mariusz Mlynski discovered a way to bypass the Same Origin Policy\n in the v8 javascript library.\n\nCVE-2015-6755\n\n Mariusz Mlynski discovered a way to bypass the Same Origin Policy\n in blink/webkit.\n\nCVE-2015-6756\n\n A use-after-free issue was found in the pdfium library.\n\nCVE-2015-6757\n\n Collin Payne found a use-after-free issue in the ServiceWorker\n implementation.\n\nCVE-2015-6758\n\n Atte Kettunen found an issue in the pdfium library.\n\nCVE-2015-6759\n\n Muneaki Nishimura discovered an information leak.\n\nCVE-2015-6760\n\n Ronald Crane discovered a logic error in the ANGLE library\n involving lost device events.\n\nCVE-2015-6761\n\n Aki Helin and Khalil Zhani discovered a memory corruption issue in\n the ffmpeg library.\n\nCVE-2015-6762\n\n Muneaki Nishimura discovered a way to bypass the Same Origin Policy\n in the CSS implementation.\n\nCVE-2015-6763\n\n The chrome 46 development team found and fixed various issues\n during internal auditing. Also multiple issues were fixed in\n the v8 javascript library, version 4.6.85.23.\n\nFor the stable distribution (jessie), these problems have been fixed in\nversion 46.0.2490.71-1~deb8u1.\n\nFor the testing (stretch) and unstable (sid) distributions, these\nproblems have been fixed in version 46.0.2490.71-1.\n\nWe recommend that you upgrade your chromium-browser packages.\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": 8, "modified": "2015-10-21T03:52:32", "published": "2015-10-21T03:52:32", "id": "DEBIAN:DSA-3376-1:92CEB", "href": "https://lists.debian.org/debian-security-announce/debian-security-announce-2015/msg00275.html", "title": "[SECURITY] [DSA 3376-1] chromium-browser security update", "type": "debian", "cvss": {"score": 7.5, "vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P"}}], "gentoo": [{"lastseen": "2016-09-06T19:46:50", "bulletinFamily": "unix", "cvelist": ["CVE-2015-6776", "CVE-2016-1628", "CVE-2016-1634", "CVE-2015-6775", "CVE-2016-1638", "CVE-2015-6789", "CVE-2015-6766", "CVE-2015-6762", "CVE-2015-8126", "CVE-2015-1288", "CVE-2015-1281", "CVE-2015-6764", "CVE-2016-1612", "CVE-2015-6770", "CVE-2015-6760", "CVE-2015-6781", "CVE-2015-1291", "CVE-2016-1615", "CVE-2015-1275", "CVE-2016-1626", "CVE-2016-1618", "CVE-2015-1297", "CVE-2015-1286", "CVE-2016-1613", "CVE-2015-1298", "CVE-2015-1295", "CVE-2015-6771", "CVE-2015-1289", "CVE-2015-1296", "CVE-2015-1270", "CVE-2015-6784", "CVE-2015-1272", "CVE-2015-1283", "CVE-2015-1279", "CVE-2015-1274", "CVE-2015-1300", "CVE-2015-1287", "CVE-2016-1621", "CVE-2016-1631", "CVE-2015-6774", "CVE-2015-6778", "CVE-2016-1640", "CVE-2016-1632", "CVE-2015-1282", "CVE-2016-1622", "CVE-2015-6772", "CVE-2015-1285", "CVE-2016-1639", "CVE-2016-1616", "CVE-2015-1302", "CVE-2015-1293", "CVE-2015-6758", "CVE-2015-1303", "CVE-2015-1294", "CVE-2016-1635", "CVE-2015-1276", "CVE-2015-1278", "CVE-2016-1620", "CVE-2015-6767", "CVE-2015-6783", "CVE-2016-1636", "CVE-2015-6787", "CVE-2015-6792", "CVE-2015-1277", "CVE-2016-1627", "CVE-2015-6786", "CVE-2016-1641", "CVE-2016-1633", "CVE-2016-1624", "CVE-2016-1617", "CVE-2015-6791", "CVE-2016-1629", "CVE-2015-6780", "CVE-2015-6785", "CVE-2015-6790", "CVE-2016-1619", "CVE-2015-1271", "CVE-2015-1292", "CVE-2015-6779", "CVE-2015-6788", "CVE-2015-6759", "CVE-2015-1273", "CVE-2015-6756", "CVE-2015-6768", "CVE-2015-6763", "CVE-2016-1630", "CVE-2016-1637", "CVE-2015-6765", "CVE-2015-6755", "CVE-2015-6769", "CVE-2015-6773", "CVE-2015-1304", "CVE-2015-6777", "CVE-2015-1280", "CVE-2015-1299", "CVE-2015-6757", "CVE-2016-1623", "CVE-2015-6782", "CVE-2016-1625", "CVE-2015-1284", "CVE-2016-1614", "CVE-2015-6761"], "edition": 1, "description": "### Background\n\nChromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web. \n\n### Description\n\nMultiple vulnerabilities have been discovered in the Chromium web browser. Please review the CVE identifiers referenced below for details. \n\n### Impact\n\nA remote attacker could possibly execute arbitrary code with the privileges of the process, cause a Denial of Service condition, obtain sensitive information, or bypass security restrictions. \n\n### Workaround\n\nThere is no known workaround at this time.\n\n### Resolution\n\nAll Chromium users should upgrade to the latest version:\n \n \n # emerge --sync\n # emerge --ask --oneshot --verbose\n \">=www-client/chromium-49.0.2623.87\"", "modified": "2016-03-12T00:00:00", "published": "2016-03-12T00:00:00", "id": "GLSA-201603-09", "href": "https://security.gentoo.org/glsa/201603-09", "type": "gentoo", "title": "Chromium: Multiple vulnerabilities", "cvss": {"score": 10.0, "vector": "AV:NETWORK/AC:LOW/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}]}