Server IP : 195.201.23.43 / Your IP : 18.119.143.234 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_authgroups.cgi # Displays a list of groups and their members require './htaccess-lib.pl'; require './auth-lib.pl'; &ReadParse(); $desc = &text('authg_header', "<tt>$in{'file'}</tt>"); &ui_print_header($desc, $text{'authg_title'}, ""); $f = $in{'file'}; @groups = sort { $a->{'name'} cmp $b->{'name'} } &list_authgroups($in{'file'}); if (@groups) { print "<table border width=100%>\n"; print "<tr $tb> <td><b>",&text('authg_header2', "<tt>$f</tt>"), "</b></td></tr>\n"; print "<tr $cb> <td><table width=100%>\n"; print "<tr> <td><b>$text{'authg_group'}</b></td> ", "<td><b>$text{'authg_mems'}</b></td> </tr>\n"; for($i=0; $i<@groups; $i++) { $g = $groups[$i]->{'group'}; @m = @{$groups[$i]->{'members'}}; if (@m > 15) { @m = @m[0..14]; } printf "<tr> <td><a href=\"edit_authgroup.cgi?group=$g&". "file=%s&url=%s\">$g</a></td>\n", &urlize($f), &urlize(&this_url()); printf "<td>%s</td> </tr>\n", @m ? join(" , ", @m) : "<i>None</i>"; } print "</table></td></tr></table>\n"; } else { print "<b>",&text('authg_none', "<tt>$f</tt>"),"</b><p>\n"; } printf "<a href=\"edit_authgroup.cgi?file=%s&url=%s\">%s</a><p>\n", &urlize($f), &urlize(&this_url()), $text{'authg_add'}; &ui_print_footer($in{'url'}, $text{'auth_return'});Private