Server IP : 195.201.23.43 / Your IP : 3.17.156.160 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/webmin/sarg/ |
Upload File : |
#!/usr/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"; &is_under_directory($odir, $full) || &error($text{'view_efile'}); # Show index page if (-d $full && -r "$full/index.html") { $full = "$full/index.html"; } # Display file contents my $bs = &get_buffer_size(); if ($full =~ /\.(html|htm)$/i && !$config{'naked'}) { open(FILE, "<$full") || &error($text{'view_eopen'}." : $full"); while(read(FILE, $buf, $bs)) { $data .= $buf; } close(FILE); if ($data =~ /<TITLE>(.*)<\/TITLE>/i) { $title = $1; } $data =~ s/^[\000-\377]*<BODY[^>]*>//i; $data =~ s/<\/BODY>[\000-\377]*$//i; &ui_print_header(undef, $title || $text{'view_title'}, ""); print "<div id=sarg-report>\n"; print $data; print "</div>\n"; &ui_print_footer("", $text{'index_return'}); } elsif (-d $full) { # Show directory listing &ui_print_header(undef, $text{'view_title'}, ""); print "<ul>\n"; opendir(DIR, $full); foreach $f (sort { lc($a) cmp lc($b) } readdir(DIR)) { next if ($f eq "." || $f eq ".."); print "<li><a href='$f/'>$f</a>\n"; } closedir(DIR); print "</ul>\n"; &ui_print_footer("", $text{'index_return'}); } else { # Show RAW file contents open(FILE, "<$full") || &error($text{'view_eopen'}." : $full"); print "Content-type: ",&guess_mime_type($full, "text/plain"),"\n"; print "\n"; while(read(FILE, $buf, $bs)) { print $buf; } close(FILE); }Private