%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/acl/ |
Upload File : |
#!/usr/bin/perl # convert_form.cgi # Display a form for converting unix users to webmin users use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; require './acl-lib.pl'; our (%in, %text, %config, %access); $access{'sync'} && $access{'create'} || &error($text{'convert_ecannot'}); &ui_print_header(undef, $text{'convert_title'}, ""); my @glist = &list_groups(); if ($access{'gassign'} ne '*') { my @gcan = split(/\s+/, $access{'gassign'}); @glist = grep { &indexof($_->{'name'}, @gcan) >= 0 } @glist; } if (!@glist) { print "$text{'convert_nogroups'}<p>\n"; &ui_print_footer("", $text{'index_return'}); exit; } print "$text{'convert_desc'}<p>\n"; print &ui_form_start("convert.cgi", "post"); print &ui_table_start(undef, undef, 2); # Users to convert print &ui_table_row($text{'convert_users'}, &ui_radio_table("conv", 0, [ [ 0, $text{'convert_0'} ], [ 1, $text{'convert_1'}, &ui_textbox("users", undef, 60)." ". &user_chooser_button("users", 1) ], [ 2, $text{'convert_2'}, &ui_textbox("nusers", undef, 60)." ". &user_chooser_button("nusers", 1) ], [ 3, $text{'convert_3'}, &unix_group_input("group") ], [ 4, $text{'convert_4'}, &ui_textbox("min", undef, 6)." - ". &ui_textbox("max", undef, 6) ] ])); # Put into group print &ui_table_row($text{'convert_group'}, &ui_select("wgroup", undef, [ map { $_->{'name'} } @glist ])); # Keep passwords in sync print &ui_table_row($text{'convert_sync2'}, &ui_yesno_radio("sync", 1)); print &ui_table_end(); print &ui_form_end([ [ undef, $text{'convert_ok'} ] ]); &ui_print_footer("", $text{'index_return'});