-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKG-INFO
64 lines (49 loc) · 1.9 KB
/
PKG-INFO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Metadata-Version: 2.1
Name: cicflowmeter
Version: 0.1.6
Summary: CICFlowMeter V3 Python Implementation
Home-page: https://gitlab.com/hieulw/cicflowmeter
Author: Le Hieu
Author-email: [email protected]
License: MIT
Description:
# Python CICFlowMeter
### Installation
```sh
git clone https://gitlab.com/hieulw/cicflowmeter
cd cicflowmeter
python setup.py install
```
or
```sh
pip install cicflowmeter
```
### Usage
```sh
usage: cicflowmeter [-h] (-i INPUT_INTERFACE | -f INPUT_FILE) [-c] [-u URL_MODEL] output
positional arguments:
output output file name (in flow mode) or directory (in sequence mode)
optional arguments:
-h, --help show this help message and exit
-i INPUT_INTERFACE capture online data from INPUT_INTERFACE
-f INPUT_FILE capture offline data from INPUT_FILE
-c, --csv, --flow output flows as csv
```
Convert pcap file to flow csv:
```
cicflowmeter -f example.pcap -c flows.csv
```
Sniff packets real-time from interface to flow csv: (**need root permission**)
```
cicflowmeter -i eth0 -c flows.csv
```
### Reference: https://www.unb.ca/cic/research/applications.html#CICFlowMeter
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.7.0
Description-Content-Type: text/markdown