diff options
author | Luneji <61687883+Luneji@users.noreply.github.com> | 2020-03-02 11:51:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-02 11:51:22 +0100 |
commit | d994b0ff0d48aae65f81ee7f23066cfa6575b3ef (patch) | |
tree | 276d199b3c49db88a0f0891e0696dcf7fec72ac2 | |
parent | 50d987b38131571e57c21c08652b1c8281542ef0 (diff) |
Add files via upload
-rw-r--r-- | script.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/script.sh b/script.sh new file mode 100644 index 0000000..aca8ed0 --- /dev/null +++ b/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 + + + |