From 2d6eb470a3b415907307a758845c5caaf65436b3 Mon Sep 17 00:00:00 2001 From: Masfehico Date: Mon, 2 Mar 2020 12:53:41 +0100 Subject: pic remove and script moved --- analyse/script.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 analyse/script.sh (limited to 'analyse') diff --git a/analyse/script.sh b/analyse/script.sh new file mode 100644 index 0000000..aca8ed0 --- /dev/null +++ b/analyse/script.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +while : +do + + sudo tcpdump -i eth1 -nn -c1 -A src 192.168.52.19 -w capture.pcap + sudo tcpdump -r capture.pcap > grostas + cat grostas | cut -d" " -f1 >> heure.txt + cat grostas | cut -d" " -f2 >> protocole.txt + cat grostas | cut -d" " -f3 >> source.txt + cat grostas | cut -d" " -f5 >> destination.txt + tail -n1 heure.txt + tail -n1 protocole.txt + tail -n1 source.txt + tail -n1 destination.txt +done + + + -- cgit v1.2.3