summaryrefslogtreecommitdiff
path: root/local
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2018-06-18 14:54:40 +0000
committerIan C <ianc@noddybox.co.uk>2018-06-18 14:54:40 +0000
commitface2041df7c38f61752f74773b9bcd6468aff0e (patch)
tree9c8b004ecb1e03be4b1affa0dd2abb1eb37f33ca /local
parent8913593b1eaba7064f8e7254297649eee832dd53 (diff)
Removed old local scripts.
Diffstat (limited to 'local')
-rwxr-xr-xlocal/checkauth.sh1
-rwxr-xr-xlocal/listaccounts.sh1
-rwxr-xr-xlocal/listauth.sh1
-rwxr-xr-xlocal/sslcheck.sh4
4 files changed, 0 insertions, 7 deletions
diff --git a/local/checkauth.sh b/local/checkauth.sh
deleted file mode 100755
index a711830..0000000
--- a/local/checkauth.sh
+++ /dev/null
@@ -1 +0,0 @@
-grep -E -v 'session (opened|closed) for user ' /var/log/auth.log
diff --git a/local/listaccounts.sh b/local/listaccounts.sh
deleted file mode 100755
index 4d1a186..0000000
--- a/local/listaccounts.sh
+++ /dev/null
@@ -1 +0,0 @@
-checkauth.sh | grep "Failed password for .* $1" | awk '{print $11}' | sort | uniq -c | sort -n | more
diff --git a/local/listauth.sh b/local/listauth.sh
deleted file mode 100755
index 83b68d4..0000000
--- a/local/listauth.sh
+++ /dev/null
@@ -1 +0,0 @@
-grep "session opened for user" /var/log/auth.log | awk '{print $11}' | sort | uniq -c
diff --git a/local/sslcheck.sh b/local/sslcheck.sh
deleted file mode 100755
index f04a6ec..0000000
--- a/local/sslcheck.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-grep "Failed password for invalid user " /var/log/auth.log | \
- awk '{print $13}' | sort | uniq -c | sort -n