diff --git a/README.md b/README.md index a2b91e4..19045e0 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,11 @@ PacketBreeze aims to: Additionally, PacketBreeze also categorizes packets into flows and shows a rich ensemble of flow data and statistics. -| Packetbreeze-flows | +| Packetbreeze-flows | |:--:| | *PacketBreeze takes packets and returns file with statistics of flows.* | -| Packetbreeze-flowsClassification +| Packetbreeze-flowsClassification |:--:| | *Packetbreeze takes packets and returns file with statistics of flows and classifies packets as benign or malicious.* | diff --git a/assets/images/overall.png b/assets/images/overall.png new file mode 100644 index 0000000..859b150 Binary files /dev/null and b/assets/images/overall.png differ diff --git a/assets/images/packetbreeze.png b/assets/images/packetbreeze.png new file mode 100644 index 0000000..d61cfe3 Binary files /dev/null and b/assets/images/packetbreeze.png differ diff --git a/pkg/packetbreeze.go b/pkg/packetbreeze.go index 5e7aecd..4d08b48 100644 --- a/pkg/packetbreeze.go +++ b/pkg/packetbreeze.go @@ -17,7 +17,7 @@ func packetCollect() { done := make(chan struct{}) // signal channel // Command line arguments. - ifLiveCapturePtr := flag.Bool("ifLiveCapture", true, "a bool") + ifLiveCapturePtr := flag.Bool("ifLiveCapture", false, "a bool") filenamePtr := flag.String("fname", "foo", "a string") maxNumPacketsPtr := flag.Int("maxNumPackets", 42, "an int") ifLocalIPKnownPtr := flag.Bool("ifLocalIPKnown", false, "a bool")