mib-payment-verify/keepalive.sh

13 lines
240 B
Bash
Raw Normal View History

2024-10-19 01:02:21 +05:00
#!/bin/bash
while true; do
source .env
curl 'https://faisanet.mib.com.mv/aProfile/keepAlive' \
-X 'POST' \
2024-10-19 02:03:16 +05:00
-H "cookie: prefTheme=1; ql_0=${QL_0}; IBSID=${IBSID}; dashboardStatsMode=1; _zwaf_ua=Brave; time-tracker=600"
2024-10-19 01:02:21 +05:00
2024-10-19 02:03:16 +05:00
sleep 30
2024-10-19 01:02:21 +05:00
done