17 lines
311 B
Bash
Executable File
17 lines
311 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -f .env ]; then
|
|
source .env
|
|
else
|
|
echo .env file not found, using env
|
|
fi
|
|
|
|
while true; do
|
|
|
|
curl 'https://faisanet.mib.com.mv/aProfile/keepAlive' \
|
|
-X 'POST' \
|
|
-H "cookie: prefTheme=1; ql_0=${QL_0}; IBSID=${IBSID}; dashboardStatsMode=1; _zwaf_ua=Brave; time-tracker=600"
|
|
|
|
sleep 30
|
|
done
|