Server IP : 195.201.23.43 / Your IP : 52.15.237.156 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/usermin/htaccess/ |
Upload File : |
#!/usr/bin/perl # list_authusers.cgi # Displays a list of users from a text file require './htaccess-lib.pl'; require './auth-lib.pl'; &ReadParse(); $desc = &text('authu_header', "<tt>$in{'file'}</tt>"); &ui_print_header($desc, $text{'authu_title'}, ""); $f = $in{'file'}; @users = sort { $a cmp $b } &list_authusers($f); if (@users) { print "<table border width=100%>\n"; print "<tr $tb> <td><b>",&text('authu_header2', "<tt>$f</tt>"), "</b></td> </tr>\n"; print "<tr $cb> <td><table width=100%>\n"; for($i=0; $i<@users; $i++) { $u = $users[$i]; if ($i%4 == 0) { print "<tr>\n"; } printf "<td width=25%><a href=\"edit_authuser.cgi?user=$u&". "file=%s&url=%s\">$u</a></td>\n", &urlize($f), &urlize(&this_url()); if ($i%4 == 3) { print "</tr>\n"; } } while($i++%4) { print "<td width=25%></td>\n"; } print "</table></td></tr></table>\n"; } else { print "<b>",&text('authu_none', "<tt>$f</tt>"),"</b><p>\n"; } printf "<a href=\"edit_authuser.cgi?file=%s&url=%s\">%s</a><p>\n", &urlize($f), &urlize(&this_url()), $text{'authu_add'}; &ui_print_footer($in{'url'}, $text{'auth_return'});Private