-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GUI password prompt #37
Comments
Okay... premature post as always. I just had a look at the Code and saw that passhole uses zenity for this purpose, which I had not installed. From my perspective the problem is solved for now. Even though my problem is solved two things:
I'm gonna keep this open for now as a feature request. If you'd like I can reformulate the issue. |
|
`zenity` used inside `passhole` for password prompting if database is unlocked. But, `zenity` not mentioned as `passhole`'s optional dependency. There is no *dependencies* section, so, i added it as shell-comment. Thanks #37
@PRESFIL That's a good idea. I can fall back to dmenu for password prompt if zenity isn't present. |
I don't know why |
|
I tried this out and it seems to work OK. I wouldn't go so far as to call it a hack. passhole already does this when displaying passwords with the
|
I call this a hack because it seems to me that the password can be stolen using |
Dmenu is not a hard dependency. You can use whatever menu tool you specify in
If your machine is compromised, you're already hosed because the attacker can just run a keylogger to capture your database password or dump passhole's memory to get at the open database. |
Hi,
I have
ph type
bound to a keyboard shortcut in my window manager. The problem is: When I reboot my machine, there is no password database in the cache, so I need to enter my password. This in turn breaks my keyboard shortcut. So whenever I reboot my system or my cache expires (I like to have a cache timeout) I have to open a terminal to unlock the database before I can use the shortcut.What I'm imagining is something like the
sudo -A
flag, that can delegate the password entry to an external command. I currently have the password patch for dmenu installed and a dmenu-script set up to act as my sudo-askpass-command. This way I can run shell scripts that need root privileges from dmenu.The text was updated successfully, but these errors were encountered: