Difference between revisions of "IDS: cicflowmeter.py"

From OnnoWiki
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
Installation
 
Installation
  
apt install python-is-python3
+
  git clone https://github.com/datthinh1801/cicflowmeter.git
cd /usr/local/src/
 
  git clone https://gitlab.com/hieulw/cicflowmeter
 
 
  cd cicflowmeter
 
  cd cicflowmeter
  python setup.py install
+
  python3 setup.py install
  
or
 
 
pip install cicflowmeter
 
  
 
Usage
 
Usage

Latest revision as of 11:42, 21 April 2022

Installation

git clone https://github.com/datthinh1801/cicflowmeter.git
cd cicflowmeter
python3 setup.py install


Usage

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


Sniff packets real-time from interface to flow csv: (need root permission)

cicflowmeter -i enp0s3 -c flows.csv


Convert pcap file to flow csv:

tcpdump -i enp0s3 -s 65535 -w hasil-capture.pcap
cicflowmeter -f hasil-capture.pcap -c flows.csv


Referensi