update scripts

This commit is contained in:
2024-11-15 22:00:09 +01:00
parent eb97ca67da
commit 3e1acd6282
33 changed files with 768 additions and 19 deletions

6
Blatt02/scripts/208.py Normal file
View File

@@ -0,0 +1,6 @@
from scapy.all import *
def packet_callback(packet):
print(packet.summary())
sniff(iface="eth1", prn=packet_callback, count=10)