But what if you don't have an associated alert or Bro log entry? Or if you're doing pcap on some system that's not as user-friendly as Security Onion, but nonetheless supports rolling captures?
The way I usually do this is with find and xargs. Here's an example of my most common workflow, using timestamps as the filtering criteria for find:
> find . -newerct "16:07" ! -newerct "16:10" | xargs -I {} tcpdump -r {} -w /tmp/{} host 8.8.8.8
> cd /tmp
> mergecap -w merged.pcap *.pcap
Translated:
- Find all files in the current directory created after 16:07 but not created after 16:10. This requires GNU find 4.3.3 or later. It supports many different time and date formats.
- Using xargs, filter each file with the "host 8.8.8.8" BPF expression and write it to /tmp with the same filename.
- Merge all the .pcap files in /tmp into merged.pcap.
9 comments:
Caught this on the SO mailing list. I had a shell script to automate some of this but the pulling of the information from the multiple snort files wasn't as nice as yours. thanks
https://github.com/theflakes/security-onion-misc-scripts/blob/master/getPcap.sh
Thanks for sharing! I've been trying to figure out how to do this!
I don't know how to extract traffic from rolling captures. I have read many blogs about this but I didn't understood well. After reading this post, I easily understood it very well.
really awesome blog
hr interview questions
hibernate interview questions
selenium interview questions
c interview questions
c++ interview questions
linux interview questions
Hi There,
Great post. Well though out. This piece reminds me when I was starting out Loopback Mountain Key after graduating from college.
I am working LDPC encoding and decoding for mini project work. With my effort I have completed LDPC encoding but struggling with LDPC decoding. I need to complete this project complete this project within short period so please help me.
I don`t know how to start decoding algorithm in C language but i do have algorithm. So, can anyone help me in writing C language for decoding procedure.
Thank you very much and will look for more postings from you.
Thank you,
John
Good information
best android training center in Marathahalli
best android development institute in Marathahalli
android training institutes in Marathahalli
ios training in Marathahalli
android training in Marathahalli
mobile app development training in Marathahalli
I am really glad I’ve found this information.A good web site with interesting contentYour blog have nice informationI am very grateful for sharing such information.
More interesting info you can view here
Thanks for this blog. Keep posting more such blogs!
Top 10 Content Marketing Companies in Chennai-2023 Review
Top 10 PPC Companies in Coimbatore – 2023 Review
Top 10 Content Marketing Companies in Coimbatore – 2023 Review
Top 10 Search Engine Marketing Companies in Chennai- 2023 Review
Post a Comment