|
|
Log in / Subscribe / Register

Security

Defending against Rowhammer in the kernel

By Jonathan Corbet
October 28, 2016
The Rowhammer vulnerability affects hardware at the deepest levels. It has proved to be surprisingly exploitable on a number of different systems, leaving security-oriented developers at a loss. Since it is a hardware vulnerability, it would appear that solutions, too, must be placed in the hardware. Now, though, an interesting software-based mitigation mechanism is under discussion on the linux-kernel mailing list. The ultimate effectiveness of this defense is unproven, but it does show that there may be hope for a solution that doesn't require buying new computers.

Rowhammer works by repeatedly reading the same memory location a large number of times. With contemporary DRAM, reading a location is a destructive act; the memory controller must rewrite the data into that location after each read. Those rewrites can cause neighboring memory cells to discharge slightly; if an attacker causes rewriting to happen too many times before the next regular refresh cycle happens, they can corrupt data in those neighboring cells. The result is seemingly random bit flips in nearby memory.

This would appear to be a difficult vulnerability to exploit. An attacker must find memory that is known to be adjacent to data of interest, then manage to corrupt that data in a useful way. But attackers can do surprising things; a fair number of Rowhammer exploits have now been posted. That includes the "Drammer" exploit that works on many Android devices. Rowhammer is thus a serious problem. Unfortunately, the only proper solution appears to be to increase the memory refresh rate, something that cannot generally be done in deployed hardware.

An intriguing alternative turned up on the linux-kernel list, though its nature wasn't immediately clear. Pavel Machek asked a question that raised some eyebrows: "I'd like to get an interrupt every million cache misses... to do a printk() or something like that." Developers naturally wondered what he was up to. The answer turns out to be an in-kernel Rowhammer defense.

Contemporary CPUs are generally equipped with performance-monitoring units (PMUs) that can track many aspects of how the system is running. Normally the PMU is used by utilities like perf for system profiling and performance tuning. But one of the events the PMU can track is memory-cache misses. For Rowhammer to work, it must act on main memory; reads from cache will not be effective. That means forcing a cache miss for each of, generally, hundreds of thousands of reads to the same address. If the PMU can be used to detect those cache misses, it might be able to detect — and mitigate — Rowhammer attacks.

The patch is evolving rapidly as this is being written; the current version takes the form of a "nohammer" kernel module. It has a (currently hardwired) parameter called dram_max_utilization_factor, which determines the maximum cache-miss rate allowed in the system. If it is set to 8 (the default), then the nohammer module will trigger if the cache-miss rate exceeds 1/8 of the theoretical maximum. When that happens, the CPU will be forced to delay for a period long enough to allow the next DRAM refresh to run; 64ms by default. In theory, this delay should slow down a Rowhammer attack enough to make it ineffective.

It's a nice theory, but it still suffers from a number of practical problems at this point. To begin with, a 64ms hard delay will add a huge latency to anything the affected CPU is supposed to be doing. If it happens with any frequency at all, it will be noticed, even on systems that are not highly latency-sensitive. Ingo Molnar has suggested making the delay shorter and more frequent; that would reduce the maximum imposed latency, but doesn't change the overall nature of the defense.

The PMU can detect a high rate of cache misses, but it cannot tell the kernel whether all of those misses involved the same address or not. So it could be triggered by an application that is, for example, reading quickly through a large array of data in memory. Thus, it seems entirely plausible that a number of legitimate workloads will generate high rates of cache misses over time that will be mistaken for Rowhammer attacks. Those workloads will be penalized severely by this patch, for no actual gain. That will quickly lead to people turning the Rowhammer defense off.

The PMU is a per-CPU mechanism, but memory is globally accessible in a multiprocessor system. The patch has some tests for an attack that is conducted by two CPUs simultaneously, but does not scale well to systems with more processors than that. It's not entirely clear how it can be made to work in a setting where, say, eight processors are all pounding the same location simultaneously.

Finally, Mark Rutland raised an important point: this mechanism depends entirely on counting cache misses. If the attacker is able to obtain an uncached memory mapping, all operations on that memory will bypass the cache entirely and will not be counted. It would appear that Drammer makes use of just such a mapping, so this module may well not be an effective defense against it. Detecting attacks against uncached memory could prove to be a much harder problem.

So it is far too soon to say that the kernel has a useful defense against Rowhammer attacks. But this work shows that, when one is willing to pay the price, a defense might just be possible, at least for some types of attacks. That is an improvement over a world where the only real defense is to buy new hardware — once the vendors get around to producing Rowhammer-resistant systems. It will be interesting to watch where this work goes and how effective it becomes.

Comments (21 posted)

Brief items

Security quotes of the week

Much of our security ideas and concepts are based on the days when sysadmins ruled the world. They were like a massive T-Rex ruling their domain, instilling fear into those beneath them. Today in security we are trying to build Jurassic Park, except there are no dinosaurs, they all went extinct. Maybe we can use horses instead, nobody will notice ... probably. Most security leaders and security conferences are the same people saying the same things for the last ten years. If any of it worked even a little, I think we'd notice by now.
Josh Bressers

Now this may in fact be innocent, but to my mind it is at least possible that someone had noticed the potentially vulnerable controller in the code, had experimented with it and found the coding error. Then they realised that if they could quietly fix it, they could open up a critical vulnerability in one of the world’s most popular content management systems, which they could then exploit.
Fiona Coulter (Thanks to Paul Wise.)

Earlier this month, the group of computer scientists passed the logs to Paul Vixie. In the world of DNS experts, there’s no higher authority. Vixie wrote central strands of the DNS code that makes the internet work. After studying the logs, he concluded, “The parties were communicating in a secretive fashion. The operative word is secretive. This is more akin to what criminal syndicates do if they are putting together a project.” Put differently, the logs suggested that [Donald] Trump and Alfa [Bank] had configured something like a digital hotline connecting the two entities, shutting out the rest of the world, and designed to obscure its own existence. Over the summer, the scientists observed the communications trail from a distance.
Franklin Foer in Slate on a strange connection between a Trump server and a Russian bank

Comments (18 posted)

New vulnerabilities

bind: denial of service

Package(s):bind CVE #(s):CVE-2016-8864
Created:November 2, 2016 Updated:January 11, 2017
Description: From the Arch Linux advisory:

A defect in BIND's handling of responses containing a DNAME answer can cause a resolver to exit after encountering an assertion failure in db.c or resolver.c

During processing of a recursive response that contains a DNAME record in the answer section, BIND can stop execution after encountering an assertion error in resolver.c (error message: "INSIST((valoptions & 0x0002U) != 0) failed") or db.c (error message: "REQUIRE(targetp != ((void *)0) && *targetp == ((void *)0)) failed").

A server encountering either of these error conditions will stop, resulting in denial of service to clients. The risk to authoritative servers is minimal; recursive servers are chiefly at risk.

Alerts:
Fedora FEDORA-2016-9417b4c1dc bind99 2016-11-17
Fedora FEDORA-2016-e38196b52a bind 2016-11-13
Oracle ELSA-2016-2615 bind 2016-11-10
openSUSE openSUSE-SU-2016:2738-1 bind 2016-11-07
openSUSE openSUSE-SU-2016:2739-1 bind 2016-11-07
Slackware SSA:2016-308-02 bind 2016-11-03
Scientific Linux SLSA-2016:2142-1 bind97 2016-11-03
Scientific Linux SLSA-2016:2141-1 bind 2016-11-03
Mageia MGASA-2016-0365 bind 2016-11-04
SUSE SUSE-SU-2016:2706-1 bind 2016-11-02
SUSE SUSE-SU-2016:2697-2 bind 2016-11-03
Oracle ELSA-2016-2142 bind97 2016-11-02
Oracle ELSA-2016-2141 bind 2016-11-02
Oracle ELSA-2016-2141 bind 2016-11-02
Debian-LTS DLA-696-1 bind9 2016-11-02
CentOS CESA-2016:2142 bind97 2016-11-02
CentOS CESA-2016:2141 bind 2016-11-02
CentOS CESA-2016:2141 bind 2016-11-02
Red Hat RHSA-2016:2142-01 bind97 2016-11-02
Red Hat RHSA-2016:2141-01 bind 2016-11-02
Red Hat RHSA-2016:2615-01 bind 2016-11-03
Ubuntu USN-3119-1 bind9 2016-11-01
SUSE SUSE-SU-2016:2696-1 bind 2016-11-02
SUSE SUSE-SU-2016:2697-1 bind 2016-11-02
Debian DSA-3703-1 bind9 2016-11-01
Arch Linux ASA-201611-3 bind 2016-11-01
Oracle ELSA-2017-0063 bind 2017-01-17
Oracle ELSA-2017-0063 bind 2017-01-17
Oracle ELSA-2017-0062 bind 2017-01-17
Gentoo 201701-26 bind 2017-01-11
Scientific Linux SLSA-2016:2615-1 bind 2016-12-14
Red Hat RHSA-2016:2871-01 bind 2016-12-06
Fedora FEDORA-2016-605fd98c32 bind 2016-11-27
Fedora FEDORA-2016-8e39076950 bind99 2016-11-24
Fedora FEDORA-2016-567a5591e4 bind99 2016-11-19
Fedora FEDORA-2016-46137973ba bind 2016-11-19

Comments (none posted)

cairo: denial of service

Package(s):cairo CVE #(s):CVE-2016-9082
Created:October 31, 2016 Updated:November 2, 2016
Description: From the Debian LTS advisory:

It was discovered that there was a possible DoS attack in Cairo, a multi-platform library providing vector-based rendering. An SVG could generate invalid pointers from a _cairo_image_surface in write_png.

Alerts:
Debian-LTS DLA-688-1 cairo 2016-10-28

Comments (none posted)

chromium: denial of service

Package(s):chromium CVE #(s):CVE-2016-5138
Created:October 31, 2016 Updated:November 2, 2016
Description: From the CVE entry:

Integer overflow in the kbasep_vinstr_attach_client function in midgard/mali_kbase_vinstr.c in Google Chrome before 52.0.2743.85 allows remote attackers to cause a denial of service (heap-based buffer overflow and use-after-free) by leveraging an unrestricted multiplication.

Alerts:
Gentoo 201610-09 chromium 2016-10-29

Comments (none posted)

curl: multiple vulnerabilities

Package(s):curl CVE #(s):CVE-2016-8615 CVE-2016-8616 CVE-2016-8617 CVE-2016-8618 CVE-2016-8619 CVE-2016-8620 CVE-2016-8621 CVE-2016-8622 CVE-2016-8623 CVE-2016-8624
Created:November 2, 2016 Updated:November 18, 2016
Description: From the SUSE advisory:

- CVE-2016-8624: invalid URL parsing with '#' (bsc#1005646)

- CVE-2016-8623: Use-after-free via shared cookies (bsc#1005645)

- CVE-2016-8622: URL unescape heap overflow via integer truncation (bsc#1005643)

- CVE-2016-8621: curl_getdate read out of bounds (bsc#1005642)

- CVE-2016-8620: glob parser write/read out of bounds (bsc#1005640)

- CVE-2016-8619: double-free in krb5 code (bsc#1005638)

- CVE-2016-8618: double-free in curl_maprintf (bsc#1005637)

- CVE-2016-8617: OOB write via unchecked multiplication (bsc#1005635)

- CVE-2016-8616: case insensitive password comparison (bsc#1005634)

- CVE-2016-8615: cookie injection for other servers (bsc#1005633)

Alerts:
openSUSE openSUSE-SU-2016:2768-1 curl 2016-11-10
Fedora FEDORA-2016-e8e8cdb4ed curl 2016-11-06
Ubuntu USN-3123-1 curl 2016-11-03
Slackware SSA:2016-308-01 curl 2016-11-03
Debian DSA-3705-1 curl 2016-11-03
SUSE SUSE-SU-2016:2714-1 curl 2016-11-03
Arch Linux ASA-201611-9 libcurl-gnutls 2016-11-03
Arch Linux ASA-201611-8 libcurl-compat 2016-11-03
Arch Linux ASA-201611-10 lib32-libcurl-gnutls 2016-11-03
Arch Linux ASA-201611-5 lib32-libcurl-compat 2016-11-02
Arch Linux ASA-201611-4 lib32-curl 2016-11-02
Arch Linux ASA-201611-7 curl 2016-11-03
SUSE SUSE-SU-2016:2700-1 curl 2016-11-02
SUSE SUSE-SU-2016:2699-1 curl 2016-11-02
Gentoo 201701-47 curl 2017-01-19
Fedora FEDORA-2016-89769648a0 curl 2016-11-19
Debian-LTS DLA-711-1 curl 2016-11-17

Comments (none posted)

imagemagick: multiple vulnerabilities

Package(s):ImageMagick CVE #(s):CVE-2014-9907 CVE-2015-8959 CVE-2016-7513 CVE-2016-7514 CVE-2016-7518 CVE-2016-7520 CVE-2016-7521 CVE-2016-7523 CVE-2016-7525 CVE-2016-7530 CVE-2016-7532 CVE-2016-7534 CVE-2016-7535 CVE-2016-7536 CVE-2016-7538 CVE-2016-7539 CVE-2016-7540 CVE-2016-8677
Created:October 31, 2016 Updated:January 30, 2017
Description: From the openSUSE advisory:

- CVE-2014-9907: DOS due to corrupted DDS files (bsc#1000714)

- CVE-2015-8959: DOS due to corrupted DDS files (bsc#1000713)

- CVE-2016-7513: Off-by-one error leading to segfault (bsc#1000686)

- CVE-2016-7514: Out-of-bounds read in coders/psd.c (bsc#1000688)

- CVE-2016-7518: Out-of-bounds read in coders/sun.c (bsc#1000694)

- CVE-2016-7520: Heap overflow in hdr file handling (bsc#1000696)

- CVE-2016-7521: Heap buffer overflow in psd file handling (bsc#1000697)

- CVE-2016-7523: AddressSanitizer:heap-buffer-overflow READ of size 1 meta.c:496 (bsc#1000699)

- CVE-2016-7525: Heap buffer overflow in psd file coder (bsc#1000701)

- CVE-2016-7530: Out of bound in quantum handling (bsc#1000703)

- CVE-2016-7532: Fix handling of corrupted psd file (bsc#1000706)

- CVE-2016-7534: Out of bound access in generic decoder (bsc#1000708)

- CVE-2016-7535: Out of bound access for corrupted psd file (bsc#1000709)

- CVE-2016-7536: SEGV reported in corrupted profile handling (bsc#1000710)

- CVE-2016-7538: SIGABRT for corrupted pdb file (bsc#1000712)

- CVE-2016-7539: Potential DOS by not releasing memory (bsc#1000715)

- CVE-2016-7540: Writing to RGF format aborts (bsc#1000394)

- CVE-2016-8677: Memory allocation failure in AcquireQuantumPixels (bsc#1005328)

Alerts:
openSUSE openSUSE-SU-2016:2770-1 ImageMagick 2016-11-10
openSUSE openSUSE-SU-2016:2671-1 ImageMagick 2016-10-28
Debian-LTS DLA-807-1 imagemagick 2017-01-30
Debian-LTS DLA-731-2 imagemagick 2016-12-11
SUSE SUSE-SU-2016:2964-1 ImageMagick 2016-12-01
Debian-LTS DLA-731-1 imagemagick 2016-12-02
Ubuntu USN-3142-1 imagemagick 2016-11-30
Debian DSA-3726-1 imagemagick 2016-11-27

Comments (none posted)

java: unspecified vulnerability

Package(s):java CVE #(s):CVE-2016-5556
Created:November 2, 2016 Updated:November 2, 2016
Description: From the CVE entry:

Unspecified vulnerability in Oracle Java SE 6u121, 7u111, and 8u102 allows remote attackers to affect confidentiality, integrity, and availability via vectors related to 2D.

Alerts:
Red Hat RHSA-2016:2659-01 java-1.6.0-ibm 2016-11-07
Gentoo 201611-04 oracle-jre-bin 2016-11-04
Red Hat RHSA-2016:2136-01 java-1.8.0-ibm 2016-11-02
Red Hat RHSA-2016:2137-01 java-1.7.1-ibm 2016-11-02
Red Hat RHSA-2016:2138-01 java-1.7.0-ibm 2016-11-02
openSUSE openSUSE-SU-2016:3088-1 java-1_7_0-openjdk 2016-12-12
SUSE SUSE-SU-2016:3078-1 java-1_8_0-ibm 2016-12-10
SUSE SUSE-SU-2016:3068-1 java-1_7_0-ibm 2016-12-09
SUSE SUSE-SU-2016:3041-1 java-1_7_1-ibm 2016-12-07
SUSE SUSE-SU-2016:3043-1 java-1_7_1-ibm 2016-12-07
SUSE SUSE-SU-2016:3040-1 java-1_6_0-ibm 2016-12-07
SUSE SUSE-SU-2016:3010-1 java-1_6_0-ibm 2016-12-05
openSUSE openSUSE-SU-2016:2985-1 java-1_8_0-openjdk 2016-12-02
openSUSE openSUSE-SU-2016:2990-1 java-1_7_0-openjdk 2016-12-04
openSUSE openSUSE-SU-2016:2900-1 java-1_7_0-openjdk 2016-11-24
SUSE SUSE-SU-2016:2887-1 java-1_8_0-openjdk 2016-11-23
openSUSE openSUSE-SU-2016:2862-1 java-1_8_0-openjdk 2016-11-19

Comments (none posted)

libtiff: denial of service

Package(s):libtiff CVE #(s):CVE-2016-3658
Created:November 2, 2016 Updated:November 2, 2016
Description: From the CVE entry:

The TIFFWriteDirectoryTagLongLong8Array function in tif_dirwrite.c in the tiffset tool in LibTIFF 4.0.6 and earlier allows remote attackers to cause a denial of service (out-of-bounds read) via vectors involving the ma variable.

Alerts:
Mageia MGASA-2016-0361 libtiff 2016-11-02
Gentoo 201701-16 tiff 2017-01-09
openSUSE openSUSE-SU-2017:0074-1 tiff 2017-01-08
openSUSE openSUSE-SU-2016:3035-1 tiff 2016-12-07
Arch Linux ASA-201611-26 libtiff 2016-11-25
Arch Linux ASA-201611-27 lib32-libtiff 2016-11-25

Comments (none posted)

libwmf: denial of service

Package(s):libwmf CVE #(s):CVE-2016-9011
Created:November 2, 2016 Updated:November 14, 2016
Description: From the Debian LTS advisory:

Agostino Sarubbo from Gentoo discovered a flaw in libwmf's Windows Metafile Format (WMF) parser which caused allocation of excessive amount of memory potentially leading to a crash.

Alerts:
Mageia MGASA-2016-0376 libwmf 2016-11-14
Debian-LTS DLA-694-1 libwmf 2016-11-02
Arch Linux ASA-201701-1 libwmf 2017-01-01

Comments (none posted)

libxml2: code execution

Package(s):libxml2 CVE #(s):CVE-2016-4658
Created:November 1, 2016 Updated:November 7, 2016
Description: From the Arch Linux advisory:

A use-after-free vulnerability via namespace nodes in XPointer ranges was found in libxml2.

Alerts:
openSUSE openSUSE-SU-2016:2730-1 libxml2 2016-11-04
openSUSE openSUSE-SU-2016:2711-1 libxml2 2016-11-03
Debian-LTS DLA-691-1 libxml2 2016-10-31
Arch Linux ASA-201611-2 libxml2 2016-11-01
openSUSE openSUSE-SU-2017:0446-1 libxml2 2017-02-11
Gentoo 201701-37 libxml2 2017-01-16
Debian DSA-3744-1 libxml2 2016-12-23

Comments (none posted)

mailman: cross-site request forgery

Package(s):mailman CVE #(s):CVE-2016-7123
Created:November 2, 2016 Updated:November 2, 2016
Description: From the Ubuntu advisory:

It was discovered that the Mailman administrative web interface did not protect against cross-site request forgery (CSRF) attacks. If an authenticated user were tricked into visiting a malicious website while logged into Mailman, a remote attacker could perform administrative actions. This issue only affected Ubuntu 12.04 LTS.

Alerts:
Ubuntu USN-3118-1 mailman 2016-11-01

Comments (none posted)

mariadb: multiple unspecified vulnerabilities

Package(s):mariadb mysql CVE #(s):CVE-2016-3492 CVE-2016-5612 CVE-2016-5616 CVE-2016-5624 CVE-2016-5626 CVE-2016-5629 CVE-2016-8283
Created:November 1, 2016 Updated:November 2, 2016
Description: From the CVE entries:

Unspecified vulnerability in Oracle MySQL 5.5.51 and earlier, 5.6.32 and earlier, and 5.7.14 and earlier allows remote authenticated users to affect availability via vectors related to Server: Optimizer. (CVE-2016-3492)

Unspecified vulnerability in Oracle MySQL 5.5.50 and earlier, 5.6.31 and earlier, and 5.7.13 and earlier allows remote authenticated users to affect availability via vectors related to DML. (CVE-2016-5612)

Unspecified vulnerability in Oracle MySQL 5.5.51 and earlier, 5.6.32 and earlier, and 5.7.14 and earlier allows local users to affect confidentiality, integrity, and availability via vectors related to Server: MyISAM. (CVE-2016-5616)

Unspecified vulnerability in Oracle MySQL 5.5.51 and earlier allows remote authenticated users to affect availability via vectors related to DML. (CVE-2016-5624)

Unspecified vulnerability in Oracle MySQL 5.5.51 and earlier, 5.6.32 and earlier, and 5.7.14 and earlier allows remote authenticated users to affect availability via vectors related to GIS. (CVE-2016-5626)

Unspecified vulnerability in Oracle MySQL 5.5.51 and earlier, 5.6.32 and earlier, and 5.7.14 and earlier allows remote administrators to affect availability via vectors related to Server: Federated. (CVE-2016-5629)

Unspecified vulnerability in Oracle MySQL 5.5.51 and earlier, 5.6.32 and earlier, and 5.7.14 and earlier allows remote authenticated users to affect availability via vectors related to Server: Types. (CVE-2016-8283)

Alerts:
Red Hat RHSA-2016:2749-01 rh-mysql56-mysql 2016-11-15
openSUSE openSUSE-SU-2016:2788-1 mysql-community-server 2016-11-12
Debian DSA-3711-1 mariadb-10.0 2016-11-11
openSUSE openSUSE-SU-2016:2769-1 mysql-community-server 2016-11-10
Mageia MGASA-2016-0371 mariadb 2016-11-09
openSUSE openSUSE-SU-2016:2746-1 mariadb 2016-11-08
Red Hat RHSA-2016:2595-02 mariadb 2016-11-03
Slackware SSA:2016-305-03 mariadb 2016-10-31
Red Hat RHSA-2016:2130-01 mysql55-mysql 2016-10-31
Red Hat RHSA-2016:2131-01 mariadb55-mariadb 2016-10-31
CentOS CESA-2017:0184 mysql 2017-01-26
Scientific Linux SLSA-2017:0184-1 mysql 2017-01-24
Red Hat RHSA-2017:0184-01 mysql 2017-01-24
Gentoo 201701-01 mariadb 2017-01-01
Fedora FEDORA-2016-c7e60a9fd4 community-mysql 2016-12-27
Fedora FEDORA-2016-9b83c6862d community-mysql 2016-12-27
Scientific Linux SLSA-2016:2595-2 mariadb 2016-12-14
Red Hat RHSA-2016:2928-01 rh-mariadb101-mariadb 2016-12-08
Red Hat RHSA-2016:2927-01 rh-mariadb100-mariadb 2016-12-08
openSUSE openSUSE-SU-2016:3028-1 mariadb 2016-12-06
openSUSE openSUSE-SU-2016:3025-1 mariadb 2016-12-06
SUSE SUSE-SU-2016:2932-1 mariadb 2016-11-28
SUSE SUSE-SU-2016:2933-1 mariadb 2016-11-28

Comments (none posted)

memcached: code execution

Package(s):memcached CVE #(s):CVE-2016-8704 CVE-2016-8705 CVE-2016-8706
Created:November 1, 2016 Updated:January 12, 2017
Description: From the Arch Linux advisory:

- CVE-2016-8704 (arbitrary code execution): An integer overflow in the process_bin_append_prepend function which is responsible for processing multiple commands of Memcached binary protocol can be abused to cause heap overflow and lead to remote code execution.

- CVE-2016-8705 (arbitrary code execution): Multiple integer overflows in process_bin_update function which is responsible for processing multiple commands of Memcached binary protocol can be abused to cause heap overflow and lead to remote code execution.

- CVE-2016-8706 (arbitrary code execution): An integer overflow in process_bin_sasl_auth function which is responsible for authentication commands of Memcached binary protocol can be abused to cause heap overflow and lead to remote code execution.

Alerts:
Fedora FEDORA-2016-4df986a71f memcached 2016-11-14
Fedora FEDORA-2016-66c70cadb4 memcached 2016-11-14
Debian-LTS DLA-701-1 memcached 2016-11-05
Debian DSA-3704-1 memcached 2016-11-03
Ubuntu USN-3120-1 memcached 2016-11-02
Arch Linux ASA-201611-1 memcached 2016-11-01
Red Hat RHSA-2017:0059-01 memcached 2017-01-11
Gentoo 201701-12 memcached 2017-01-02
Scientific Linux SLSA-2016:2819-1 memcached 2016-12-14
Fedora FEDORA-2016-0c4e822340 memcached 2016-12-08
CentOS CESA-2016:2820 memcached 2016-11-28
Scientific Linux SLSA-2016:2820-1 memcached 2016-11-23
Oracle ELSA-2016-2820 memcached 2016-11-22
Oracle ELSA-2016-2819 memcached 2016-11-22
Red Hat RHSA-2016:2820-01 memcached 2016-11-23
Red Hat RHSA-2016:2819-01 memcached 2016-11-23
openSUSE openSUSE-SU-2016:2839-1 memcached 2016-11-17
openSUSE openSUSE-SU-2016:2841-1 memcached 2016-11-17
Mageia MGASA-2016-0381 memcached 2016-11-17

Comments (none posted)

mysql: unspecified vulnerability

Package(s):mysql mariadb CVE #(s):CVE-2016-5617
Created:November 1, 2016 Updated:November 2, 2016
Description: From the CVE entry:

Unspecified vulnerability in Oracle MySQL 5.5.51 and earlier, 5.6.32 and earlier, and 5.7.14 and earlier allows local users to affect confidentiality, integrity, and availability via vectors related to Server: Error Handling.

Alerts:
Red Hat RHSA-2016:2749-01 rh-mysql56-mysql 2016-11-15
openSUSE openSUSE-SU-2016:2788-1 mysql-community-server 2016-11-12
openSUSE openSUSE-SU-2016:2769-1 mysql-community-server 2016-11-10
Red Hat RHSA-2016:2130-01 mysql55-mysql 2016-10-31
Fedora FEDORA-2016-c7e60a9fd4 community-mysql 2016-12-27
Fedora FEDORA-2016-9b83c6862d community-mysql 2016-12-27

Comments (none posted)

nodejs-tough-cookie: denial of service

Package(s):nodejs-tough-cookie CVE #(s):CVE-2016-1000232
Created:October 28, 2016 Updated:November 2, 2016
Description: From the Red Hat advisory:

A regular expression denial of service flaw was found in Tough-Cookie. An attacker able to make an application using Touch-Cookie to parse a sufficiently large HTTP request Cookie header could cause the application to consume an excessive amount of CPU. (CVE-2016-1000232)

Alerts:
Red Hat RHSA-2016:2101-01 nodejs and nodejs-tough-cookie 2016-10-27

Comments (none posted)

openstack-manila-ui: cross-site scripting

Package(s):openstack-manila-ui CVE #(s):CVE-2016-6519
Created:October 27, 2016 Updated:November 2, 2016
Description: From the Red Hat advisory:

A cross-site scripting flaw was discovered in openstack-manila-ui's Metadata field contained in its "Create Share" form. A user could inject malicious HTML/JavaScript code that would then be reflected in the "Shares" overview. Remote, authenticated, but unprivileged users could exploit this vulnerability to steal session cookies and escalate their privileges. (CVE-2016-6519)

Alerts:
Red Hat RHSA-2016:2115-01 openstack-manila-ui 2016-10-26
Red Hat RHSA-2016:2116-01 openstack-manila-ui 2016-10-26
Red Hat RHSA-2016:2117-01 openstack-manila-ui 2016-10-26

Comments (none posted)

oxide-qt: information disclosure

Package(s):oxide-qt CVE #(s):CVE-2016-1586
Created:November 2, 2016 Updated:November 2, 2016
Description: From the Ubuntu advisory:

It was discovered that a long running unload handler could cause an incognito profile to be reused in some circumstances. If a user were tricked in to opening a specially crafted website, an attacker could potentially exploit this to obtain sensitive information.

Alerts:
Ubuntu USN-3113-1 oxide-qt 2016-11-02

Comments (none posted)

python-django: two vulnerabilities

Package(s):python-django CVE #(s):CVE-2016-9013 CVE-2016-9014
Created:November 2, 2016 Updated:November 21, 2016
Description: From the Ubuntu advisory:

Marti Raudsepp discovered that Django incorrectly used a hardcoded password when running tests on an Oracle database. A remote attacker could possibly connect to the database while the tests are running and prevent the test user with the hardcoded password from being removed. (CVE-2016-9013)

Aymeric Augustin discovered that Django incorrectly validated hosts when being run with the debug setting enabled. A remote attacker could possibly use this issue to perform DNS rebinding attacks. (CVE-2016-9014)

Alerts:
Arch Linux ASA-201611-14 python2-django 2016-11-16
Arch Linux ASA-201611-15 python-django 2016-11-16
Fedora FEDORA-2016-3eb5a55123 python-django 2016-11-14
Mageia MGASA-2016-0368 python-django 2016-11-06
Ubuntu USN-3115-1 python-django 2016-11-01
Fedora FEDORA-2016-d4571bf555 python-django 2016-11-19

Comments (none posted)

qemu-kvm: multiple vulnerabilities

Package(s):qemu-kvm CVE #(s):CVE-2016-7909 CVE-2016-8909 CVE-2016-8910
Created:October 31, 2016 Updated:November 3, 2016
Description: From the Debian LTS advisory:

Multiple vulnerabilities have been discovered in qemu-kvm, a full virtualization solution on x86 hardware based on Quick Emulator(Qemu). The Common Vulnerabilities and Exposures project identifies the following problems:

CVE-2016-7909: Quick Emulator(Qemu) built with the AMD PC-Net II emulator support is vulnerable to an infinite loop issue. It could occur while receiving packets via pcnet_receive().

A privileged user/process inside guest could use this issue to crash the Qemu process on the host leading to DoS.

CVE-2016-8909: Quick Emulator(Qemu) built with the Intel HDA controller emulation support is vulnerable to an infinite loop issue. It could occur while processing the DMA buffer stream while doing data transfer in 'intel_hda_xfer'.

A privileged user inside guest could use this flaw to consume excessive CPU cycles on the host, resulting in DoS.

CVE-2016-8910: Quick Emulator(Qemu) built with the RTL8139 ethernet controller emulation support is vulnerable to an infinite loop issue. It could occur while transmitting packets in C+ mode of operation.

A privileged user inside guest could use this flaw to consume excessive CPU cycles on the host, resulting in DoS situation.

Further issues fixed where the CVE requests are pending:

* Quick Emulator(Qemu) built with the i8255x (PRO100) NIC emulation support is vulnerable to a memory leakage issue. It could occur while unplugging the device, and doing so repeatedly would result in leaking host memory affecting, other services on the host.

A privileged user inside guest could use this flaw to cause a DoS on the host and/or potentially crash the Qemu process on the host.

* Quick Emulator(Qemu) built with the VirtFS, host directory sharing via Plan 9 File System(9pfs) support, is vulnerable to a several memory leakage issues.

A privileged user inside guest could use this flaw to leak the host memory bytes resulting in DoS for other services.

* Quick Emulator(Qemu) built with the VirtFS, host directory sharing via Plan 9 File System(9pfs) support, is vulnerable to an integer overflow issue. It could occur by accessing xattributes values.

A privileged user inside guest could use this flaw to crash the Qemu process instance resulting in DoS.

* Quick Emulator(Qemu) built with the VirtFS, host directory sharing via Plan 9 File System(9pfs) support, is vulnerable to memory leakage issue. It could occur while creating extended attribute via 'Txattrcreate' message.

A privileged user inside guest could use this flaw to leak host memory, thus affecting other services on the host and/or potentially crash the Qemu process on the host.

Alerts:
Fedora FEDORA-2016-da6b1d277b xen 2016-11-10
Ubuntu USN-3125-1 qemu, qemu-kvm 2016-11-09
Fedora FEDORA-2016-0d1a8ee35b xen 2016-11-10
Debian-LTS DLA-698-1 qemu 2016-11-03
Debian-LTS DLA-689-1 qemu-kvm 2016-10-30
Fedora FEDORA-2017-12394e2cc7 qemu 2017-01-25
Fedora FEDORA-2017-b953d4d3a4 qemu 2017-01-20
openSUSE openSUSE-SU-2017:0008-1 xen 2017-01-02
openSUSE openSUSE-SU-2017:0007-1 xen 2017-01-02
SUSE SUSE-SU-2016:3273-1 xen 2016-12-27
openSUSE openSUSE-SU-2016:3237-1 qemu 2016-12-22
SUSE SUSE-SU-2016:3174-1 xen 2016-12-16
SUSE SUSE-SU-2016:3156-1 xen 2016-12-14
openSUSE openSUSE-SU-2016:3134-1 xen 2016-12-14
openSUSE openSUSE-SU-2016:3103-1 qemu 2016-12-12
SUSE SUSE-SU-2016:3083-1 xen 2016-12-12
SUSE SUSE-SU-2016:3067-1 xen 2016-12-09
SUSE SUSE-SU-2016:3044-1 xen 2016-12-07
SUSE SUSE-SU-2016:2988-1 qemu 2016-12-02
SUSE SUSE-SU-2016:2936-1 qemu 2016-11-29
SUSE SUSE-SU-2016:2902-1 kvm 2016-11-24
Gentoo 201611-11 qemu 2016-11-19
Fedora FEDORA-2016-7b6fbff620 xen 2016-11-19

Comments (none posted)

tar: file overwrite

Package(s):tar CVE #(s):CVE-2016-6321
Created:November 1, 2016 Updated:December 5, 2016
Description: From the Debian LTS advisory:

A vulnerability has been discovered in the tar package that could allow an attacker to overwrite arbitrary files through crafted files.

Alerts:
Arch Linux ASA-201611-11 tar 2016-11-03
Debian DSA-3702-1 tar 2016-11-01
Debian-LTS DLA-690-1 tar 2016-10-31
openSUSE openSUSE-SU-2016:3003-1 tar 2016-12-05
Ubuntu USN-3132-1 tar 2016-11-21
openSUSE openSUSE-SU-2016:2874-1 tar 2016-11-22
Gentoo 201611-19 tar 2016-11-22
Mageia MGASA-2016-0386 tar 2016-11-18

Comments (none posted)

tiff: multiple vulnerabilities

Package(s):tiff CVE #(s):CVE-2016-3619 CVE-2016-3620 CVE-2016-3621 CVE-2016-3631 CVE-2016-3633 CVE-2016-3634 CVE-2016-5102 CVE-2016-5318 CVE-2016-5319 CVE-2016-5652 CVE-2016-8331 CVE-2016-3624
Created:November 2, 2016 Updated:February 1, 2017
Description: From the CVE entries:

The DumpModeEncode function in tif_dumpmode.c in the bmp2tiff tool in LibTIFF 4.0.6 and earlier, when the "-c none" option is used, allows remote attackers to cause a denial of service (buffer over-read) via a crafted BMP image. (CVE-2016-3619)

The ZIPEncode function in tif_zip.c in the bmp2tiff tool in LibTIFF 4.0.6 and earlier, when the "-c zip" option is used, allows remote attackers to cause a denial of service (buffer over-read) via a crafted BMP image. (CVE-2016-3620)

The LZWEncode function in tif_lzw.c in the bmp2tiff tool in LibTIFF 4.0.6 and earlier, when the "-c lzw" option is used, allows remote attackers to cause a denial of service (buffer over-read) via a crafted BMP image. (CVE-2016-3621)

The (1) cpStrips and (2) cpTiles functions in the thumbnail tool in LibTIFF 4.0.6 and earlier allow remote attackers to cause a denial of service (out-of-bounds read) via vectors related to the bytecounts[] array variable. (CVE-2016-3631)

The setrow function in the thumbnail tool in LibTIFF 4.0.6 and earlier allows remote attackers to cause a denial of service (out-of-bounds read) via vectors related to the src variable. (CVE-2016-3633)

The tagCompare function in tif_dirinfo.c in the thumbnail tool in LibTIFF 4.0.6 and earlier allows remote attackers to cause a denial of service (out-of-bounds read) via vectors related to field_tag matching. (CVE-2016-3634)

An exploitable remote code execution vulnerability exists in the handling of TIFF images in LibTIFF version 4.0.6. A crafted TIFF document can lead to a type confusion vulnerability resulting in remote code execution. This vulnerability can be triggered via a TIFF file delivered to the application using LibTIFF's tag extension functionality. (CVE-2016-8331)

The cvtClump function in the rgb2ycbcr tool in LibTIFF 4.0.6 and earlier allows remote attackers to cause a denial of service (out-of-bounds write) by setting the "-v" option to -1. (CVE-2016-3624)

CVE-2016-5102, CVE-2016-5318, CVE-2016-5319, and CVE-2016-5652 are unspecified.

Alerts:
Debian-LTS DLA-692-1 tiff3 2016-11-02
Debian-LTS DLA-693-1 tiff 2016-11-02
Scientific Linux SLSA-2017:0225-1 libtiff 2017-02-02
Oracle ELSA-2017-0225 libtiff 2017-02-01
Oracle ELSA-2017-0225 libtiff 2017-02-01
CentOS CESA-2017:0225 libtiff 2017-02-01
CentOS CESA-2017:0225 libtiff 2017-02-01
Red Hat RHSA-2017:0225-01 libtiff 2017-02-01
Debian-LTS DLA-795-1 tiff 2017-01-23
Debian DSA-3762-1 tiff 2017-01-13
Gentoo 201701-16 tiff 2017-01-09
openSUSE openSUSE-SU-2017:0074-1 tiff 2017-01-08
openSUSE openSUSE-SU-2016:3035-1 tiff 2016-12-07
Arch Linux ASA-201611-26 libtiff 2016-11-25
Arch Linux ASA-201611-27 lib32-libtiff 2016-11-25

Comments (none posted)

tre: code execution

Package(s):tre musl CVE #(s):CVE-2016-8859
Created:October 28, 2016 Updated:January 2, 2017
Description: From the Debian-LTS advisory:

A vulnerability has been found in the tre package that could allow an attacker to perform controlled heap corruption.

Alerts:
Fedora FEDORA-2016-0ff6c3d84b tre 2016-11-14
Fedora FEDORA-2016-cd09eab674 tre 2016-11-14
Debian-LTS DLA-687-1 tre 2016-10-27
Gentoo 201701-11 musl 2017-01-02
Mageia MGASA-2016-0395 tre 2016-11-21
Fedora FEDORA-2016-0a952a3bc0 tre 2016-11-19

Comments (none posted)

Page editor: Jake Edge
Next page: Kernel development>>


Copyright © 2016, Eklektix, Inc.
Comments and public postings are copyrighted by their creators.
Linux is a registered trademark of Linus Torvalds