%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/share/webmin/usermin/ |
Upload File : |
#!/usr/bin/perl # Display per-user and group logout times options require './usermin-lib.pl'; $access{'logout'} || &error($text{'logout_ecannot'}); &ui_print_header(undef, $text{'logout_title'}, ""); &get_usermin_miniserv_config(\%miniserv); print $text{'logout_desc'},"<p>\n"; foreach $a (split(/\s+/, $miniserv{'logouttimes'})) { if ($a =~ /^([^=]+)=(\S+)$/) { push(@logout, [ $1, $2 ]); } } print &ui_form_start("save_logout.cgi", "post"); print &ui_columns_start([ $text{'logout_type'}, $text{'logout_who'}, $text{'logout_time'} ]); $i = 0; foreach $l (@logout, [ ], [ ], [ ]) { local ($type, $who) = (0, $l->[0]); if ($l->[0] =~ /^\@(.*)$/) { $type = 2; $who = $1; } elsif ($l->[0] =~ /^(\/.*)$/) { $type = 3; } elsif ($l->[0]) { $type = 1; } print &ui_columns_row([ &ui_select("type_$i", $type, [ [ 0, " " ], [ 1, $text{'logout_user'} ], [ 2, $text{'logout_group'} ], [ 3, $text{'logout_file'} ] ]), &ui_textbox("who_$i", $who, 30), &ui_textbox("time_$i", $l->[1], 6) ]); $i++; } print &ui_columns_end(); print &ui_form_end([ [ "save", $text{'save'} ] ]); &ui_print_footer("", $text{'index_return'});