#!/usr/local/bin/perl # view_log.cgi # Display the report for some log file require './sarg-lib.pl'; &ReadParse(); $file = $ENV{'PATH_INFO'} || "/index.html"; $file =~ /\.\./ || $file =~ /\<|\>|\||\0/ && &error($text{'view_efile'}); $conf = &get_config(); $odir = &find_value("output_dir", $conf); $odir ||= &find_value("output_dir", $conf, 1); $odir || &error($text{'view_eodir'}); $full = "$odir$file"; open(FILE, $full) || &error($text{'view_eopen'}." : $full"); # Display file contents if ($full =~ /\.(html|htm)$/i && !$config{'naked'}) { while(read(FILE, $buf, 1024)) { $data .= $buf; } close(FILE); if ($data =~ /