diff --git a/programming_and_scripting_for_cybersecurity/exploitation/basic_ipv6_scapy_packet.py b/programming_and_scripting_for_cybersecurity/exploitation/basic_ipv6_scapy_packet.py new file mode 100644 index 0000000..243444f --- /dev/null +++ b/programming_and_scripting_for_cybersecurity/exploitation/basic_ipv6_scapy_packet.py @@ -0,0 +1,10 @@ +from scapy.all import * + +# create the packet +packet = IP(src="10.1.1.2", dst="10.3.2.88")/TCP(dport=445) + +# send the packet +send(packet) + +# You can also use sr() function for sending and receiving packet at the same time. +# ans, unans = sr(packet, timeout=2)