您好,登錄后才能下訂單哦!
今天分享一個使用shell腳本實現域名有效期的監控
不喜歡開場白,還是直接上干貨...
#!/bin/bash
#檢測域名是否過期
#作者:xuexiaobai@shell.com
#日期:20200224
#版本:v0.1
#當前日期時間戳,用于和域名的到期時間做比較
currentTimestamp=`date +%s`
#檢測whois命令是否存在,不存在則安裝whois包
isInstallWhois()
{
which whois >/dev/null 2>/dev/null
if [ $? -ne 0 ]
then
yum install -y whois || apt-get install whois -y
fi
}
notify()
{
expiredate=`whois $1 |grep 'Registry Expiry Date' |awk '{print $4}' |cut -d 'T' -f 1`
#上面的$1代表域名,遍歷循環出來的。
#如果e_d的值為空,則過濾關鍵詞'Expiration Time'
if [ -z "$expiredate" ]
then
expiredate=`whois $1|grep 'Expiration Time' |awk '{print $3}'`
fi
#將域名過期的日期轉化為時間戳
expiredatestamp=`date -d $expiredate +%s`
#計算半個月一共有多少秒
# 15d 1296000 30d 2592000 35d 3024000 40d 3456000
n=2592000
timeBeforce=$[$expiredatestamp - $n] #過期時間15d以前的時間戳
timeAfter=$[$expiredatestamp + $n] #過期時間15d以后的時間戳
if [ $currentTimestamp -ge $timeBeforce ] && [ $currentTimestamp -lt $expiredatestamp ]
then
curl -X POST \
-H 'Content-type: application/json' \
--data '{"text":":warning:Domain '$1' will to be expired less then 15d. And domain '$1' expire date is '$expiredate' @xuexiaobai"}' \
https://hooks.slack.com/services/*****/xxxxxxx/qqqqqqqqqqqqqqqqqqqqqq
fi
if [ $currentTimestamp -ge $expiredatestamp ]
then
curl -X POST \
-H 'Content-type: application/json' \
--data '{
"text":":interrobang:Domain '$1' has been expired. And domain '$1' expire date is '$expiredate' @xuexiaobai"}' \
https://hooks.slack.com/services/*****/xxxxxxx/qqqqqqqqqqqqqqqqqqqqqq
fi
}
#檢測上次運行的whois查詢進程是否存在
#若存在,需要殺死進程,以免影響本次腳本執行
if pgrep whois &>/dev/null
then
killall -9 whois
fi
isInstallWhois
for d in baidu.com google.com
do
notify $d
done
以上腳本需要注意幾個地方:
n
變量免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。