Update packet.py
typo
This commit is contained in:
parent
1db7abed3e
commit
ab37c20ba5
1 changed files with 0 additions and 3 deletions
|
@ -1,6 +1,5 @@
|
||||||
from scapy.all import sendp, Ether, IP, UDP
|
from scapy.all import sendp, Ether, IP, UDP
|
||||||
|
|
||||||
# Define the parameters
|
|
||||||
destination_ip = '255.255.255.255'
|
destination_ip = '255.255.255.255'
|
||||||
source_ip = '192.168.1.121'
|
source_ip = '192.168.1.121'
|
||||||
source_mac = '8c:16:45:68:54:80'
|
source_mac = '8c:16:45:68:54:80'
|
||||||
|
@ -8,8 +7,6 @@ destination_mac = 'ff:ff:ff:ff:ff:ff' # Broadcast MAC address
|
||||||
source_port = 14236
|
source_port = 14236
|
||||||
destination_port = 14235
|
destination_port = 14235
|
||||||
|
|
||||||
# Construct the packet with Ethernet layer
|
|
||||||
packet = Ether(src=source_mac, dst=destination_mac) / IP(src=source_ip, dst=destination_ip) / UDP(sport=source_port, dport=destination_port)
|
packet = Ether(src=source_mac, dst=destination_mac) / IP(src=source_ip, dst=destination_ip) / UDP(sport=source_port, dport=destination_port)
|
||||||
|
|
||||||
# Send the packet at layer 2 (Ethernet layer)
|
|
||||||
sendp(packet)
|
sendp(packet)
|
||||||
|
|
Loading…
Reference in a new issue