• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

Forwarded to devs Plain password in URL

Geraldo V Vieira

New Pleskian
Username: Geraldo V Vieira

TITLE

Plain password in URL

PRODUCT, VERSION, OPERATING SYSTEM, ARCHITECTURE

Plesk Obsidian Version 18.0.35

PROBLEM DESCRIPTION

Doesn't detect password correctly when the password contains & in the password i.e ec0f&C97sGGhitsy

STEPS TO REPRODUCE

Create a URL to log in the user with & symbol in the password i.e. https://example.com:8443/[email protected]&passwd=ec0f&C97sGGhitsy

ACTUAL RESULT

Only passes ec0f to the password filed and ignores &C97sGGhitsy part of the password

EXPECTED RESULT

It's meant to pass ec0f&C97sGGhitsy into the password field

ANY ADDITIONAL INFORMATION



YOUR EXPECTATIONS FROM PLESK SERVICE TEAM

Help with sorting out
 
. . .

PROBLEM DESCRIPTION

Doesn't detect password correctly when the password contains & in the password i.e ec0f&C97sGGhitsy

STEPS TO REPRODUCE

Create a URL to log in the user with & symbol in the password i.e. https://example.com:8443/[email protected]&passwd=ec0f&C97sGGhitsy

ACTUAL RESULT

Only passes ec0f to the password filed and ignores &C97sGGhitsy part of the password

EXPECTED RESULT

It's meant to pass ec0f&C97sGGhitsy into the password field
. . .
YOUR EXPECTATIONS FROM PLESK SERVICE TEAM

Help with sorting out
Hello @Geraldo V Vieira,

The mentioned behaviour is related how the browser interprets some symbols, and not directly related to Plesk.
For example:
IP address - 203.0.113.2
User - admin
Password - ABC123&abc
the following URL should be used:


To 'transform' password to applicable form use encodeURIComponent function in a browser's console:
Capture01.PNG
In your case URL should be the following:
https://example.com:8443/[email protected]&passwd=ec0f%26C97sGGhitsy
 
Back
Top