diff --git a/_gtfobins/check_cups.md b/_gtfobins/check_cups.md new file mode 100644 index 0000000..841ec51 --- /dev/null +++ b/_gtfobins/check_cups.md @@ -0,0 +1,17 @@ +--- +description: | + This is the `check_cups` Nagios 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_cups --extra-opts=@"$LFILE" + suid: + - code: | + LFILE=file_to_read + ./check_cups --extra-opts=@"$LFILE" + sudo: + - code: | + LFILE=file_to_read + sudo check_cups --extra-opts=@"$LFILE" +---