MINI SHELL

Server : Apache/2.2.2 (Fedora)
System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686
User : apache ( 48)
PHP Version : 5.2.9
Disable Function : NONE
Directory :  /usr/libexec/webmin/pam/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/libexec/webmin/pam/index.cgi
#!/usr/bin/perl
# index.cgi
# Display PAM services on the system

require './pam-lib.pl';
&ui_print_header(undef, $text{'index_title'}, undef, undef, 1, 1, 0,
	&help_search_link("pam", "man", "howto", "doc"));

@pams = sort { $a->{'name'} cmp $b->{'name'} } &get_pam_config();
if (!@pams) {
	print "<p>",&text('index_none', "<tt>$config{'pam_dir'}</tt>",
			  "$gconfig{'webprefix'}/config.cgi?$module_name"),"<p>\n";
	&ui_print_footer("/", $text{'index'});
	exit;
	}

@links = ( "<a href='create_form.cgi'>$text{'index_add'}</a>" );
print &ui_links_row(\@links);
$mid = int((@pams-1) / 2);
print "<table width=100%><tr> <td width=50% valign=top>\n";
&pam_table(@pams[0 .. $mid]);
print "</td> <td width=50% valign=top>\n";
&pam_table(@pams[$mid+1 .. $#pams]);
print "</td> </tr></table>\n";
print &ui_links_row(\@links);

&ui_print_footer("/", $text{'index'});

sub pam_table
{
print &ui_columns_start([ $text{'index_name'}, $text{'index_desc'} ], 100);
foreach $p (@_) {
	local $t = $text{'desc_'.$p->{'name'}};
	print &ui_columns_row([
		"<a href='edit_pam.cgi?idx=$p->{'index'}'>".
		&html_escape($p->{'name'})."</a>",
		$p->{'desc'} || $t
		]);
	}
print &ui_columns_end();
}


Anon7 - 2021