Open Standing-Man opened 1 week ago
@Standing-Man I looked at skipping the login view in case credentials already exist in the config file. In the PR I started working on the login view is skipped in case credentials are present.
I think the number of times a user might invoke login after creating a config file is limited. However, the additional login view might be annoying this is true.
Concerning storing the password in the config file, do you think obfuscation to base64 would be enough or would be plans for storing an encrypted pwd more suitable?
Hi @qcserestipy, Thank you very much for your contributions. Since we are considering encrypting the password in plaintext and then decrypting it during login, we have made a trade-off between security and convenience. Additionally, it would be great if you could add some examples of how to use the config flag in the README. At the same time, this is just a suggestion with some gaps on my part. If you have a better implementation in mind, feel free to bring your ideas to life!
Hi @Standing-Man, I added some info to the readme and also to the docs, feel free to have a look at it. Converning the encryption I totally agree with you. Does it make sense to discuss for a while what mechanism would be desirable? I think there are different solutions with different level of complexity and finding out which is good and which might be overkill is maybe good. Shall we start such kind of a discussion somewhere?
The command documentation in the "doc" folder could potentially be automatically generated using Dagger.
maybe there are some option to use TPM?
Last but not least, just using kyrings might be, exactly. what we need.
@Vad1mo Thank you for your comments on that! I was playing around with the zalando/go-keyring plugin and it seems quite easy to use. In the latest commit to the PR i added an encryption.go that uses this library. In the login password are encrypted and stored in the file, whereas on client creation the password is decrypted for the harbor api client. The config file then looks similar to this:
I am on a darwin arm64 mac, in case people use another os, please feel free to test this code.
We might consider using secure method to store passwords in the config file, and it would be helpful to include instructions on how to use
--config
with thelogin
command in the README and CLI manual.Next, could we enable logging in through the config file instead of manually entering credentials each time?