need to _url_encode anything sent in GET requests

Fixes issue raised by @tatablack
This commit is contained in:
Brian Hartvigsen 2020-05-15 23:48:50 -06:00
parent b18ce5ade0
commit 52b81608a1
No known key found for this signature in database
GPG Key ID: 46EEA32081255BEB
1 changed files with 3 additions and 0 deletions

View File

@ -83,6 +83,9 @@ synology_dsm_deploy() {
_info "Logging into $SYNO_Hostname:$SYNO_Port"
response=$(_get "$_base_url/webman/login.cgi?username=$SYNO_Username&passwd=$SYNO_Password&enable_syno_token=yes&device_id=$SYNO_DID")
token=$(echo "$response" | grep "SynoToken" | sed -n 's/.*"SynoToken" *: *"\([^"]*\).*/\1/p')
encoded_username="$(printf "%s" "$SYNO_Username" | _url_encode)"
encoded_password="$(printf "%s" "$SYNO_Password" | _url_encode)"
encoded_did="$(printf "%s" "$SYNO_DID" | _url_encode)"
_debug3 response "$response"
if [ -z "$token" ]; then