How to store a password for a desktop client?

Hi, by now it seems to be common knowledge that passwords shouldn’t be stored in a database. Backend devs generally know to hash and salt and what-not their transmitted passwords. It seems to be well documented.

However, I wasn’t exactly able to find such a clear answer for client applications accessing e.g. web APIs. For example, lets assume you were to create a Lemmy desktop application with support for multiple accounts. Ideally, that software would work like a password manager and store its master password as hash only.

However(2), sometimes users like to start said application without entering their password. Like an Email client in pleb mode. Which requires the passwords to be stored somewhere. In this case, what is the best course of action?

Dark_Arc,
@Dark_Arc@social.packetloss.gg avatar

Pretty much every OS has some solution to this called a keyring, e.g.:

These can be used to basically delegate that job to somebody else. They typically work by protecting the keyring contents with the user’s system credentials.

TheCee,

Thanks!

philluminati,

You deskktop app could login to Lemmy via the web app and store the login cookie as it’s token for future access. This security is effectively on-par with the existing web app in terms of what happens if the machine falls into bad hands.

But the same thing via an API would be preferred.

The idea that you can login to a website and get a cookie that last 3 weeks may feel absurd, but when you think about clients keeping unencrypted passwords it sort of makes it more appealing comparitively. Especially if you can lock down the cookie to the hardware to prevent theft somehow.

0x0,

You can password-protect a SQLite database, although you’d have to store the password within the app which raises other issues.

TheCee,

Yes, every approach seems to be limited in that an attacker could steal the password or token indirectly. So the safest bet is probably making storing passwords opt-in for each user.

yogsototh,
@yogsototh@programming.dev avatar

Ideally you should use the help from the OS. For example if you target Apple they provide this keychain API made for that.

…apple.com/…/storing_keys_in_the_keychain

But looking I found this apparently portable lib github.com/hrantzsch/keychain

Windows and Linux do not appear to provide as much security as macOS but this lib appear to do its best.

solidsnail,

For Linux there’s gnome keyring.

superkret,

frowns in wm

Trivial,

It has no dependency on a specific DE.

gamma,
@gamma@programming.dev avatar

keyctl then

tun,

code.visualstudio.com/docs/editor/settings-sync#_…

This shows how MS Visual Code stores the password in keychain in various OSes.

Lucky,

Windows credential manager is also an option baked into the OS, though I don’t have experience working with it to say how good or bad it is

canpolat,
@canpolat@programming.dev avatar

As far as I know, the correct way of handling authentication for a desktop applications is using OAuth and “Authentication Code with PKCE” flow. This way, you won’t have to store the password at all.

But Lemmy doesn’t support OAuth as of now. So, if you want users to be able to use the application without entering credentials, you will have two options:

  1. Store the password under current user
  2. Store the token you receive after the login (the token doesn’t expire)

Lemmy may decide to expire tokens in the future (that’s the correct thing to do, in my opinion).

pileghoff,

I think most applications store it in plain text, but makes sure the file is only readable by the current user. This way, we rely on the protection of the OS, instead of doing it ourselves. (I’m not a desktop app developer, so I might be completely wrong, but I think this is what e.g. Firefox does).

GJdan,

Yeah it’s not too rare to store passwords in config files (e.g ~/.config/appname/config.json) usually at least base64 encoded to support special characters. It is usually better to try and store a token instead as they can be revoked or expired. If you have to store a password it might be fun to look into storing it in the system keychain, at least for macos or Linux, not sure if Windows has a keychain.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • ask_experienced_devs@programming.dev
  • tacticalgear
  • DreamBathrooms
  • cisconetworking
  • khanakhh
  • mdbf
  • magazineikmin
  • modclub
  • InstantRegret
  • rosin
  • Youngstown
  • slotface
  • Durango
  • kavyap
  • ngwrru68w68
  • JUstTest
  • everett
  • tester
  • cubers
  • normalnudes
  • thenastyranch
  • osvaldo12
  • GTA5RPClips
  • ethstaker
  • Leos
  • provamag3
  • anitta
  • megavids
  • lostlight
  • All magazines