17 lines
395 B
Bash
17 lines
395 B
Bash
#!/bin/bash
|
|
|
|
set $SSH_ORIGINAL_COMMAND
|
|
|
|
case "$1" in
|
|
rsync)
|
|
;;
|
|
*)
|
|
logger -s -t restricted-command -- "Invalid command $@"
|
|
echo "An attempt was made to utilize the private key on a KNEL managed server to access control and execute the following command: $@" | mail -s "SECURITY BREACH ON control for slack account: $USER" BREACHPAGEEMAIL
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exec "$@"
|
|
|