summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Oetiker <tobi@oetiker.ch>2012-01-11 09:26:18 +0100
committerTobias Oetiker <tobi@oetiker.ch>2012-01-11 09:26:18 +0100
commitea18202ce6ecd0ff619f7fbc7c2329db3bd3d086 (patch)
treef56fe6dfa386fecfc07f890e1f205069dbad44e8
parent0c43c8b653065862d6dd10ffd6789b168c138b21 (diff)
downloadsmokeping-ea18202ce6ecd0ff619f7fbc7c2329db3bd3d086.tar.gz
smokeping-ea18202ce6ecd0ff619f7fbc7c2329db3bd3d086.tar.xz
be more careful in handling input from the web to prevent xss. Thanks to
Russ McRee <holisticinfosec@gmail.com> for pointing this out.
-rw-r--r--CHANGES3
-rw-r--r--lib/Smokeping.pm18
2 files changed, 16 insertions, 5 deletions
diff --git a/CHANGES b/CHANGES
index 8130241..a4610d8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+* be more careful in handling input from the web to prevent xss. Thanks to
+ Russ McRee <holisticinfosec@gmail.com> for pointing this out.
+
* Updated TCPPing probe -- Chris Wilson chris aptivate.org
* Make Median matcher work without complaint at startup and if unknown data elements occur in the stream.
diff --git a/lib/Smokeping.pm b/lib/Smokeping.pm
index 1d68f62..bba6dca 100644
--- a/lib/Smokeping.pm
+++ b/lib/Smokeping.pm
@@ -168,8 +168,10 @@ sub cgiurl {
sub hierarchy ($){
my $q = shift;
my $hierarchy = '';
+ my $h = $q->param('hierarchy');
if ($q->param('hierarchy')){
- $hierarchy = 'hierarchy='.$q->param('hierarchy').';';
+ $h =~ s/[<>&%]/./g;
+ $hierarchy = 'hierarchy='.$h.';';
};
return $hierarchy;
}
@@ -210,6 +212,7 @@ sub update_dynaddr ($$){
my $address = $ENV{REMOTE_ADDR};
my $targetptr = $cfg->{Targets};
foreach my $step (@target){
+ $step =~ s/[<>&%]/./g;
return "Error: Unknown target $step"
unless defined $targetptr->{$step};
$targetptr = $targetptr->{$step};
@@ -1044,7 +1047,7 @@ sub get_detail ($$$$;$){
my $tree = shift;
my $open = shift;
my $mode = shift || $q->param('displaymode') || 's';
-
+ $mode =~ s/[<>&%]/./g;
my $phys_tree = $tree;
my $phys_open = $open;
if ($tree->{__tree_link}){
@@ -1443,13 +1446,15 @@ sub get_detail ($$$$;$){
} elsif ($mode eq 's') { # classic mode
$startstr =~ s/\s/%20/g;
$endstr =~ s/\s/%20/g;
+ my $t = $q->param('target');
+ $t =~ s/[<>&%]/./g;
for my $slave (@slaves){
my $s = $slave ? "~$slave" : "";
$page .= "<div>";
# $page .= (time-$timer_start)."<br/>";
# $page .= join " ",map {"'$_'"} @task;
$page .= "<br/>";
- $page .= ( qq{<a href="}.cgiurl($q,$cfg)."?".hierarchy($q).qq{displaymode=n;start=$startstr;end=now;}."target=".$q->param('target').$s.'">'
+ $page .= ( qq{<a href="}.cgiurl($q,$cfg)."?".hierarchy($q).qq{displaymode=n;start=$startstr;end=now;}."target=".$t.$s.'">'
. qq{<IMG BORDER="0" SRC="${imghref}${s}_${end}_${start}.png">}."</a>" ); #"
$page .= "</div>";
}
@@ -1593,8 +1598,10 @@ sub display_webpage($$){
my $cfg = shift;
my $q = shift;
my $targ = '';
- if ( $q->param('target') and $q->param('target') !~ /\.\./ and $q->param('target') =~ /(\S+)/){
+ my $t = $q->param('target');
+ if ( $t and $t !~ /\.\./ and $t =~ /(\S+)/){
$targ = $1;
+ $targ =~ s/[<>;%]/./g;
}
my ($path,$slave) = split(/~/,$targ);
if ($slave and $slave =~ /(\S+)/){
@@ -1603,8 +1610,9 @@ sub display_webpage($$){
$slave = $1;
}
my $hierarchy = $q->param('hierarchy');
+ $hierarchy =~ s/[<>;%]/./g;
die "ERROR: unknown hierarchy $hierarchy\n"
- if $hierarchy and not $cfg->{Presentation}{hierarchies}{$hierarchy};
+ if $hierarchy and not $cfg->{Presentation}{hierarchies}{$hierarchy};
my $open = [ (split /\./,$path||'') ];
my $open_orig = [@$open];
$open_orig->[-1] .= '~'.$slave if $slave;