An open API service indexing awesome lists of open source software.

https://github.com/nagy/denoise-pcap

Filtering Internet background noise from network captures
https://github.com/nagy/denoise-pcap

network pcap

Last synced: 5 months ago
JSON representation

Filtering Internet background noise from network captures

Awesome Lists containing this project

README

          

#+title: Denoise PCAP
#+author: Daniel Nagy
#+startup: noinlineimages content
#+options: html-postamble:nil toc:nil

Internet Background Noise is a term that identifies packets between
interconnected networks, which are not both parties intent to this
communication. This can include port scans and misconfigured devices. Persisting
and analyzing this noise in a file of captured packets, can burden the workflow
of forensic analysts because clearer communication flow are obstructed.

* Installation
In the directory of the prebuilt artifacts, there is a =denoise_pcap= executable
file. You can install that somewhere into your =PATH=, for example in
=/usr/bin/=.
* Usage
#+begin_src sh
denoise_pcap [filter]
#+end_src
The default =filter= is =is_noise=, which should provide a sensible default set.
To get a list of other filters, run:
#+begin_src sh
denoise_pcap --list
#+end_src
* Custom Filter
To write your own filters, you have to write them in a separate file and put that on your =PYTHONPATH=:
#+begin_src sh
cat > /tmp/mymodule.hy <