Forum Discussion
bluejacket
Bronze II
5 months agoZeek Ep 4 Scripting
Question 10 "After editing the required file, try to execute the script stated in Question 9 again. How many scans of unique ports are made from the IP address 192.168.100.103?" I don't understan...
- 5 months ago
Got it! I realized I was looking at the wrong output file after solving the question before.
The output file from the zeek script will give the number of unique connections.
YasserSalama
Bronze I
5 months agoTry 🍇
cat conn.log | zeek-cut id.orig_h id.resp_p | awk '$1=="192.168.100.103" {print $2}' | sort -u | wc -l
- bluejacket5 months ago
Bronze II
Thanks for your help. It was less about the filter and more about looking through all the other log outputs outside of conn.log