Changed Readme

This commit is contained in:
Unic-X
2023-06-18 14:25:22 +05:30
parent ec284f6ee6
commit 9d2e668f86
4 changed files with 3 additions and 3 deletions

View File

@@ -10,11 +10,11 @@ PacketBreeze aims to:
Additionally, PacketBreeze also categorizes packets into flows and shows a rich ensemble of flow data and statistics. Additionally, PacketBreeze also categorizes packets into flows and shows a rich ensemble of flow data and statistics.
| <img width="1559" alt="Packetbreeze-flows" src="https://user-images.githubusercontent.com/26308648/165219276-e9c9a99a-1bc1-40c9-bfaa-779b6380ae67.png"> | | <img width="1559" alt="Packetbreeze-flows" src="assets/images/packetbreeze.png"> |
|:--:| |:--:|
| *PacketBreeze takes packets and returns file with statistics of flows.* | | *PacketBreeze takes packets and returns file with statistics of flows.* |
| <img width="1559" alt="Packetbreeze-flowsClassification" src="https://user-images.githubusercontent.com/26308648/165219569-42a84939-8c28-4b70-b864-f4980c3ee27d.png"> | <img width="1559" alt="Packetbreeze-flowsClassification" src="assets/images/overall.png">
|:--:| |:--:|
| *Packetbreeze takes packets and returns file with statistics of flows and classifies packets as benign or malicious.* | | *Packetbreeze takes packets and returns file with statistics of flows and classifies packets as benign or malicious.* |

BIN
assets/images/overall.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

View File

@@ -17,7 +17,7 @@ func packetCollect() {
done := make(chan struct{}) // signal channel done := make(chan struct{}) // signal channel
// Command line arguments. // Command line arguments.
ifLiveCapturePtr := flag.Bool("ifLiveCapture", true, "a bool") ifLiveCapturePtr := flag.Bool("ifLiveCapture", false, "a bool")
filenamePtr := flag.String("fname", "foo", "a string") filenamePtr := flag.String("fname", "foo", "a string")
maxNumPacketsPtr := flag.Int("maxNumPackets", 42, "an int") maxNumPacketsPtr := flag.Int("maxNumPackets", 42, "an int")
ifLocalIPKnownPtr := flag.Bool("ifLocalIPKnown", false, "a bool") ifLocalIPKnownPtr := flag.Bool("ifLocalIPKnown", false, "a bool")