public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] clwarn.cgi: Remove XSS
@ 2023-05-24  8:20 Michael Tremer
  0 siblings, 0 replies; only message in thread
From: Michael Tremer @ 2023-05-24  8:20 UTC (permalink / raw)
  To: development

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

Fixes: #12966
Reported-by: Arthur Naullet <arthur.naullet(a)epita.fr>
Reported-by: Rafael Lima <isec-researcher(a)protonmail.com>
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 html/html/clwarn.cgi | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/html/html/clwarn.cgi b/html/html/clwarn.cgi
index 44f7f98ab..c7a415cdb 100644
--- a/html/html/clwarn.cgi
+++ b/html/html/clwarn.cgi
@@ -20,6 +20,7 @@
 ###############################################################################
 
 use CGI qw(param);
+use HTML::Entities();
 
 # enable only the following on debugging purpose
 use warnings;
@@ -30,11 +31,11 @@ $swroot="/var/ipfire";
 
 my $TITLE_VIRUS = "SquidClamAv Virus detection";
 
-my $url = param('url') || '';
-my $virus = param('virus') || '';
-my $source = param('source') || '';
+my $url = &HTML::Entities::encode_entities(param('url') || '');
+my $virus = &HTML::Entities::encode_entities(param('virus') || '');
+my $source = &HTML::Entities::encode_entities(param('source') || '');
 $source =~ s/\/-//;
-my $user = param('user') || '';
+my $user = &HTML::Entities::encode_entities(param('user') || '');
 
 
 # Remove clamd infos
-- 
2.30.2


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-05-24  8:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-24  8:20 [PATCH] clwarn.cgi: Remove XSS Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox