From d27842fa4e4756937fc2a706ec93ff7da1fbd1d4 Mon Sep 17 00:00:00 2001 From: Manuel Friedli Date: Tue, 23 Jun 2020 03:10:12 +0200 Subject: [PATCH] cleanup --- ddos-mitigator/http-lister.sh | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100755 ddos-mitigator/http-lister.sh diff --git a/ddos-mitigator/http-lister.sh b/ddos-mitigator/http-lister.sh deleted file mode 100755 index c1977e4..0000000 --- a/ddos-mitigator/http-lister.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -input_files=/var/log/apache2/access_*.log -tmpdir=$(mktemp -d) - -cd "${tmpdir}" -netstat -nat |grep 94.199.214.20:443|tr -s '[:blank:]'|cut -d' ' -f5|cut -d: -f1 | sort > raw-http.txt - -uniq -c raw-http.txt | sort -n > sorted-http.txt -cut -d. -f1-3 raw-http.txt | sort | uniq -c | sort -n > sorted-http-24.txt -cut -d. -f1-2 raw-http.txt | sort | uniq -c | sort -n > sorted-http-16.txt -cut -d. -f1 raw-http.txt | sort | uniq -c | sort -n > sorted-http-8.txt - -echo "Have fun in ${tmpdir}!"