����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/bin/bash
# Performs arping to gateway from all IP's
source /etc/profile
gateway="$(route -n|awk '$4 == "UG" {print$2}')"
log="/opt/postupcp/run_arping.log"
echo "----$(date)----" >> $log
do_arping() {
sleeptime=$(( ( $RANDOM % 300 ) + 1 ))
echo "Sleeping for $sleeptime seconds" >> $log
sleep $sleeptime
for ip in $(ip -f inet a | awk -F'[ /]' '/inet.*global/ {print $6}');do
arping -c 1 -w 1 -s $ip $gateway >> $log
done
}
do_arping
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Modules.pm | File | 16.74 KB | 0644 |
|
| run_arping | File | 445 B | 0755 |
|
| run_arping.log | File | 847 B | 0644 |
|