You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
527 B

#!/usr/bin/env bash
USERNAME="${CORPUSER}"
PASS="${CORPPASS}"
PASSCOMMAND="${CORPPASSCOMMAND}"
get_username(){
if [ -z "$USERNAME" ]; then
read -p "Corp Username: " USERNAME < /dev/tty
fi
echo $USERNAME
return 0
}
get_password(){
if [ -z "$PASS" ]; then
if [ -n "$CORPPASSCOMMAND" ]; then
PASS=$(eval $PASSCOMMAND)
else
read -p "Corp Password: " -s PASS < /dev/tty
fi
fi
echo $PASS
return 0
}
username=""
password="$(get_password)"
curl --ntlm --negotiate -u "$(get_username):$(get_password)" "$@"