- 토큰값은 telegram 내 botfather 채널을 통해 봇생성후 발급
- 토큰ID는 해당 봇을 초대한 방의 ID 인데 Get My ID 를 초대하여 발급
import telegram
telegram_token = '5978653330:AAFBbq5TzOVT2ARdUK61dSI0pZl7P8FPxZU'
telegram_id = -676063172
def send_telegram_message(message):
try:
bot = telegram.Bot(telegram_token)
res = bot.sendMessage(chat_id=telegram_id, text=message)
return res
except Exception:
raise
send_telegram_message('EmergingThreat Blacklist IP ''{{vars.Attacker_ip}}'' 12시간 차단(Qurantine)하였습니다.')
'Development' 카테고리의 다른 글
Python - 원격지 SMB 서버에 접속해서 경로 내의 파일경로를 모두 entry 로 저장 (0) | 2023.02.14 |
---|---|
Python - JSON 데이터 내에서 특정 Value 값을 가진 Key 찾아내기 (0) | 2023.02.04 |
Python - Syslog Parsing 후 JSON 으로 정렬하기 예제_re, json (0) | 2023.02.04 |
Python - 이미지를 찾아 화면 클릭하기예제_pyautogui random time_이때 랜덤을 활용해 클릭갭, 이미지 내 랜덤좌표 클릭 수행 (0) | 2023.02.04 |
Python - paramiko, csv, invoke_shell 을 사용해 원격지 서버로 SSH 명령어를 전송하고 CSV 파일로 내역을 저장하는 예제 (0) | 2023.02.04 |