
Source code description
Change the bonus refund private key and monitor recharge address/application/index/controller/wxpay.php
The refund address and private key are configured on lines 25 and 26
The monitoring recharge game address should be configured after 200 lines. Find out the specific location yourself. It is all in the file wxpay.php
transfer function
#!/ bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/local/bin:/usr/sbin
step=5 #The number of seconds between the interval cannot be greater than 10
for (( i = 0; i < 60; i=(i+step) )); do
curl http://xxx/index/wpay/auto_transfer3
curl http://xxx/index/wpay/auto_transfer2
curl http://xxx/index/wpay/auto_transfer1
sleep $step
done
exit 0
Monitor collection
#!/ bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/local/bin:/usr/sbin
step=3 #The number of seconds between the interval, cannot be greater than 10
for (( i = 0; i < 60; i=(i+step) )); do
curl http://xxx/index/wpay/index3
curl http://xxx/index/wpay/index2
curl http://xxx/index/wpay/index1
sleep $step
done
exit 0
xxx Change your domain name
There are
index3 Single and Double
index2 Mantissa
index1 Ox
Comments0