Challenge Information
- Advent of Cyber Day 2
- THM link here
Explanation
This challenge is about analyzing information from excel file with python Pandas and Matplotlib library.
Question 1: How many packets were captured (looking at the PacketNumber)?
Just run the code from example
Question 2: What IP address sent the most amount of traffic during the packet capture?
Modify the example COlumnName
to Source
as this will be the IP address that send packet.
Question 3: What was the most frequent protocol?
The code is search online after failing for a few times.
Things I learned from the challenge
- Some python basic