* [PATCH] connscheduler.cgi: Remove cleanhtml command from Remark
@ 2024-03-05 18:44 Adolf Belka
2024-03-05 18:44 ` [PATCH] dhcp.cgi: " Adolf Belka
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Adolf Belka @ 2024-03-05 18:44 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1921 bytes --]
- Using cleanhtml on Remarks means that all characters with diacritical marks such as
umlauts or grave accents etc get encoded into other characters.
- If Freifunk München e.V. is entered as a remark it gets converted to
Freifunk München e.V.
- cleanhtml is only removed from Remarks or Comment fields. In other places it has been
left in place.
Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
html/cgi-bin/connscheduler.cgi | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/html/cgi-bin/connscheduler.cgi b/html/cgi-bin/connscheduler.cgi
index cc78cbc1b..817247cc4 100644
--- a/html/cgi-bin/connscheduler.cgi
+++ b/html/cgi-bin/connscheduler.cgi
@@ -2,7 +2,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
+# Copyright (C) 2007-2024 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -186,7 +186,7 @@ if ( ($cgiparams{'ACTION'} eq 'add') || ($cgiparams{'ACTION'} eq 'update') )
$CONNSCHED::config[$i]{'DAYSTYPE'} = lc($cgiparams{'ACTION_DAYSTYPE'});
$CONNSCHED::config[$i]{'DAYS'} = $l_days;
$CONNSCHED::config[$i]{'WEEKDAYS'} = $l_weekdays;
- $CONNSCHED::config[$i]{'COMMENT'} = &Header::cleanhtml($cgiparams{'ACTION_COMMENT'});
+ $CONNSCHED::config[$i]{'COMMENT'} = $cgiparams{'ACTION_COMMENT'};
&CONNSCHED::WriteConfig;
}
--
2.44.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH] dhcp.cgi: Remove cleanhtml command from Remark
2024-03-05 18:44 [PATCH] connscheduler.cgi: Remove cleanhtml command from Remark Adolf Belka
@ 2024-03-05 18:44 ` Adolf Belka
2024-03-05 18:44 ` [PATCH] dnsforward.cgi: " Adolf Belka
` (4 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Adolf Belka @ 2024-03-05 18:44 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1168 bytes --]
- Using cleanhtml on Remarks means that all characters with diacritical marks such as
umlauts or grave accents etc get encoded into other characters.
- If Freifunk München e.V. is entered as a remark it gets converted to
Freifunk München e.V.
- cleanhtml is only removed from Remarks or Comment fields. In other places it has been
left in place.
Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
html/cgi-bin/dhcp.cgi | 1 -
1 file changed, 1 deletion(-)
diff --git a/html/cgi-bin/dhcp.cgi b/html/cgi-bin/dhcp.cgi
index be00f199a..128e42355 100644
--- a/html/cgi-bin/dhcp.cgi
+++ b/html/cgi-bin/dhcp.cgi
@@ -455,7 +455,6 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'add'}.'2') {
}
unless ($errormessage) {
- $dhcpsettings{'FIX_REMARK'} = &Header::cleanhtml($dhcpsettings{'FIX_REMARK'});
$dhcpsettings{'FIX_NEXTADDR'} = &Header::cleanhtml($dhcpsettings{'FIX_NEXTADDR'});
$dhcpsettings{'FIX_FILENAME'} = &Header::cleanhtml($dhcpsettings{'FIX_FILENAME'});
$dhcpsettings{'FIX_ROOTPATH'} = &Header::cleanhtml($dhcpsettings{'FIX_ROOTPATH'});
--
2.44.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH] dnsforward.cgi: Remove cleanhtml command from Remark
2024-03-05 18:44 [PATCH] connscheduler.cgi: Remove cleanhtml command from Remark Adolf Belka
2024-03-05 18:44 ` [PATCH] dhcp.cgi: " Adolf Belka
@ 2024-03-05 18:44 ` Adolf Belka
2024-03-05 18:44 ` [PATCH] ovpnmain.cgi: " Adolf Belka
` (3 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Adolf Belka @ 2024-03-05 18:44 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1839 bytes --]
- Using cleanhtml on Remarks means that all characters with diacritical marks such as
umlauts or grave accents etc get encoded into other characters.
- If Freifunk München e.V. is entered as a remark it gets converted to
Freifunk München e.V.
- cleanhtml is only removed from Remarks or Comment fields. In other places it has been
left in place.
Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
html/cgi-bin/dnsforward.cgi | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/html/cgi-bin/dnsforward.cgi b/html/cgi-bin/dnsforward.cgi
index 4af5ed200..42f124766 100644
--- a/html/cgi-bin/dnsforward.cgi
+++ b/html/cgi-bin/dnsforward.cgi
@@ -2,7 +2,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2013 IPFire Development Team #
+# Copyright (C) 2013-2024 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -87,9 +87,6 @@ if ($cgiparams{'ACTION'} eq $Lang::tr{'add'})
# Save servers separated by |
$cgiparams{'FORWARD_SERVERS'} = join("|", @forward_servers);
- # Check if a remark has been entered.
- $cgiparams{'REMARK'} = &Header::cleanhtml($cgiparams{'REMARK'});
-
# Set to off if not enabled
if (!$cgiparams{'DISABLE_DNSSEC'}) {
$cgiparams{'DISABLE_DNSSEC'} = "off";
--
2.44.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH] ovpnmain.cgi: Remove cleanhtml command from Remark
2024-03-05 18:44 [PATCH] connscheduler.cgi: Remove cleanhtml command from Remark Adolf Belka
2024-03-05 18:44 ` [PATCH] dhcp.cgi: " Adolf Belka
2024-03-05 18:44 ` [PATCH] dnsforward.cgi: " Adolf Belka
@ 2024-03-05 18:44 ` Adolf Belka
2024-03-05 18:44 ` [PATCH] vpnmain.cgi: " Adolf Belka
` (2 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Adolf Belka @ 2024-03-05 18:44 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1844 bytes --]
- Using cleanhtml on Remarks means that all characters with diacritical marks such as
umlauts or grave accents etc get encoded into other characters.
- If Freifunk München e.V. is entered as a remark it gets converted to
Freifunk München e.V.
- cleanhtml is only removed from Remarks or Comment fields. In other places it has been
left in place.
Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
html/cgi-bin/ovpnmain.cgi | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/html/cgi-bin/ovpnmain.cgi b/html/cgi-bin/ovpnmain.cgi
index c92d0237d..d3680271a 100755
--- a/html/cgi-bin/ovpnmain.cgi
+++ b/html/cgi-bin/ovpnmain.cgi
@@ -2,7 +2,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2023 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2013-2024 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -3613,7 +3613,6 @@ if ($confighash{$cgiparams{'KEY'}}) {
$cgiparams{'TLSAUTH'} = $confighash{$cgiparams{'KEY'}}[41];
$cgiparams{'OTP_STATE'} = $confighash{$cgiparams{'KEY'}}[43];
} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'save'}) {
- $cgiparams{'REMARK'} = &Header::cleanhtml($cgiparams{'REMARK'});
#A.Marx CCD check iroute field and convert it to decimal
if ($cgiparams{'TYPE'} eq 'host') {
--
2.44.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH] vpnmain.cgi: Remove cleanhtml command from Remark
2024-03-05 18:44 [PATCH] connscheduler.cgi: Remove cleanhtml command from Remark Adolf Belka
` (2 preceding siblings ...)
2024-03-05 18:44 ` [PATCH] ovpnmain.cgi: " Adolf Belka
@ 2024-03-05 18:44 ` Adolf Belka
2024-03-05 18:44 ` [PATCH] wakeonlan.cgi: " Adolf Belka
2024-03-06 21:28 ` [PATCH] connscheduler.cgi: " Michael Tremer
5 siblings, 0 replies; 10+ messages in thread
From: Adolf Belka @ 2024-03-05 18:44 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1718 bytes --]
- Using cleanhtml on Remarks means that all characters with diacritical marks such as
umlauts or grave accents etc get encoded into other characters.
- If Freifunk München e.V. is entered as a remark it gets converted to
Freifunk München e.V.
- cleanhtml is only removed from Remarks or Comment fields. In other places it has been
left in place.
Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
html/cgi-bin/vpnmain.cgi | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/html/cgi-bin/vpnmain.cgi b/html/cgi-bin/vpnmain.cgi
index 9173a85d8..ceb0613a4 100644
--- a/html/cgi-bin/vpnmain.cgi
+++ b/html/cgi-bin/vpnmain.cgi
@@ -2,7 +2,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2022 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2024 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -1724,7 +1724,6 @@ END
}
} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'save'}) {
- $cgiparams{'REMARK'} = &Header::cleanhtml($cgiparams{'REMARK'});
if ($cgiparams{'TYPE'} !~ /^(host|net)$/) {
$errormessage = $Lang::tr{'connection type is invalid'};
goto VPNCONF_ERROR;
--
2.44.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH] wakeonlan.cgi: Remove cleanhtml command from Remark
2024-03-05 18:44 [PATCH] connscheduler.cgi: Remove cleanhtml command from Remark Adolf Belka
` (3 preceding siblings ...)
2024-03-05 18:44 ` [PATCH] vpnmain.cgi: " Adolf Belka
@ 2024-03-05 18:44 ` Adolf Belka
2024-03-06 21:28 ` [PATCH] connscheduler.cgi: " Michael Tremer
5 siblings, 0 replies; 10+ messages in thread
From: Adolf Belka @ 2024-03-05 18:44 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1811 bytes --]
- Using cleanhtml on Remarks means that all characters with diacritical marks such as
umlauts or grave accents etc get encoded into other characters.
- If Freifunk München e.V. is entered as a remark it gets converted to
Freifunk München e.V.
- cleanhtml is only removed from Remarks or Comment fields. In other places it has been
left in place.
Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
html/cgi-bin/wakeonlan.cgi | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/html/cgi-bin/wakeonlan.cgi b/html/cgi-bin/wakeonlan.cgi
index e88448964..7f6680891 100644
--- a/html/cgi-bin/wakeonlan.cgi
+++ b/html/cgi-bin/wakeonlan.cgi
@@ -2,7 +2,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
+# Copyright (C) 2007-2024 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -307,7 +307,7 @@ for $i ( 0 .. $#wol_devices )
{
my $wol_mac = $wol_devices[$i]{'MAC'};
my $wol_iface = $wol_devices[$i]{'IFace'};
- my $wol_txt = &Header::cleanhtml($wol_devices[$i]{'Comment'});
+ my $wol_txt = $wol_devices[$i]{'Comment'};
if ( (($cgiparams{'ACTION'} eq 'edit') || ($cgiparams{'ACTION'} eq 'update')) && ($i == $cgiparams{'ID'}) )
{
--
2.44.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] connscheduler.cgi: Remove cleanhtml command from Remark
2024-03-05 18:44 [PATCH] connscheduler.cgi: Remove cleanhtml command from Remark Adolf Belka
` (4 preceding siblings ...)
2024-03-05 18:44 ` [PATCH] wakeonlan.cgi: " Adolf Belka
@ 2024-03-06 21:28 ` Michael Tremer
2024-03-06 22:23 ` Adolf Belka
5 siblings, 1 reply; 10+ messages in thread
From: Michael Tremer @ 2024-03-06 21:28 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2775 bytes --]
Hello Adolf,
I believe that I cannot merge these patches.
The reason simply is that it would create a store cross-site scripting attack vector because someone could store some <script> tags with some JS which will be executed if another admin opens the same page.
That is why we escape the content so that if there are any special characters like <> for HTML tags they won’t be interpreted by the browser.
We might have problems where we accidentally call the cleanhtml function twice which should show garbage. We might also have a problem where the function is not giving us the output that we want.
Which strings have been causing problems? Just German umlauts like “äöü”?
-Michael
> On 5 Mar 2024, at 19:44, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>
> - Using cleanhtml on Remarks means that all characters with diacritical marks such as
> umlauts or grave accents etc get encoded into other characters.
> - If Freifunk München e.V. is entered as a remark it gets converted to
> Freifunk München e.V.
> - cleanhtml is only removed from Remarks or Comment fields. In other places it has been
> left in place.
>
> Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> html/cgi-bin/connscheduler.cgi | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/html/cgi-bin/connscheduler.cgi b/html/cgi-bin/connscheduler.cgi
> index cc78cbc1b..817247cc4 100644
> --- a/html/cgi-bin/connscheduler.cgi
> +++ b/html/cgi-bin/connscheduler.cgi
> @@ -2,7 +2,7 @@
> ###############################################################################
> # #
> # IPFire.org - A linux based firewall #
> -# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
> +# Copyright (C) 2007-2024 IPFire Team <info(a)ipfire.org> #
> # #
> # This program is free software: you can redistribute it and/or modify #
> # it under the terms of the GNU General Public License as published by #
> @@ -186,7 +186,7 @@ if ( ($cgiparams{'ACTION'} eq 'add') || ($cgiparams{'ACTION'} eq 'update') )
> $CONNSCHED::config[$i]{'DAYSTYPE'} = lc($cgiparams{'ACTION_DAYSTYPE'});
> $CONNSCHED::config[$i]{'DAYS'} = $l_days;
> $CONNSCHED::config[$i]{'WEEKDAYS'} = $l_weekdays;
> - $CONNSCHED::config[$i]{'COMMENT'} = &Header::cleanhtml($cgiparams{'ACTION_COMMENT'});
> + $CONNSCHED::config[$i]{'COMMENT'} = $cgiparams{'ACTION_COMMENT'};
>
> &CONNSCHED::WriteConfig;
> }
> --
> 2.44.0
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] connscheduler.cgi: Remove cleanhtml command from Remark
2024-03-06 21:28 ` [PATCH] connscheduler.cgi: " Michael Tremer
@ 2024-03-06 22:23 ` Adolf Belka
2024-03-07 11:18 ` Adolf Belka
0 siblings, 1 reply; 10+ messages in thread
From: Adolf Belka @ 2024-03-06 22:23 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 5107 bytes --]
Hi Michael,
On 06/03/2024 22:28, Michael Tremer wrote:
> Hello Adolf,
>
> I believe that I cannot merge these patches.
Then you need to also look back at the dns.cgi patch for the bug fix due
to german umlauts being changed. The acceptance of that patch is what
made me create these patches as they all had the same problem with
remarks as well. If this can't be accepted as is then that patch needs
to be reverted.
https://git.ipfire.org/?p=ipfire-2.x.git;a=commit;h=7c6ff5ff12331a53f416080a44c8d6145e78bfac
>
> The reason simply is that it would create a store cross-site scripting attack vector because someone could store some <script> tags with some JS which will be executed if another admin opens the same page.
>
> That is why we escape the content so that if there are any special characters like <> for HTML tags they won’t be interpreted by the browser.
>
> We might have problems where we accidentally call the cleanhtml function twice which should show garbage. We might also have a problem where the function is not giving us the output that we want.
>
> Which strings have been causing problems? Just German umlauts like “äöü”?
It is any character that has an accent or other diacritical mark.
I just tried entering the following into the remark section for a dns
server entry as an example
Ä ã ö â á à
and the remark was changed to
Ä ã ö â á Ã
and if I edit the entry but don't change the remark the new characters
above get changed again into
Ä ã ö â á ÃÂ
I would have expected that running cleanhtml should result in characters
that are considered safe after one run through but it seems that the
encoding creates characters that are encoded again by cleanhtml as being
unsafe and then those ones are again still considered unsafe.
If the cleanhtml command needs to stay being used also for the remark
entries then I have no idea how to allow german umlauts and other
accented characters to be shown correctly because they are all higher
bit ascii characters and those are encoded by default by the cleanhtml
process as being considered unsafe so I would either need some help on
how to deal with it or maybe someone else needs to pick up the original
bug#12395
The only thing I found is that cleanhtml calls the escape function which
calls the HTML::Entities::encode_entities command but that command can
have an additional option which defines the characters that are
considered unsafe, but then I would need some guidance on which
characters are considered unsafe and if that set applies to all
invocations of the cleanhtml command. ie should a modified cleanhtml
command with the extra option for the HTML::Entities::encode_entities
command only be used for some of the cleanhtml calls and if so would
that be only the remark/comment entries?
Regards,
Adolf.
>
> -Michael
>
>> On 5 Mar 2024, at 19:44, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>>
>> - Using cleanhtml on Remarks means that all characters with diacritical marks such as
>> umlauts or grave accents etc get encoded into other characters.
>> - If Freifunk München e.V. is entered as a remark it gets converted to
>> Freifunk München e.V.
>> - cleanhtml is only removed from Remarks or Comment fields. In other places it has been
>> left in place.
>>
>> Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
>> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
>> ---
>> html/cgi-bin/connscheduler.cgi | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/html/cgi-bin/connscheduler.cgi b/html/cgi-bin/connscheduler.cgi
>> index cc78cbc1b..817247cc4 100644
>> --- a/html/cgi-bin/connscheduler.cgi
>> +++ b/html/cgi-bin/connscheduler.cgi
>> @@ -2,7 +2,7 @@
>> ###############################################################################
>> # #
>> # IPFire.org - A linux based firewall #
>> -# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
>> +# Copyright (C) 2007-2024 IPFire Team <info(a)ipfire.org> #
>> # #
>> # This program is free software: you can redistribute it and/or modify #
>> # it under the terms of the GNU General Public License as published by #
>> @@ -186,7 +186,7 @@ if ( ($cgiparams{'ACTION'} eq 'add') || ($cgiparams{'ACTION'} eq 'update') )
>> $CONNSCHED::config[$i]{'DAYSTYPE'} = lc($cgiparams{'ACTION_DAYSTYPE'});
>> $CONNSCHED::config[$i]{'DAYS'} = $l_days;
>> $CONNSCHED::config[$i]{'WEEKDAYS'} = $l_weekdays;
>> - $CONNSCHED::config[$i]{'COMMENT'} = &Header::cleanhtml($cgiparams{'ACTION_COMMENT'});
>> + $CONNSCHED::config[$i]{'COMMENT'} = $cgiparams{'ACTION_COMMENT'};
>>
>> &CONNSCHED::WriteConfig;
>> }
>> --
>> 2.44.0
>>
>
--
Sent from my laptop
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] connscheduler.cgi: Remove cleanhtml command from Remark
2024-03-06 22:23 ` Adolf Belka
@ 2024-03-07 11:18 ` Adolf Belka
2024-03-07 13:19 ` Adolf Belka
0 siblings, 1 reply; 10+ messages in thread
From: Adolf Belka @ 2024-03-07 11:18 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 6526 bytes --]
Hi Michael,
I think I know how to solve the problem.
I tested out using HTML::Entities::encode_entities in a very simple Perl
program and found I got the same type of entity encoding as in the WUI
CGI pages.
However, if I treated the string of characters as utf8 then the
HTML::Entities::encode_entities gave the results expected.
So I need to figure out how to treat the remark strings as utf8 and
hopefully that should fix the problem. At least I have a view of a path
forward on this issue now, that will keep the protection of the
cleanhtml command while also allowing characters with diacritical marks,
plus special characters such as the Cyrillic alphabet and also things
like the german eszet that currently all get mangled.
Will let you know how I get on.
Additionally I will also later on create patches for the WUI CGI pages
for the Firewall Groups and for WIO as they do not use the cleanhtml
command at all yet they also have many Remark entries. I will also check
out the other WUI pages that don't use the cleanhtml command to see if
they have remarks etc that should use it.
Regards,
Adolf.
On 06/03/2024 23:23, Adolf Belka wrote:
> Hi Michael,
>
> On 06/03/2024 22:28, Michael Tremer wrote:
>> Hello Adolf,
>>
>> I believe that I cannot merge these patches.
> Then you need to also look back at the dns.cgi patch for the bug fix
> due to german umlauts being changed. The acceptance of that patch is
> what made me create these patches as they all had the same problem
> with remarks as well. If this can't be accepted as is then that patch
> needs to be reverted.
>
> https://git.ipfire.org/?p=ipfire-2.x.git;a=commit;h=7c6ff5ff12331a53f416080a44c8d6145e78bfac
>
>>
>> The reason simply is that it would create a store cross-site
>> scripting attack vector because someone could store some <script>
>> tags with some JS which will be executed if another admin opens the
>> same page.
>>
>> That is why we escape the content so that if there are any special
>> characters like <> for HTML tags they won’t be interpreted by the
>> browser.
>>
>> We might have problems where we accidentally call the cleanhtml
>> function twice which should show garbage. We might also have a
>> problem where the function is not giving us the output that we want.
>>
>> Which strings have been causing problems? Just German umlauts like
>> “äöü”?
> It is any character that has an accent or other diacritical mark.
>
> I just tried entering the following into the remark section for a dns
> server entry as an example
> Ä ã ö â á à
>
> and the remark was changed to
> Ä ã ö â á Ã
>
> and if I edit the entry but don't change the remark the new characters
> above get changed again into
> Ä ã ö â á ÃÂ
>
>
> I would have expected that running cleanhtml should result in
> characters that are considered safe after one run through but it seems
> that the encoding creates characters that are encoded again by
> cleanhtml as being unsafe and then those ones are again still
> considered unsafe.
>
> If the cleanhtml command needs to stay being used also for the remark
> entries then I have no idea how to allow german umlauts and other
> accented characters to be shown correctly because they are all higher
> bit ascii characters and those are encoded by default by the cleanhtml
> process as being considered unsafe so I would either need some help on
> how to deal with it or maybe someone else needs to pick up the
> original bug#12395
>
> The only thing I found is that cleanhtml calls the escape function
> which calls the HTML::Entities::encode_entities command but that
> command can have an additional option which defines the characters
> that are considered unsafe, but then I would need some guidance on
> which characters are considered unsafe and if that set applies to all
> invocations of the cleanhtml command. ie should a modified cleanhtml
> command with the extra option for the HTML::Entities::encode_entities
> command only be used for some of the cleanhtml calls and if so would
> that be only the remark/comment entries?
>
> Regards,
> Adolf.
>
>>
>> -Michael
>>
>>> On 5 Mar 2024, at 19:44, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>>>
>>> - Using cleanhtml on Remarks means that all characters with
>>> diacritical marks such as
>>> umlauts or grave accents etc get encoded into other characters.
>>> - If Freifunk München e.V. is entered as a remark it gets converted to
>>> Freifunk München e.V.
>>> - cleanhtml is only removed from Remarks or Comment fields. In other
>>> places it has been
>>> left in place.
>>>
>>> Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
>>> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
>>> ---
>>> html/cgi-bin/connscheduler.cgi | 4 ++--
>>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/html/cgi-bin/connscheduler.cgi
>>> b/html/cgi-bin/connscheduler.cgi
>>> index cc78cbc1b..817247cc4 100644
>>> --- a/html/cgi-bin/connscheduler.cgi
>>> +++ b/html/cgi-bin/connscheduler.cgi
>>> @@ -2,7 +2,7 @@
>>> ###############################################################################
>>>
>>> # #
>>> # IPFire.org - A linux based
>>> firewall #
>>> -# Copyright (C) 2007 Michael Tremer & Christian
>>> Schmidt #
>>> +# Copyright (C) 2007-2024 IPFire Team
>>> <info(a)ipfire.org> #
>>> # #
>>> # This program is free software: you can redistribute it and/or
>>> modify #
>>> # it under the terms of the GNU General Public License as published
>>> by #
>>> @@ -186,7 +186,7 @@ if ( ($cgiparams{'ACTION'} eq 'add') ||
>>> ($cgiparams{'ACTION'} eq 'update') )
>>> $CONNSCHED::config[$i]{'DAYSTYPE'} =
>>> lc($cgiparams{'ACTION_DAYSTYPE'});
>>> $CONNSCHED::config[$i]{'DAYS'} = $l_days;
>>> $CONNSCHED::config[$i]{'WEEKDAYS'} = $l_weekdays;
>>> - $CONNSCHED::config[$i]{'COMMENT'} =
>>> &Header::cleanhtml($cgiparams{'ACTION_COMMENT'});
>>> + $CONNSCHED::config[$i]{'COMMENT'} = $cgiparams{'ACTION_COMMENT'};
>>>
>>> &CONNSCHED::WriteConfig;
>>> }
>>> --
>>> 2.44.0
>>>
>>
>
--
Sent from my laptop
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] connscheduler.cgi: Remove cleanhtml command from Remark
2024-03-07 11:18 ` Adolf Belka
@ 2024-03-07 13:19 ` Adolf Belka
0 siblings, 0 replies; 10+ messages in thread
From: Adolf Belka @ 2024-03-07 13:19 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 7404 bytes --]
Hi Michael,
On 07/03/2024 12:18, Adolf Belka wrote:
> Hi Michael,
>
> I think I know how to solve the problem.
>
> I tested out using HTML::Entities::encode_entities in a very simple Perl program and found I got the same type of entity encoding as in the WUI CGI pages.
>
> However, if I treated the string of characters as utf8 then the HTML::Entities::encode_entities gave the results expected.
>
> So I need to figure out how to treat the remark strings as utf8 and hopefully that should fix the problem. At least I have a view of a path forward on this issue now, that will keep the protection of the cleanhtml command while also allowing characters with diacritical marks, plus special characters such as the Cyrillic alphabet and also things like the german eszet that currently all get mangled.
>
> Will let you know how I get on.
>
I got it to work. I used the dns.cgi page with the cleanhtml line still in it. I then ran decode("UTF-8", "Remark string") before running the cleanhtml command on the same string.
I entered ß Ф Ч < > Ӧ ü £ μ ô ò ó õ å ä ã â á à and after it was accepted the WUI page still showed the same characters so it looked to have worked. In the servers file the characters are all encoded entities with the names top be expected
ß Ф Ч < > Ӧ ü £ μ ô ò ó õ å ä ã â á à
To make that work I had to add use Encode at the top of the dns.cgi page.
So unless there is any indication back that this approach is not a good one I will start to work on new patch updates for the various pages that will keep the existing cleanhtml commands but decode the strings from UTF-8 to enable the HTML::Entities command to work correctly.
Regards,
Adolf
> Additionally I will also later on create patches for the WUI CGI pages for the Firewall Groups and for WIO as they do not use the cleanhtml command at all yet they also have many Remark entries. I will also check out the other WUI pages that don't use the cleanhtml command to see if they have remarks etc that should use it.
>
> Regards,
>
> Adolf.
>
> On 06/03/2024 23:23, Adolf Belka wrote:
>> Hi Michael,
>>
>> On 06/03/2024 22:28, Michael Tremer wrote:
>>> Hello Adolf,
>>>
>>> I believe that I cannot merge these patches.
>> Then you need to also look back at the dns.cgi patch for the bug fix due to german umlauts being changed. The acceptance of that patch is what made me create these patches as they all had the same problem with remarks as well. If this can't be accepted as is then that patch needs to be reverted.
>>
>> https://git.ipfire.org/?p=ipfire-2.x.git;a=commit;h=7c6ff5ff12331a53f416080a44c8d6145e78bfac
>>>
>>> The reason simply is that it would create a store cross-site scripting attack vector because someone could store some <script> tags with some JS which will be executed if another admin opens the same page.
>>>
>>> That is why we escape the content so that if there are any special characters like <> for HTML tags they won’t be interpreted by the browser.
>>>
>>> We might have problems where we accidentally call the cleanhtml function twice which should show garbage. We might also have a problem where the function is not giving us the output that we want.
>>>
>>> Which strings have been causing problems? Just German umlauts like “äöü”?
>> It is any character that has an accent or other diacritical mark.
>>
>> I just tried entering the following into the remark section for a dns server entry as an example
>> Ä ã ö â á à
>>
>> and the remark was changed to
>> Ä ã ö â á Ã
>>
>> and if I edit the entry but don't change the remark the new characters above get changed again into
>> Ä ã ö â á ÃÂ
>>
>>
>> I would have expected that running cleanhtml should result in characters that are considered safe after one run through but it seems that the encoding creates characters that are encoded again by cleanhtml as being unsafe and then those ones are again still considered unsafe.
>>
>> If the cleanhtml command needs to stay being used also for the remark entries then I have no idea how to allow german umlauts and other accented characters to be shown correctly because they are all higher bit ascii characters and those are encoded by default by the cleanhtml process as being considered unsafe so I would either need some help on how to deal with it or maybe someone else needs to pick up the original bug#12395
>>
>> The only thing I found is that cleanhtml calls the escape function which calls the HTML::Entities::encode_entities command but that command can have an additional option which defines the characters that are considered unsafe, but then I would need some guidance on which characters are considered unsafe and if that set applies to all invocations of the cleanhtml command. ie should a modified cleanhtml command with the extra option for the HTML::Entities::encode_entities command only be used for some of the cleanhtml calls and if so would that be only the remark/comment entries?
>>
>> Regards,
>> Adolf.
>>
>>>
>>> -Michael
>>>
>>>> On 5 Mar 2024, at 19:44, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>>>>
>>>> - Using cleanhtml on Remarks means that all characters with diacritical marks such as
>>>> umlauts or grave accents etc get encoded into other characters.
>>>> - If Freifunk München e.V. is entered as a remark it gets converted to
>>>> Freifunk München e.V.
>>>> - cleanhtml is only removed from Remarks or Comment fields. In other places it has been
>>>> left in place.
>>>>
>>>> Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
>>>> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
>>>> ---
>>>> html/cgi-bin/connscheduler.cgi | 4 ++--
>>>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>>>
>>>> diff --git a/html/cgi-bin/connscheduler.cgi b/html/cgi-bin/connscheduler.cgi
>>>> index cc78cbc1b..817247cc4 100644
>>>> --- a/html/cgi-bin/connscheduler.cgi
>>>> +++ b/html/cgi-bin/connscheduler.cgi
>>>> @@ -2,7 +2,7 @@
>>>> ###############################################################################
>>>> # #
>>>> # IPFire.org - A linux based firewall #
>>>> -# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
>>>> +# Copyright (C) 2007-2024 IPFire Team <info(a)ipfire.org> #
>>>> # #
>>>> # This program is free software: you can redistribute it and/or modify #
>>>> # it under the terms of the GNU General Public License as published by #
>>>> @@ -186,7 +186,7 @@ if ( ($cgiparams{'ACTION'} eq 'add') || ($cgiparams{'ACTION'} eq 'update') )
>>>> $CONNSCHED::config[$i]{'DAYSTYPE'} = lc($cgiparams{'ACTION_DAYSTYPE'});
>>>> $CONNSCHED::config[$i]{'DAYS'} = $l_days;
>>>> $CONNSCHED::config[$i]{'WEEKDAYS'} = $l_weekdays;
>>>> - $CONNSCHED::config[$i]{'COMMENT'} = &Header::cleanhtml($cgiparams{'ACTION_COMMENT'});
>>>> + $CONNSCHED::config[$i]{'COMMENT'} = $cgiparams{'ACTION_COMMENT'};
>>>>
>>>> &CONNSCHED::WriteConfig;
>>>> }
>>>> --
>>>> 2.44.0
>>>>
>>>
>>
>
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-03-07 13:19 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-05 18:44 [PATCH] connscheduler.cgi: Remove cleanhtml command from Remark Adolf Belka
2024-03-05 18:44 ` [PATCH] dhcp.cgi: " Adolf Belka
2024-03-05 18:44 ` [PATCH] dnsforward.cgi: " Adolf Belka
2024-03-05 18:44 ` [PATCH] ovpnmain.cgi: " Adolf Belka
2024-03-05 18:44 ` [PATCH] vpnmain.cgi: " Adolf Belka
2024-03-05 18:44 ` [PATCH] wakeonlan.cgi: " Adolf Belka
2024-03-06 21:28 ` [PATCH] connscheduler.cgi: " Michael Tremer
2024-03-06 22:23 ` Adolf Belka
2024-03-07 11:18 ` Adolf Belka
2024-03-07 13:19 ` Adolf Belka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox