Created
March 9, 2022 20:18
-
-
Save Yneth/61142dcb9776bd68763fbaba62dc8515 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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