17 lines
306 B
Bash
Executable File
17 lines
306 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$#" -ne 2 ]; then
|
|
echo "Usage: ./login_user.sh <username> <password>"
|
|
exit 1
|
|
fi
|
|
|
|
USERNAME="$1"
|
|
PASSWORD="$2"
|
|
|
|
curl -X POST \
|
|
-H "Content-Type: application/x-www-form-urlencoded" \
|
|
-c cookies.txt \
|
|
-d "username=${USERNAME}&password=${PASSWORD}" \
|
|
http://localhost:5000/login
|
|
|