Vulnerabilities > CVE-2015-0275 - Code vulnerability in Linux Kernel

047910
CVSS 4.9 - MEDIUM
Attack vector
LOCAL
Attack complexity
LOW
Privileges required
NONE
Confidentiality impact
NONE
Integrity impact
NONE
Availability impact
COMPLETE
local
low complexity
linux
oracle
CWE-17
nessus

Summary

The ext4_zero_range function in fs/ext4/extents.c in the Linux kernel before 4.1 allows local users to cause a denial of service (BUG) via a crafted fallocate zero-range request.

Vulnerable Configurations

Part Description Count
OS
Linux
2012
OS
Oracle
1

Common Weakness Enumeration (CWE)

Nessus

  • NASL familyUbuntu Local Security Checks
    NASL idUBUNTU_USN-2637-1.NASL
    descriptionXiong Zhou discovered a bug in the way the EXT4 filesystem handles fallocate zero range functionality when the page size is greater than the block size. A local attacker could exploit this flaw to cause a denial of service (system crash). (CVE-2015-0275) Wen Xu discovered a use-after-free flaw in the Linux kernel
    last seen2020-06-01
    modified2020-06-02
    plugin id84124
    published2015-06-11
    reporterUbuntu Security Notice (C) 2015-2019 Canonical, Inc. / NASL script (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/84124
    titleUbuntu 14.10 : linux vulnerabilities (USN-2637-1)
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    # The descriptive text and package checks in this plugin were
    # extracted from Ubuntu Security Notice USN-2637-1. The text 
    # itself is copyright (C) Canonical, Inc. See 
    # <http://www.ubuntu.com/usn/>. Ubuntu(R) is a registered 
    # trademark of Canonical, Inc.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(84124);
      script_version("2.10");
      script_cvs_date("Date: 2019/09/18 12:31:44");
    
      script_cve_id("CVE-2015-0275", "CVE-2015-3636");
      script_xref(name:"USN", value:"2637-1");
    
      script_name(english:"Ubuntu 14.10 : linux vulnerabilities (USN-2637-1)");
      script_summary(english:"Checks dpkg output for updated packages.");
    
      script_set_attribute(
        attribute:"synopsis", 
        value:
    "The remote Ubuntu host is missing one or more security-related
    patches."
      );
      script_set_attribute(
        attribute:"description", 
        value:
    "Xiong Zhou discovered a bug in the way the EXT4 filesystem handles
    fallocate zero range functionality when the page size is greater than
    the block size. A local attacker could exploit this flaw to cause a
    denial of service (system crash). (CVE-2015-0275)
    
    Wen Xu discovered a use-after-free flaw in the Linux kernel's ipv4
    ping support. A local user could exploit this flaw to cause a denial
    of service (system crash) or gain administrative privileges on the
    system. (CVE-2015-3636).
    
    Note that Tenable Network Security has extracted the preceding
    description block directly from the Ubuntu security advisory. Tenable
    has attempted to automatically clean and format it as much as possible
    without introducing additional issues."
      );
      script_set_attribute(
        attribute:"see_also",
        value:"https://usn.ubuntu.com/2637-1/"
      );
      script_set_attribute(
        attribute:"solution", 
        value:
    "Update the affected linux-image-3.16-generic,
    linux-image-3.16-generic-lpae and / or linux-image-3.16-lowlatency
    packages."
      );
      script_set_cvss_base_vector("CVSS2#AV:L/AC:L/Au:N/C:N/I:N/A:C");
      script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
      script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
      script_set_attribute(attribute:"exploit_available", value:"false");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:canonical:ubuntu_linux:linux-image-3.16-generic");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:canonical:ubuntu_linux:linux-image-3.16-generic-lpae");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:canonical:ubuntu_linux:linux-image-3.16-lowlatency");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:canonical:ubuntu_linux:14.10");
    
      script_set_attribute(attribute:"vuln_publication_date", value:"2015/08/05");
      script_set_attribute(attribute:"patch_publication_date", value:"2015/06/10");
      script_set_attribute(attribute:"plugin_publication_date", value:"2015/06/11");
      script_set_attribute(attribute:"generated_plugin", value:"current");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_copyright(english:"Ubuntu Security Notice (C) 2015-2019 Canonical, Inc. / NASL script (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
      script_family(english:"Ubuntu Local Security Checks");
    
      script_dependencies("ssh_get_info.nasl", "linux_alt_patch_detect.nasl");
      script_require_keys("Host/cpu", "Host/Ubuntu", "Host/Ubuntu/release", "Host/Debian/dpkg-l");
    
      exit(0);
    }
    
    
    include("audit.inc");
    include("ubuntu.inc");
    include("ksplice.inc");
    
    if ( ! get_kb_item("Host/local_checks_enabled") ) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
    release = get_kb_item("Host/Ubuntu/release");
    if ( isnull(release) ) audit(AUDIT_OS_NOT, "Ubuntu");
    release = chomp(release);
    if (! preg(pattern:"^(14\.10)$", string:release)) audit(AUDIT_OS_NOT, "Ubuntu 14.10", "Ubuntu " + release);
    if ( ! get_kb_item("Host/Debian/dpkg-l") ) audit(AUDIT_PACKAGE_LIST_MISSING);
    
    cpu = get_kb_item("Host/cpu");
    if (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);
    if ("x86_64" >!< cpu && cpu !~ "^i[3-6]86$") audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "Ubuntu", cpu);
    
    if (get_one_kb_item("Host/ksplice/kernel-cves"))
    {
      rm_kb_item(name:"Host/uptrack-uname-r");
      cve_list = make_list("CVE-2015-0275", "CVE-2015-3636");
      if (ksplice_cves_check(cve_list))
      {
        audit(AUDIT_PATCH_INSTALLED, "KSplice hotfix for USN-2637-1");
      }
      else
      {
        _ubuntu_report = ksplice_reporting_text();
      }
    }
    
    flag = 0;
    
    if (ubuntu_check(osver:"14.10", pkgname:"linux-image-3.16.0-39-generic", pkgver:"3.16.0-39.53")) flag++;
    if (ubuntu_check(osver:"14.10", pkgname:"linux-image-3.16.0-39-generic-lpae", pkgver:"3.16.0-39.53")) flag++;
    if (ubuntu_check(osver:"14.10", pkgname:"linux-image-3.16.0-39-lowlatency", pkgver:"3.16.0-39.53")) flag++;
    
    if (flag)
    {
      security_report_v4(
        port       : 0,
        severity   : SECURITY_WARNING,
        extra      : ubuntu_report_get()
      );
      exit(0);
    }
    else
    {
      tested = ubuntu_pkg_tests_get();
      if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);
      else audit(AUDIT_PACKAGE_NOT_INSTALLED, "linux-image-3.16-generic / linux-image-3.16-generic-lpae / etc");
    }
    
  • NASL familyFedora Local Security Checks
    NASL idFEDORA_2015-3011.NASL
    descriptionUpdate to latest upstream stable release, Linux v3.18.8. Numerous bugfixes across the tree. Note that Tenable Network Security has extracted the preceding description block directly from the Fedora security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-06-05
    modified2015-03-10
    plugin id81717
    published2015-03-10
    reporterThis script is Copyright (C) 2015-2020 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/81717
    titleFedora 21 : kernel-3.18.8-201.fc21 (2015-3011)
  • NASL familyFedora Local Security Checks
    NASL idFEDORA_2015-3594.NASL
    descriptionThe 3.18.9 stable update contains a number of important fixes across the tree. Update to the latest stable upstream release, Linux v3.18.8. Numerous fixes across the tree. Note that Tenable Network Security has extracted the preceding description block directly from the Fedora security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-06-05
    modified2015-03-17
    plugin id81863
    published2015-03-17
    reporterThis script is Copyright (C) 2015-2020 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/81863
    titleFedora 20 : kernel-3.18.9-100.fc20 (2015-3594)
  • NASL familyScientific Linux Local Security Checks
    NASL idSL_20150915_KERNEL_ON_SL7_X.NASL
    description* A flaw was found in the kernel
    last seen2020-03-18
    modified2015-09-16
    plugin id85960
    published2015-09-16
    reporterThis script is Copyright (C) 2015-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/85960
    titleScientific Linux Security Update : kernel on SL7.x x86_64 (20150915)
  • NASL familyHuawei Local Security Checks
    NASL idEULEROS_SA-2019-1485.NASL
    descriptionAccording to the versions of the kernel packages installed, the EulerOS Virtualization installation on the remote host is affected by the following vulnerabilities : - A flaw was found in the way the Linux kernel
    last seen2020-03-19
    modified2019-05-13
    plugin id124809
    published2019-05-13
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/124809
    titleEulerOS Virtualization 3.0.1.0 : kernel (EulerOS-SA-2019-1485)
  • NASL familyHuawei Local Security Checks
    NASL idEULEROS_SA-2019-1524.NASL
    descriptionAccording to the versions of the kernel packages installed, the EulerOS Virtualization for ARM 64 installation on the remote host is affected by the following vulnerabilities : - In the Linux kernel through 4.19, a use-after-free can occur due to a race condition between fanout_add from setsockopt and bind on an AF_PACKET socket. This issue exists because of the 15fe076edea787807a7cdc168df832544b58eba6 incomplete fix for a race condition. The code mishandles a certain multithreaded case involving a packet_do_bind unregister action followed by a packet_notifier register action. Later, packet_release operates on only one of the two applicable linked lists. The attacker can achieve Program Counter control.(CVE-2018-18559i1/4%0 - The acpi_ns_terminate() function in drivers/acpi/acpica/nsutils.c in the Linux kernel before 4.12 does not flush the operand cache and causes a kernel stack dump. A local users could obtain sensitive information from kernel memory and bypass the KASLR protection mechanism (in the kernel through 4.9) via a crafted ACPI table.(CVE-2017-11472i1/4%0 - Race condition in net/packet/af_packet.c in the Linux kernel allows local users to cause a denial of service (use-after-free) or possibly have unspecified other impact via a multithreaded application that makes PACKET_FANOUT setsockopt system calls.(CVE-2017-6346i1/4%0 - Multiple race conditions in ipc/shm.c in the Linux kernel before 3.12.2 allow local users to cause a denial of service (use-after-free and system crash) or possibly have unspecified other impact via a crafted application that uses shmctl IPC_RMID operations in conjunction with other shm system calls.(CVE-2013-7026i1/4%0 - An issue was discovered in the Linux kernel. A NULL pointer dereference and panic in hfsplus_lookup() in the fs/hfsplus/dir.c function can occur when opening a file (that is purportedly a hard link) in an hfs+ filesystem that has malformed catalog data, and is mounted read-only without a metadata directory.(CVE-2018-14617i1/4%0 - The treo_attach function in drivers/usb/serial/visor.c in the Linux kernel before 4.5 allows physically proximate attackers to cause a denial of service (NULL pointer dereference and system crash) or possibly have unspecified other impact by inserting a USB device that lacks a (1) bulk-in or (2) interrupt-in endpoint.(CVE-2016-2782i1/4%0 - An information-exposure flaw was found in the Linux kernel where the pcpu_embed_first_chunk() function in mm/percpu.c allows local users to obtain kernel-object address information by reading the kernel log (dmesg). However, this address is not static and cannot be used to commit a further attack.(CVE-2018-5995i1/4%0 - Buffer overflow in net/ceph/auth_x.c in Ceph, as used in the Linux kernel before 3.16.3, allows remote attackers to cause a denial of service (memory corruption and panic) or possibly have unspecified other impact via a long unencrypted auth ticket.(CVE-2014-6416i1/4%0 - It was found that the Linux kernel
    last seen2020-03-19
    modified2019-05-14
    plugin id124977
    published2019-05-14
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/124977
    titleEulerOS Virtualization for ARM 64 3.0.1.0 : kernel (EulerOS-SA-2019-1524)
  • NASL familyUbuntu Local Security Checks
    NASL idUBUNTU_USN-2638-1.NASL
    descriptionXiong Zhou discovered a bug in the way the EXT4 filesystem handles fallocate zero range functionality when the page size is greater than the block size. A local attacker could exploit this flaw to cause a denial of service (system crash). (CVE-2015-0275) Wen Xu discovered a use-after-free flaw in the Linux kernel
    last seen2020-06-01
    modified2020-06-02
    plugin id84125
    published2015-06-11
    reporterUbuntu Security Notice (C) 2015-2019 Canonical, Inc. / NASL script (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/84125
    titleUbuntu 15.04 : linux vulnerabilities (USN-2638-1)
  • NASL familyOracle Linux Local Security Checks
    NASL idORACLELINUX_ELSA-2015-1778.NASL
    descriptionFrom Red Hat Security Advisory 2015:1778 : Updated kernel packages that fix multiple security issues and several bugs are now available for Red Hat Enterprise Linux 7. Red Hat Product Security has rated this update as having Important security impact. Common Vulnerability Scoring System (CVSS) base scores, which give detailed severity ratings, are available for each vulnerability from the CVE links in the References section. The kernel packages contain the Linux kernel, the core of any Linux operating system. * A flaw was found in the kernel
    last seen2020-06-01
    modified2020-06-02
    plugin id85958
    published2015-09-16
    reporterThis script is Copyright (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/85958
    titleOracle Linux 7 : kernel (ELSA-2015-1778)
  • NASL familyRed Hat Local Security Checks
    NASL idREDHAT-RHSA-2015-1788.NASL
    descriptionUpdated kernel-rt packages that fix multiple security issues, several bugs, and add various enhancements are now available for Red Hat Enterprise Linux 7. Red Hat Product Security has rated this update as having Important security impact. Common Vulnerability Scoring System (CVSS) base scores, which give detailed severity ratings, are available for each vulnerability from the CVE links in the References section. The kernel-rt packages contain the Linux kernel, the core of any Linux operating system. * A flaw was found in the kernel
    last seen2020-06-01
    modified2020-06-02
    plugin id85980
    published2015-09-17
    reporterThis script is Copyright (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/85980
    titleRHEL 7 : kernel-rt (RHSA-2015:1788)
  • NASL familyRed Hat Local Security Checks
    NASL idREDHAT-RHSA-2015-1778.NASL
    descriptionUpdated kernel packages that fix multiple security issues and several bugs are now available for Red Hat Enterprise Linux 7. Red Hat Product Security has rated this update as having Important security impact. Common Vulnerability Scoring System (CVSS) base scores, which give detailed severity ratings, are available for each vulnerability from the CVE links in the References section. The kernel packages contain the Linux kernel, the core of any Linux operating system. * A flaw was found in the kernel
    last seen2020-06-01
    modified2020-06-02
    plugin id86702
    published2015-11-03
    reporterThis script is Copyright (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/86702
    titleRHEL 7 : kernel (RHSA-2015:1778)
  • NASL familySuSE Local Security Checks
    NASL idOPENSUSE-2015-302.NASL
    descriptionThe Linux kernel was updated to fix bugs and security issues : Following security issues were fixed: CVE-2015-2830: A flaw was found in the way the Linux kernels 32-bit emulation implementation handled forking or closing of a task with an int80 entry. A local user could have potentially used this flaw to escalate their privileges on the system. CVE-2015-2042: A kernel information leak in rds sysctl files was fixed. CVE-2014-9683: Off-by-one error in the ecryptfs_decode_from_filename function in fs/ecryptfs/crypto.c in the eCryptfs subsystem in the Linux kernel allowed local users to cause a denial of service (buffer overflow and system crash) or possibly gain privileges via a crafted filename. CVE-2015-0275: A BUG_ON in ext4 was fixed which could be triggered by local users. CVE-2015-2666: A buffer overflow when loading microcode files into the kernel could be used by the administrator to execute code in the kernel, bypassing secure boot measures. - CVE-2015-1421: Use-after-free vulnerability in the sctp_assoc_update function in net/sctp/associola.c in the Linux kernel allowed remote attackers to cause a denial of service (slab corruption and panic) or possibly have unspecified other impact by triggering an INIT collision that leads to improper handling of shared-key data. - CVE-2015-2150: XSA-120: Guests were permitted to modify all bits of the PCI command register of passed through cards, which could lead to Host system crashes. - CVE-2015-0777: The XEN usb backend could leak information to the guest system due to copying uninitialized memory. - CVE-2015-1593: A integer overflow reduced the effectiveness of the stack randomization on 64-bit systems. - CVE-2014-9419: The __switch_to function in arch/x86/kernel/process_64.c in the Linux kernel did not ensure that Thread Local Storage (TLS) descriptors are loaded before proceeding with other steps, which made it easier for local users to bypass the ASLR protection mechanism via a crafted application that reads a TLS base address. - CVE-2014-9428: The batadv_frag_merge_packets function in net/batman-adv/fragmentation.c in the B.A.T.M.A.N. implementation in the Linux kernel used an incorrect length field during a calculation of an amount of memory, which allowed remote attackers to cause a denial of service (mesh-node system crash) via fragmented packets. - CVE-2014-8160: net/netfilter/nf_conntrack_proto_generic.c in the Linux kernel generated incorrect conntrack entries during handling of certain iptables rule sets for the SCTP, DCCP, GRE, and UDP-Lite protocols, which allowed remote attackers to bypass intended access restrictions via packets with disallowed port numbers. - CVE-2014-9529: Race condition in the key_gc_unused_keys function in security/keys/gc.c in the Linux kernel allowed local users to cause a denial of service (memory corruption or panic) or possibly have unspecified other impact via keyctl commands that trigger access to a key structure member during garbage collection of a key. - CVE-2014-9420: The rock_continue function in fs/isofs/rock.c in the Linux kernel did not restrict the number of Rock Ridge continuation entries, which allowed local users to cause a denial of service (infinite loop, and system crash or hang) via a crafted iso9660 image. - CVE-2014-9584: The parse_rock_ridge_inode_internal function in fs/isofs/rock.c in the Linux kernel did not validate a length value in the Extensions Reference (ER) System Use Field, which allowed local users to obtain sensitive information from kernel memory via a crafted iso9660 image. - CVE-2014-9585: The vdso_addr function in arch/x86/vdso/vma.c in the Linux kernel did not properly choose memory locations for the vDSO area, which made it easier for local users to bypass the ASLR protection mechanism by guessing a location at the end of a PMD. - CVE-2014-8559: The d_walk function in fs/dcache.c in the Linux kernel through did not properly maintain the semantics of rename_lock, which allowed local users to cause a denial of service (deadlock and system hang) via a crafted application. - CVE-2014-8134: The paravirt_ops_setup function in arch/x86/kernel/kvm.c in the Linux kernel used an improper paravirt_enabled setting for KVM guest kernels, which made it easier for guest OS users to bypass the ASLR protection mechanism via a crafted application that reads a 16-bit value. Following bugs were fixed : - powerpc/pci: Fix IO space breakage after of_pci_range_to_resource() change (bnc#922542). - cifs: fix use-after-free bug in find_writable_file (bnc#909477). - usb: Do not allow usb_alloc_streams on unconfigured devices (bsc#920581). - fuse: honour max_read and max_write in direct_io mode (bnc#918954). - switch iov_iter_get_pages() to passing maximal number of pages (bnc#918954). - bcache: fix a livelock in btree lock v2 (bnc#910440) (bnc#910440). Updated because another version went upstream - drm/i915: Initialise userptr mmu_notifier serial to 1 (bnc#918970). - NFS: Don
    last seen2020-06-05
    modified2015-04-14
    plugin id82756
    published2015-04-14
    reporterThis script is Copyright (C) 2015-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/82756
    titleopenSUSE Security Update : Linux Kernel (openSUSE-2015-302)
  • NASL familyCentOS Local Security Checks
    NASL idCENTOS_RHSA-2015-1778.NASL
    descriptionUpdated kernel packages that fix multiple security issues and several bugs are now available for Red Hat Enterprise Linux 7. Red Hat Product Security has rated this update as having Important security impact. Common Vulnerability Scoring System (CVSS) base scores, which give detailed severity ratings, are available for each vulnerability from the CVE links in the References section. The kernel packages contain the Linux kernel, the core of any Linux operating system. * A flaw was found in the kernel
    last seen2020-06-01
    modified2020-06-02
    plugin id86511
    published2015-10-22
    reporterThis script is Copyright (C) 2015-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/86511
    titleCentOS 7 : kernel (CESA-2015:1778)
  • NASL familyRed Hat Local Security Checks
    NASL idREDHAT-RHSA-2015-1787.NASL
    descriptionUpdated kernel-rt packages that fix multiple security issues, several bugs, and add various enhancements are now available for Red Hat Enterprise Linux 7. Red Hat Product Security has rated this update as having Important security impact. Common Vulnerability Scoring System (CVSS) base scores, which give detailed severity ratings, are available for each vulnerability from the CVE links in the References section. The kernel-rt packages contain the Linux kernel, the core of any Linux operating system. * Two flaws were found in the way the Linux kernel
    last seen2020-06-01
    modified2020-06-02
    plugin id85979
    published2015-09-17
    reporterThis script is Copyright (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/85979
    titleRHEL 6 : kernel-rt (RHSA-2015:1787)
  • NASL familyUbuntu Local Security Checks
    NASL idUBUNTU_USN-2635-1.NASL
    descriptionXiong Zhou discovered a bug in the way the EXT4 filesystem handles fallocate zero range functionality when the page size is greater than the block size. A local attacker could exploit this flaw to cause a denial of service (system crash). (CVE-2015-0275) Wen Xu discovered a use-after-free flaw in the Linux kernel
    last seen2020-06-01
    modified2020-06-02
    plugin id84122
    published2015-06-11
    reporterUbuntu Security Notice (C) 2015-2019 Canonical, Inc. / NASL script (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/84122
    titleUbuntu 14.04 LTS : linux-lts-utopic vulnerabilities (USN-2635-1)
  • NASL familyUbuntu Local Security Checks
    NASL idUBUNTU_USN-2636-1.NASL
    descriptionXiong Zhou discovered a bug in the way the EXT4 filesystem handles fallocate zero range functionality when the page size is greater than the block size. A local attacker could exploit this flaw to cause a denial of service (system crash). (CVE-2015-0275) Wen Xu discovered a use-after-free flaw in the Linux kernel
    last seen2020-06-01
    modified2020-06-02
    plugin id84123
    published2015-06-11
    reporterUbuntu Security Notice (C) 2015-2019 Canonical, Inc. / NASL script (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/84123
    titleUbuntu 14.04 LTS : linux-lts-vivid vulnerabilities (USN-2636-1)

Redhat

advisories
  • rhsa
    idRHSA-2015:1778
  • rhsa
    idRHSA-2015:1787
rpms
  • kernel-0:3.10.0-229.14.1.ael7b
  • kernel-0:3.10.0-229.14.1.el7
  • kernel-abi-whitelists-0:3.10.0-229.14.1.ael7b
  • kernel-abi-whitelists-0:3.10.0-229.14.1.el7
  • kernel-bootwrapper-0:3.10.0-229.14.1.ael7b
  • kernel-bootwrapper-0:3.10.0-229.14.1.el7
  • kernel-debug-0:3.10.0-229.14.1.ael7b
  • kernel-debug-0:3.10.0-229.14.1.el7
  • kernel-debug-debuginfo-0:3.10.0-229.14.1.ael7b
  • kernel-debug-debuginfo-0:3.10.0-229.14.1.el7
  • kernel-debug-devel-0:3.10.0-229.14.1.ael7b
  • kernel-debug-devel-0:3.10.0-229.14.1.el7
  • kernel-debuginfo-0:3.10.0-229.14.1.ael7b
  • kernel-debuginfo-0:3.10.0-229.14.1.el7
  • kernel-debuginfo-common-ppc64-0:3.10.0-229.14.1.el7
  • kernel-debuginfo-common-ppc64le-0:3.10.0-229.14.1.ael7b
  • kernel-debuginfo-common-s390x-0:3.10.0-229.14.1.el7
  • kernel-debuginfo-common-x86_64-0:3.10.0-229.14.1.el7
  • kernel-devel-0:3.10.0-229.14.1.ael7b
  • kernel-devel-0:3.10.0-229.14.1.el7
  • kernel-doc-0:3.10.0-229.14.1.ael7b
  • kernel-doc-0:3.10.0-229.14.1.el7
  • kernel-headers-0:3.10.0-229.14.1.ael7b
  • kernel-headers-0:3.10.0-229.14.1.el7
  • kernel-kdump-0:3.10.0-229.14.1.el7
  • kernel-kdump-debuginfo-0:3.10.0-229.14.1.el7
  • kernel-kdump-devel-0:3.10.0-229.14.1.el7
  • kernel-tools-0:3.10.0-229.14.1.ael7b
  • kernel-tools-0:3.10.0-229.14.1.el7
  • kernel-tools-debuginfo-0:3.10.0-229.14.1.ael7b
  • kernel-tools-debuginfo-0:3.10.0-229.14.1.el7
  • kernel-tools-libs-0:3.10.0-229.14.1.ael7b
  • kernel-tools-libs-0:3.10.0-229.14.1.el7
  • kernel-tools-libs-devel-0:3.10.0-229.14.1.ael7b
  • kernel-tools-libs-devel-0:3.10.0-229.14.1.el7
  • perf-0:3.10.0-229.14.1.ael7b
  • perf-0:3.10.0-229.14.1.el7
  • perf-debuginfo-0:3.10.0-229.14.1.ael7b
  • perf-debuginfo-0:3.10.0-229.14.1.el7
  • python-perf-0:3.10.0-229.14.1.ael7b
  • python-perf-0:3.10.0-229.14.1.el7
  • python-perf-debuginfo-0:3.10.0-229.14.1.ael7b
  • python-perf-debuginfo-0:3.10.0-229.14.1.el7
  • kernel-rt-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-debug-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-debug-debuginfo-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-debug-devel-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-debuginfo-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-debuginfo-common-x86_64-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-devel-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-doc-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-firmware-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-trace-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-trace-debuginfo-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-trace-devel-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-vanilla-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-vanilla-debuginfo-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-vanilla-devel-1:3.10.0-229.rt56.161.el6rt
  • kernel-rt-0:3.10.0-229.14.1.rt56.141.13.el7_1
  • kernel-rt-debug-0:3.10.0-229.14.1.rt56.141.13.el7_1
  • kernel-rt-debug-debuginfo-0:3.10.0-229.14.1.rt56.141.13.el7_1
  • kernel-rt-debug-devel-0:3.10.0-229.14.1.rt56.141.13.el7_1
  • kernel-rt-debuginfo-0:3.10.0-229.14.1.rt56.141.13.el7_1
  • kernel-rt-debuginfo-common-x86_64-0:3.10.0-229.14.1.rt56.141.13.el7_1
  • kernel-rt-devel-0:3.10.0-229.14.1.rt56.141.13.el7_1
  • kernel-rt-doc-0:3.10.0-229.14.1.rt56.141.13.el7_1
  • kernel-rt-trace-0:3.10.0-229.14.1.rt56.141.13.el7_1
  • kernel-rt-trace-debuginfo-0:3.10.0-229.14.1.rt56.141.13.el7_1
  • kernel-rt-trace-devel-0:3.10.0-229.14.1.rt56.141.13.el7_1