ipblocklist-sources: Correct the info url - Fixes bug#12938

Message ID 20220924115312.3004-1-adolf.belka@ipfire.org
State Accepted
Commit f128ac2a5c88d7094c768fdcada1d0c5d0f81ab1
Headers
Series ipblocklist-sources: Correct the info url - Fixes bug#12938 |

Commit Message

Adolf Belka Sept. 24, 2022, 11:53 a.m. UTC
  - With the .html ending the link gets a 404 Page not found error

Fixes: Bug#12938
Tested-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/ipblocklist/sources | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Comments

Bernhard Bitsch Sept. 24, 2022, 12:59 p.m. UTC | #1
Reviewed-by: Bernhard Bitsch <bbitsch@ipfire.org>

Am 24.09.2022 um 13:53 schrieb Adolf Belka:
> - With the .html ending the link gets a 404 Page not found error
> 
> Fixes: Bug#12938
> Tested-by: Adolf Belka <adolf.belka@ipfire.org>
> Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
> ---
>   config/ipblocklist/sources | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/config/ipblocklist/sources b/config/ipblocklist/sources
> index a6f82354c..be0cf0229 100644
> --- a/config/ipblocklist/sources
> +++ b/config/ipblocklist/sources
> @@ -114,13 +114,13 @@ our %sources = ( 'EMERGING_FWRULE' => { 'name'     => 'Emerging Threats Blocklis
>                                       'category' => 'reputation' },
>                'BOGON'           => { 'name'     => 'Bogus address list (Martian)',
>                                       'url'      => 'https://www.team-cymru.org/Services/Bogons/bogon-bn-agg.txt',
> -                                    'info'     => 'https://www.team-cymru.com/bogon-reference.html',
> +                                    'info'     => 'https://www.team-cymru.com/bogon-reference',
>                                       'parser'   => 'ip-or-net-list',
>                                       'rate'     => '1d',
>                                       'category' => 'invalid' },
>                'BOGON_FULL'      => { 'name'     => 'Full Bogus Address List',
>                                       'url'      => 'https://www.team-cymru.org/Services/Bogons/fullbogons-ipv4.txt',
> -                                    'info'     => 'https://www.team-cymru.com/bogon-reference.html',
> +                                    'info'     => 'https://www.team-cymru.com/bogon-reference',
>                                       'parser'   => 'ip-or-net-list',
>                                       'rate'     => '4h',
>                                       'category' => 'invalid',
  

Patch

diff --git a/config/ipblocklist/sources b/config/ipblocklist/sources
index a6f82354c..be0cf0229 100644
--- a/config/ipblocklist/sources
+++ b/config/ipblocklist/sources
@@ -114,13 +114,13 @@  our %sources = ( 'EMERGING_FWRULE' => { 'name'     => 'Emerging Threats Blocklis
                                     'category' => 'reputation' },
              'BOGON'           => { 'name'     => 'Bogus address list (Martian)',
                                     'url'      => 'https://www.team-cymru.org/Services/Bogons/bogon-bn-agg.txt',
-                                    'info'     => 'https://www.team-cymru.com/bogon-reference.html',
+                                    'info'     => 'https://www.team-cymru.com/bogon-reference',
                                     'parser'   => 'ip-or-net-list',
                                     'rate'     => '1d',
                                     'category' => 'invalid' },
              'BOGON_FULL'      => { 'name'     => 'Full Bogus Address List',
                                     'url'      => 'https://www.team-cymru.org/Services/Bogons/fullbogons-ipv4.txt',
-                                    'info'     => 'https://www.team-cymru.com/bogon-reference.html',
+                                    'info'     => 'https://www.team-cymru.com/bogon-reference',
                                     'parser'   => 'ip-or-net-list',
                                     'rate'     => '4h',
                                     'category' => 'invalid',