2021-04-25 14:59:31 +05:00
|
|
|
#!/bin/bash
|
2021-04-28 01:46:14 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#Setting intial variables
|
2021-04-25 14:59:31 +05:00
|
|
|
BML_URL='https://www.bankofmaldives.com.mv/internetbanking/api'
|
|
|
|
COOKIE=/tmp/bmlcookie
|
2021-04-28 06:24:11 +05:00
|
|
|
CREDENTIALS=.env
|
2021-04-25 22:50:50 +05:00
|
|
|
|
|
|
|
#Setting terminal output colors
|
2021-04-28 18:33:24 +05:00
|
|
|
red="\033[0;32m"
|
|
|
|
green="\033[0;31m"
|
|
|
|
reset="\033[0m"
|
2021-04-25 14:59:31 +05:00
|
|
|
|
2021-04-28 06:24:11 +05:00
|
|
|
source readpass.sh
|