Skip to content

Instantly share code, notes, and snippets.

@Yneth
Created March 9, 2022 20:18
Show Gist options
  • Save Yneth/61142dcb9776bd68763fbaba62dc8515 to your computer and use it in GitHub Desktop.
Save Yneth/61142dcb9776bd68763fbaba62dc8515 to your computer and use it in GitHub Desktop.
caller="$(ps -o comm= $PPID)"
if [ "dropbear" = "$caller" ]; then
BOT_TOKEN='<YOUR_TOKEN_HERE>'
curl "https://api.telegram.org/bot$BOT_TOKEN/sendMessage" \
-H 'Content-Type: application/json' \
-d "{"\""chat_id"\"": <YOUR_CHAT_ID_HERE>, "\""text"\"": "\""<YOUR_MESSAGE_HERE>"\""}" &> /dev/null
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment