JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr#!/usr/bin/perl # status.cgi # Show the status require './shorewall-lib.pl'; &ui_print_header(undef, $text{'status_title'}, ""); print "
";
open(STATUS, "$config{'shorewall'} status 2>&1 |");
while() {
	print &html_escape($_);
	}
close(STATUS);
print "
\n"; &ui_print_footer("", $text{'index_return'});