From 77356e20c0278fa9b99dfe9955b92a8841eeec14 Mon Sep 17 00:00:00 2001 From: V4bel-theori Date: Tue, 17 Dec 2024 20:33:57 -0500 Subject: [PATCH] fix: typos in exploit.md --- pocs/linux/kernelctf/CVE-2024-50264_lts_cos/docs/exploit.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pocs/linux/kernelctf/CVE-2024-50264_lts_cos/docs/exploit.md b/pocs/linux/kernelctf/CVE-2024-50264_lts_cos/docs/exploit.md index c87d2155..4113f776 100755 --- a/pocs/linux/kernelctf/CVE-2024-50264_lts_cos/docs/exploit.md +++ b/pocs/linux/kernelctf/CVE-2024-50264_lts_cos/docs/exploit.md @@ -200,7 +200,7 @@ int vsock_assign_transport(struct vsock_sock *vsk, struct vsock_sock *psk) } } - ret = new_transport->init(vsk, psk); // [0.4] When ->init() is called, vsk->trans gets overwritten. + ret = new_transport->init(vsk, psk); // [0.4] When ->init() is called, vsk->trans gets overwritten if (ret) { module_put(new_transport->module); return ret; @@ -259,7 +259,7 @@ void virtio_transport_recv_pkt(struct virtio_transport *t, virtio_transport_recv_connected(sk, skb); break; case TCP_CLOSING: - virtio_transport_recv_disconnecting(sk, skb); // [0.7] When this is called, a null-ptr-deref occurs. + virtio_transport_recv_disconnecting(sk, skb); // [0.7] When this is called, a null-ptr-deref occurs kfree_skb(skb); break; default: