Last active
November 6, 2024 14:26
-
-
Save matriphe/9a51169508f266d97313 to your computer and use it in GitHub Desktop.
Bash Script to notify via Telegram Bot API when user log in SSH
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
# save it as /etc/profile.d/ssh-telegram.sh | |
# use jq to parse JSON from ipinfo.io | |
# get jq from here http://stedolan.github.io/jq/ | |
USERID="<target_user_id>" | |
KEY="<bot_private_key>" | |
TIMEOUT="10" | |
URL="https://api.telegram.org/bot$KEY/sendMessage" | |
DATE_EXEC="$(date "+%d %b %Y %H:%M")" | |
TMPFILE='/tmp/ipinfo-$DATE_EXEC.txt' | |
if [ -n "$SSH_CLIENT" ]; then | |
IP=$(echo $SSH_CLIENT | awk '{print $1}') | |
PORT=$(echo $SSH_CLIENT | awk '{print $3}') | |
HOSTNAME=$(hostname -f) | |
IPADDR=$(hostname -I | awk '{print $1}') | |
curl http://ipinfo.io/$IP -s -o $TMPFILE | |
CITY=$(cat $TMPFILE | jq '.city' | sed 's/"//g') | |
REGION=$(cat $TMPFILE | jq '.region' | sed 's/"//g') | |
COUNTRY=$(cat $TMPFILE | jq '.country' | sed 's/"//g') | |
ORG=$(cat $TMPFILE | jq '.org' | sed 's/"//g') | |
TEXT="$DATE_EXEC: ${USER} logged in to $HOSTNAME ($IPADDR) from $IP - $ORG - $CITY, $REGION, $COUNTRY on port $PORT" | |
curl -s --max-time $TIMEOUT -d "chat_id=$USERID&disable_web_page_preview=1&text=$TEXT" $URL > /dev/null | |
rm $TMPFILE | |
fi |
Hi! Cool script. Is there a way to get a notification when an IP address establish a connection to a specific port?
Hi, how to get each parameter in seprate line ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I made a fork that ditches
jq
forawk
(it's not compiled for arm, so it didn't work on a Raspberry Pi).Also added a note that you can get your
$USERID
from https://t.me/get_id_bot.https://gist.github.com/zamber/88ef4f62632375c27b06d33295e68f73