▲ | lucb1e 3 days ago | |||||||||||||||||||||||||||||||
This is fun if you never leave yourself, but be wary with whom you share it. As a company password manager, there is no way to know who's accessed which secret across their lifetime at the firm so you get to change all the passwords constantly. (Or none, if you can't be bothered.) (Don't ask.) Or if someone newly needs access, there's no standard way of re-encrypting the files you're guessing they need. You need to hack something together yourself It uses git, but the commit messages are autogenerated and useless. It might as well have used Dropbox for all the use you get out of it when wanting to find the version before someone corrupted data with their somehow-broken gopass client There is no way to ever erase anything you've accidentally pushed, short of rewriting the git history and breaking it for everyone (or for personal use: other client devices) It looks nice and simple, and I like that I can interface with it with manual tools (e.g. write my own commit messages to have some idea of wtf is going on, e.g. when mass-reencrypting to not have 300 commits), but the simplicity is also the pitfall. Feels a bit similar to using hash(site_name+main_password) as a per-site password: beautiful in simplicity but various practical issues Does anyone have good experiences with a password manager for a corporate environment? Ideally not having yet-another service to maintain, but also not have a server compromise equal business compromise (so end-to-end encryption between the users; verifying fingerprints or some such). From what I found so far, Bitwarden seems to meet that bill but I don't know if there are also others | ||||||||||||||||||||||||||||||||
▲ | jolmg 3 days ago | parent | next [-] | |||||||||||||||||||||||||||||||
> As a company password manager, there is no way to know who's accessed which secret across their lifetime at the firm so you get to change all the passwords constantly. You can setup different directories to use different keys, and you don't need to limit yourself to a single key for each password either. You can use multiple. So you can setup structures like: - admins/.gpg-id "admin\n" - techs/.gpg-id "admin\ntech\n" where admin and tech are 2 keys for different groups of people. Admin having more access. Or even better: - site_foo/.gpg-id "bob\nalice\n" - site_bar/.gpg-id "bob\nrobert\n" where each employee has their own key. So you can fine-tune which passwords need changing if an employee leaves, and which passwords an individual employee needs to be able to access. You can setup git submodules to control which passwords which employees can know to exist. And given that git is being used, you can know which passwords an individual employee ever had access to, were their access to change over time. | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
▲ | ganomi 3 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
I have no practical experience yet, but i evaluated the market for a password sharing solution for a team with similar requirements within an enterprise. Another option in that area is https://www.passbolt.com/ It uses a public/private key approach, where the plain passwords never leave the local machine and shared passwords are re-encrypted with each users public key. | ||||||||||||||||||||||||||||||||
▲ | supriyo-biswas 3 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
My current employer uses 1password and it has a couple of nifty features like "vaults" shared with a group of people, an "op run" command to inject secrets using a .env file, service accounts to fetch passwords in CI, etc. | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
▲ | ggiesen 3 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
Bitwarden is pretty usable, we use it at our org, and while still has a rough edge or two for corporate use, gets better all the time. | ||||||||||||||||||||||||||||||||
▲ | qudat 3 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
My and my buddy have been using “pa” for our company with great success: https://git.j3s.sh/pa It uses age and allows you to use multiple keys for encryption | ||||||||||||||||||||||||||||||||
▲ | maxtaco 3 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
I think one could build something nice on top of FOKS (https://foks.pub). | ||||||||||||||||||||||||||||||||
▲ | 62 3 days ago | parent | prev [-] | |||||||||||||||||||||||||||||||
I agree |