public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH] proxy.cgi: Switch to MD5 hashed passwords for local user auth.
Date: Fri, 07 Feb 2020 11:33:42 +0000	[thread overview]
Message-ID: <21B578ED-0778-4FE7-8B8D-654F88CFC1EA@ipfire.org> (raw)
In-Reply-To: <20200207110640.5264-1-stefan.schantl@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 1182 bytes --]

Ah yes, it is great to finally deploy MD5 in 2020.

Luckily this doesn’t matter because the passwords are being sent in plain text over an unencrypted channel.

Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>

> On 7 Feb 2020, at 11:06, Stefan Schantl <stefan.schantl(a)ipfire.org> wrote:
> 
> The former used default Crypt algorithmus only supports passwords up to
> eight signs wheater MD5 does not have any limitation here.
> 
> Fixes 12290.
> 
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
> html/cgi-bin/proxy.cgi | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/html/cgi-bin/proxy.cgi b/html/cgi-bin/proxy.cgi
> index b63964081..06aca579b 100644
> --- a/html/cgi-bin/proxy.cgi
> +++ b/html/cgi-bin/proxy.cgi
> @@ -3945,7 +3945,13 @@ sub adduser
> 	} else {
> 		&deluser($str_user);
> 
> -		my $htpasswd = new Apache::Htpasswd("$userdb");
> +		my %htpasswd_options = (
> +			passwdFile => "$userdb",
> +			UseMD5 => 1,
> +		);
> +
> +		my $htpasswd = new Apache::Htpasswd(\%htpasswd_options);
> +
> 		$htpasswd->htpasswd($str_user, $str_pass);
> 	}
> 
> -- 
> 2.25.0
> 


      reply	other threads:[~2020-02-07 11:33 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-07 11:06 Stefan Schantl
2020-02-07 11:33 ` Michael Tremer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=21B578ED-0778-4FE7-8B8D-654F88CFC1EA@ipfire.org \
    --to=michael.tremer@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox