Closed jbb01 closed 1 month ago
In QEDLogin username and password are simply concatenate with aString::format call and not properly encoded. Users with an ampersand in their password can therefore not log in.
QEDLogin
String::format
As a temporary workaround one could encode their password themselves, i.e. replace all occurances of "&" with "%26", "%" with "%25" and so on.
In
QEDLogin
username and password are simply concatenate with aString::format
call and not properly encoded. Users with an ampersand in their password can therefore not log in.