Skip to content

Latest commit

 

History

History
53 lines (33 loc) · 1.22 KB

Task 8 [Day 2] Log analysis O Data, All Ye Faithful.md

File metadata and controls

53 lines (33 loc) · 1.22 KB

Task 8 [Day 2] Log analysis O Data, All Ye Faithful


Screenshot 2023-12-20 at 10 53 18 PM

Once the machine is up Proceed to the "Workbook.ipynb" Notebook, which can be found on the VM at 4_Capstone.

Questions:

Screenshot 2023-12-20 at 9 46 05 PM

How many packets were captured (looking at the PacketNumber)?

Code: df.count()

ANSWER

100

Screenshot 2023-12-20 at 9 49 00 PM

What IP address sent the most amount of traffic during the packet capture?

Code: df.groupby(['Source']).size()

ANSWER

10.10.1.4

Screenshot 2023-12-20 at 9 51 33 PM

What was the most frequent protocol?

Code: df.groupby(['Protocol']).size().sort_values

ANSWER

ICMP