public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: "Peter Müller" <peter.mueller@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH 7/8] ids-functions.pl: Adjust code to deal with new LWP::UserAgent.
Date: Sat, 05 Feb 2022 12:26:19 +0000	[thread overview]
Message-ID: <5a7d2d5d-e3e9-14fd-77a1-0625e1029288@ipfire.org> (raw)
In-Reply-To: <20220203111613.13632-7-stefan.schantl@ipfire.org>

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

Interesting to see this requires certificate validation to be actively enabled.
I wonder how many Perl projects using LWP are vulnerable to TLS interception by
self-signed/untrusted certificates... :-/

Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>

> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
>  config/cfgroot/ids-functions.pl | 10 +++++++++-
>  1 file changed, 9 insertions(+), 1 deletion(-)
> 
> diff --git a/config/cfgroot/ids-functions.pl b/config/cfgroot/ids-functions.pl
> index 74d55def6..bf02bcbaa 100644
> --- a/config/cfgroot/ids-functions.pl
> +++ b/config/cfgroot/ids-functions.pl
> @@ -281,7 +281,15 @@ sub downloadruleset ($) {
>  	use LWP::UserAgent;
>  
>  	# Init the download module.
> -	my $downloader = LWP::UserAgent->new;
> +	#
> +	# Request SSL hostname verification and specify path
> +	# to the CA file.
> +	my $downloader = LWP::UserAgent->new(
> +		ssl_opts => {
> +			SSL_ca_file     => '/etc/ssl/cert.pem',
> +			verify_hostname => 1,
> +		}
> +	);
>  
>  	# Set timeout to 10 seconds.
>  	$downloader->timeout(10);

  reply	other threads:[~2022-02-05 12:26 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-03 11:16 [PATCH 1/8] perl-Try-Tiny: New package Stefan Schantl
2022-02-03 11:16 ` [PATCH 2/8] perl-HTTP-Message: " Stefan Schantl
2022-02-05 12:24   ` Peter Müller
2022-02-14 21:12   ` Adolf Belka
2022-02-03 11:16 ` [PATCH 3/8] libwww-perl: Update to 6.61 Stefan Schantl
2022-02-05 12:24   ` Peter Müller
2022-02-14 21:12   ` Adolf Belka
2022-02-03 11:16 ` [PATCH 4/8] perl-HTTP-Date: New package Stefan Schantl
2022-02-05 12:25   ` Peter Müller
2022-02-14 21:13   ` Adolf Belka
2022-02-03 11:16 ` [PATCH 5/8] perl-LWP-Protocol-https: " Stefan Schantl
2022-02-05 12:25   ` Peter Müller
2022-02-14 21:14   ` Adolf Belka
2022-02-03 11:16 ` [PATCH 6/8] perl-Net-HTTP: " Stefan Schantl
2022-02-05 12:25   ` Peter Müller
2022-02-14 21:14   ` Adolf Belka
2022-02-03 11:16 ` [PATCH 7/8] ids-functions.pl: Adjust code to deal with new LWP::UserAgent Stefan Schantl
2022-02-05 12:26   ` Peter Müller [this message]
2022-02-14 21:15   ` Adolf Belka
2022-02-03 11:16 ` [PATCH 8/8] pakfire: " Stefan Schantl
2022-02-05 12:26   ` Peter Müller
2022-02-14 21:15   ` Adolf Belka
2022-02-05 12:24 ` [PATCH 1/8] perl-Try-Tiny: New package Peter Müller
2022-02-14 21:10 ` Adolf Belka

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=5a7d2d5d-e3e9-14fd-77a1-0625e1029288@ipfire.org \
    --to=peter.mueller@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