[Bug 138654] Re: Annoying and useless delays on password entry errors

2015-01-20 Thread Mike Doherty
(Just a reminder that when combined with bug 1308265, it can get pretty annoying. This is worth fixing.) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/138654 Title: Annoying and useless delays on

[Bug 138654] Re: Annoying and useless delays on password entry errors

2015-01-20 Thread Mike Doherty
Is this actually going to get fixed? There hasn't been a meaningful update in a year and a half. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/138654 Title: Annoying and useless delays on password

[Bug 138654] Re: Annoying and useless delays on password entry errors

2013-06-28 Thread Chris Wilson
** No longer affects: hundredpapercuts -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/138654 Title: Annoying and useless delays on password entry errors To manage notifications about this bug go

[Bug 138654] Re: Annoying and useless delays on password entry errors

2013-06-27 Thread Dražen Lučanin
What I would suggest to keep both the security and user friendliness in entering passwords would be to add a certain number of no-delay attempts (e.g. 3). This way humans would get a certain number of quick retype attempts in case of typos or different keyboard layouts (often the case with me, as

[Bug 138654] Re: Annoying and useless delays on password entry errors

2012-07-15 Thread walther
Hard-coded numbers are always bad. Why not simply make this value configurable? Also I have to admit, I don't understand why pam_unix applies this delay. Is this not what pam_delay (whose delay _is_ configureable) is made for? -- You received this bug notification because you are a member of

[Bug 138654] Re: Annoying and useless delays on password entry errors

2010-06-22 Thread Timmmm
Steve: Yes, 0.5s is a vast improvement over 2s, and I would consider this 'fixed'. Perhaps this should be two bugs, one paper-cut: Default password delay is too long, and one that is (as you say) harder to fix: First few local password attempts should be instant. I think you can easily fix the

[Bug 138654] Re: Annoying and useless delays on password entry errors

2009-06-18 Thread ShawnJGoff
I would like to know what about this bug is nontrivial since there is already a patch here. -- Annoying and useless delays on password entry errors https://bugs.launchpad.net/bugs/138654 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 138654] Re: Annoying and useless delays on password entry errors

2009-06-18 Thread Steve Langasek
I'm not sure the proposed patch actually addresses the original request (is a 4x reduction in the delay, from 2 seconds to .5 seconds, that much of an improvement?), but regardless, this is not just a usability issue, there's also a security issue here. Any changes to the behavior of PAM failure

[Bug 138654] Re: Annoying and useless delays on password entry errors

2009-06-18 Thread mati
Steve, are you sure? Patrick Horn's patch is a one-liner, implementing Andy Owen's approach (3 attemps with no delay) shouldn't be hard too. Please reconsider. ** Changed in: hundredpapercuts Status: Invalid = New -- Annoying and useless delays on password entry errors

[Bug 138654] Re: Annoying and useless delays on password entry errors

2009-06-17 Thread ShawnJGoff
** Changed in: hundredpapercuts Status: New = Confirmed -- Annoying and useless delays on password entry errors https://bugs.launchpad.net/bugs/138654 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list

[Bug 138654] Re: Annoying and useless delays on password entry errors

2009-06-17 Thread Steve Langasek
this bug is not trivially fixable, so it is not a paper cut. ** Changed in: hundredpapercuts Status: Confirmed = Invalid -- Annoying and useless delays on password entry errors https://bugs.launchpad.net/bugs/138654 You received this bug notification because you are a member of Ubuntu

[Bug 138654] Re: Annoying and useless delays on password entry errors

2009-06-16 Thread Andy Owen
It would be nice if you had some number of attempts (e.g. 3) with no delay, and then after that have a delay. (e.g. 2 seconds). This way, a brute force attack is still impossible, but the more common case of making a typo in the password isn't annoying. -- Annoying and useless delays on password

[Bug 138654] Re: Annoying and useless delays on password entry errors

2009-06-13 Thread Hans Rødtang
** Also affects: hundredpapercuts Importance: Undecided Status: New -- Annoying and useless delays on password entry errors https://bugs.launchpad.net/bugs/138654 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs

[Bug 138654] Re: Annoying and useless delays on password entry errors

2008-11-16 Thread Patrick Horn
I don't like having to use nodelay -- I like the fact that it gives a delay when I make a mistake but 2 seconds is just too long. I would vote for just changing the delay to 0.5 seconds, since this is as simple as changing a constant in pam_unix ** Attachment added: This patch changes the

[Bug 138654] Re: Annoying and useless delays on password entry errors

2008-09-22 Thread Bogdan Butnaru
nodelay. $ man pam_unix for details -- Annoying and useless delays on password entry errors https://bugs.launchpad.net/bugs/138654 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com

[Bug 138654] Re: Annoying and useless delays on password entry errors

2008-09-18 Thread timothius
What comment do you have to add to common-auth's pam_unix to disable the delay? -- Annoying and useless delays on password entry errors https://bugs.launchpad.net/bugs/138654 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 138654] Re: Annoying and useless delays on password entry errors

2007-09-13 Thread Martin Pitt
For most cases it's very simple to get around this by attempting a password, killing the process after 100ms if it doesn't answer and retrying. This does not actually work, since as an user you are not allowed to kill a suid root process. So you can only fork processes like hell, which is bound

[Bug 138654] Re: Annoying and useless delays on password entry errors

2007-09-13 Thread Martin Pitt
I'd set this to wontfix. Kees, do you agree? -- Annoying and useless delays on password entry errors https://bugs.launchpad.net/bugs/138654 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs mailing list

Re: [Bug 138654] Re: Annoying and useless delays on password entry errors

2007-09-13 Thread Bogdan Butnaru
No, but you can kill it's parent shell. You can do 'bash -c sudo cmd' and kill bash. On my attempts this killed the sudo after a single bad password. Sure, bash is a bit overweight and would slow things down, but you can emulate whatever happens there with less bloat. Or use dash, at the least.

Re: [Bug 138654] Re: Annoying and useless delays on password entry errors

2007-09-13 Thread Bogdan Butnaru
Oh, and I can press Ctrl-C at any moment at a sudo prompt and try again. (Depending on your POV that might be a bug in sudo, but anyway.) On 9/13/07, Bogdan Butnaru [EMAIL PROTECTED] wrote: No, but you can kill it's parent shell. You can do 'bash -c sudo cmd' and kill bash. On my attempts this

[Bug 138654] Re: Annoying and useless delays on password entry errors

2007-09-11 Thread Kees Cook
Since this is a global timeout for PAM, reducing it would change the behavior for network services. However, as you point out, this isn't a very effective way to discourage brute-forcing (especially for network attempts -- it just forks another copy). ** Changed in: pam (Ubuntu) Importance:

[Bug 138654] Re: Annoying and useless delays on password entry errors

2007-09-10 Thread Bogdan Butnaru
After a bit more reading-up I see most of this should be possible by simply updating the default configuration in /etc/pam.d The delay can be removed by adding parameter to common-auth's pam_unix, and the counting by using pam_tally. I can't figure out how to add a growing timeout; perhaps a new