start hw2

This commit is contained in:
David Westgate 2024-04-25 17:47:30 -07:00
parent 4566b10a30
commit 262c186ef7
2 changed files with 9 additions and 0 deletions

1
hw2/README.md Normal file
View File

@ -0,0 +1 @@
Todo

8
hw2/script.sh Normal file
View File

@ -0,0 +1,8 @@
#!/bin/sh
#Perform a tcpdump capture where you only capture DNS packets.
sudo tcpdump -c 10 -ttt 'tcp port 53 or udp port 53'
#Perform a tcpdump capture where you capture TCP packets that are destined for either port 443 or 8080, and originate from your computer.
#Perform a tcpdump capture where traffic is either UDP or TCP, is inbound to your computer, and destined for a port between 20000 and 35000.