From 00902fc03515b1f4cff2351d71e4d865da008e56 Mon Sep 17 00:00:00 2001 From: Emanuel Duss Date: Thu, 12 Nov 2020 14:21:00 +0100 Subject: [PATCH] New command: check_statusfile --- _gtfobins/check_statusfile.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 _gtfobins/check_statusfile.md diff --git a/_gtfobins/check_statusfile.md b/_gtfobins/check_statusfile.md new file mode 100644 index 0000000..1812112 --- /dev/null +++ b/_gtfobins/check_statusfile.md @@ -0,0 +1,17 @@ +--- +description: | + This is the `check_statusfile` Nagios plugi plugin, available e.g. in `/usr/lib/nagios/plugins/`. The read file content is limited to the first line. +functions: + file-read: + - code: | + LFILE=file_to_read + check_statusfile "$LFILE" + suid: + - code: | + LFILE=file_to_read + ./check_statusfile "$LFILE" + sudo: + - code: | + LFILE=file_to_read + sudo check_statusfile "$LFILE" +---