tips:fail2ban

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
tips:fail2ban [2019/04/15 09:03] – [jail] scipiotips:fail2ban [2019/04/15 09:04] (current) – [telegram action] scipio
Line 96: Line 96:
  
  
- 
- 
- 
- 
- 
-<file bash /etc/fail2ban/scripts/telegram.sh> 
-#!/bin/bash                                                                                                                                    
-                                                                                                                                               
-# Sends text messages using Telegram                                                                                                           
-# to alert webmaster of banning.                                                                                                               
-                                                                                                                                               
-# Require one argument, one of the following                                                                                                   
-# start                                                                                                                                        
-# stop                                                                                                                                         
-# ban                                                                                                                                          
-# unban                                                                                                                                        
-# Optional second argument: Ip for ban/unband                                                                                                  
-                                                                                                                                               
-                                                                                                                                               
-# Display usage information                                                                                                                    
-function show_usage {                                                                                                                          
-  echo "Usage: $0 action <ip>"                                                                                                                 
-  echo "Where action start, stop, ban, unban" 
-  echo "and IP is optional passed to ban, unban" 
-  exit 
-} 
- 
- 
-# Send notification 
-function send_msg { 
-  apiToken= 
-  chatId= 
-  url="https://api.telegram.org/bot$apiToken/sendMessage" 
- 
-  curl -s -X POST $url -d chat_id=$chatId -d text="$1" 
-  exit 
-} 
- 
-# Check for script arguments 
-if [ $# -lt 1 ] 
-then 
-  show_usage 
-fi 
- 
- 
-# Take action depending on argument 
-if [ "$1" = 'start' ] 
-then 
-  msg='Fail2ban+just+started.' 
-  send_msg $msg 
-elif [ "$1" = 'stop' ] 
-then 
-  msg='Fail2ban+just+stoped.' 
-  send_msg $msg 
-elif [ "$1" = 'ban' ] 
-then 
-  msg=$([ "$2" != '' ] && echo "Fail2ban+just+banned+$2" || echo 'Fail2ban+just+banned+an+ip.' ) 
-  send_msg $msg 
-elif [ "$1" = 'unban' ] 
-then 
-  msg=$([ "$2" != '' ] && echo "Fail2ban+just+unbanned+$2" || echo "Fail2ban+just+unbanned+an+ip." ) 
-  send_msg $msg 
-else 
-  show_usage 
-fi 
- 
-</file> 
  
  
  • tips/fail2ban.1555311811.txt.gz
  • Last modified: 2019/04/15 09:03
  • by scipio