add Referer and X-CSRFToken HTTP headers

This commit is contained in:
Christophe B Billheimer 2021-09-12 12:45:06 -04:00
parent 8f3b7c179e
commit c668c603cc
1 changed files with 4 additions and 0 deletions

View File

@ -243,6 +243,10 @@ _htmlget() {
# add extra headers to request
_authpost() {
_get_zone_id "$@"
csrf_header="$(echo "$One984HOSTING_CSRFTOKEN_COOKIE" | _egrep_o "=[^=][0-9a-zA-Z]*" | tr -d "=")"
export _H1="Cookie: $One984HOSTING_CSRFTOKEN_COOKIE;$One984HOSTING_SESSIONID_COOKIE"
export _H2="Referer: https://management.1984hosting.com/domains/$_zone_id"
export _H3="X-CSRFToken: $csrf_header"
_response=$(_post "$1" "$2")
}