You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.
This is a difficult to fix issue, input appreciated.
It seems like ConverseJS is regularly re-checking the JID and password, and thus requires them to be stored in session or local browser storage.
I guess in "trusted mode" where OMEMO certificates and so on are stored in the localStorage this doesn't make much difference, and it is not like the qtwebkit session/local storage can be easily viewed from within the app by a non-trusted user.
In non-trusted mode the only option I see right now it to use sessionStorage only, so when the user closes the app the clear-text password is deleted.
One theoretcal option would be to store only the hash. I asked on the ConverseJS chat about it with the following answer:
SCRAM-SHA-1 being ubiquitous you could also store the client part of the hash.
Bonus points as it lets you avoid some expensive calculation.
But to send the hash you'll have to do more work when connecting, might be quite difficult.
The text was updated successfully, but these errors were encountered:
This is a difficult to fix issue, input appreciated.
It seems like ConverseJS is regularly re-checking the JID and password, and thus requires them to be stored in session or local browser storage.
I guess in "trusted mode" where OMEMO certificates and so on are stored in the localStorage this doesn't make much difference, and it is not like the qtwebkit session/local storage can be easily viewed from within the app by a non-trusted user.
In non-trusted mode the only option I see right now it to use sessionStorage only, so when the user closes the app the clear-text password is deleted.
One theoretcal option would be to store only the hash. I asked on the ConverseJS chat about it with the following answer:
The text was updated successfully, but these errors were encountered: