1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2026-01-20 14:51:33 +01:00
GTFOBins.github.io/_gtfobins/check_log.md

23 lines
518 B
Markdown

---
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
file-write:
- code: |
LFILE=file_to_write
INPUT=output_file
check_log -F $INPUT -O $LFILE
sudo:
- code: |
LFILE=file_to_write
INPUT=output_file
umask 022
sudo check_log -F $INPUT -O $LFILE
---