17 lines
719 B
Bash
Executable file
17 lines
719 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Logging out
|
|
echo -e "Logging out"
|
|
curl -k "https://$HOSTNAME/admin/logout.jsp" \
|
|
-H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:128.0) Gecko/20100101 Firefox/128.0' \
|
|
-H 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/png,image/svg+xml,*/*;q=0.8' \
|
|
-H 'Accept-Language: en-US,en;q=0.5' \
|
|
-H 'Accept-Encoding: gzip, deflate, br, zstd' \
|
|
-H 'Connection: keep-alive' \
|
|
-H "Cookie: APPSESSIONID=$APPSESSIONID; MNTLA_JWT_TOKEN=$JWT_TOKEN" \
|
|
-H 'Upgrade-Insecure-Requests: 1' \
|
|
-H 'Sec-Fetch-Dest: document' \
|
|
-H 'Sec-Fetch-Mode: navigate' \
|
|
-H 'Sec-Fetch-Site: same-origin' \
|
|
-H 'Sec-Fetch-User: ?1' \
|
|
-H 'Priority: u=0, i'
|