GTFOBins.github.io/_gtfobins/check_log.md

22 lines
498 B
Markdown
Raw Normal View History

2020-11-12 14:21:00 +01:00
---
description: |
This is the `check_log` Nagios plugin, available e.g. in `/usr/lib/nagios/plugins/`.
functions:
file-read:
- code: |
LFILE=file_to_read
OUTPUT=output_file
check_log -F $LFILE -O $OUTPUT
cat $OUTPUT
2020-11-12 14:21:00 +01:00
file-write:
- code: |
LFILE=file_to_write
2020-12-20 19:53:16 +01:00
INPUT=input_file
check_log -F $INPUT -O $LFILE
2020-11-12 14:21:00 +01:00
sudo:
- code: |
LFILE=file_to_write
2020-12-20 19:53:16 +01:00
INPUT=input_file
sudo check_log -F $INPUT -O $LFILE
2020-11-12 14:21:00 +01:00
---