Logging of unsuccessful login attempts
Denys Vlasenko
vda.linux at googlemail.com
Wed Dec 2 16:52:11 UTC 2020
Let's just do this:
puts("Login incorrect");
+ syslog(LOG_WARNING, "invalid password for '%s'%s",
+ username, fromhost);
if (++count == 3) {
- syslog(LOG_WARNING, "invalid password for '%s'%s",
- username, fromhost);
-
if (ENABLE_FEATURE_CLEAN_UP)
free(fromhost);
On Thu, Nov 19, 2020 at 4:28 PM <xvh at seznam.cz> wrote:
>
> Hi Tito,
>
> having the count configurable is good idea in general. But setting it to 1 will also influence the user that way that he will be kicked out from getty or any program using login after every typing error. I'm ok with 3 attempts before returning error code but it should be possible to detect any suspicious activity.
>
> Vit
>
> ---------- Original e-mail ----------
> From: tito <farmatito at tiscali.it>
> To: busybox at busybox.net
> Datum: 19. 11. 2020 8:11:06
> Subject: Re: Logging of unsuccessful login attempts
>
> Hi
> could making count a configurable option be a solution?
> So that setting e.g CONFIG_MAX_LOGIN_ATTEMPTS to 1
> logs everything and setting it to 3 keeps current behavior?
>
> if (++count == CONFIG_MAX_LOGIN_ATTEMPTS) {
>
> Just my 2 cents.
>
> Ciao,
>
> Tito
> _______________________________________________
> busybox mailing list
> busybox at busybox.net
> http://lists.busybox.net/mailman/listinfo/busybox
More information about the busybox
mailing list