Server IP : 195.201.23.43 / Your IP : 18.191.239.71 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/webmin/samba/ |
Upload File : |
#!/usr/bin/perl # save_euser.cgi # Save an existing samba user require './samba-lib.pl'; &ReadParse(); if ($in{'delete'}) { # Just redirect to delete page &redirect("delete_euser.cgi?idx=$in{'idx'}"); return; } # check acls &error_setup("$text{'eacl_aviol'}ask_epass.cgi"); &error("$text{'eacl_np'} $text{'eacl_pmusers'}") unless $access{'maint_users'} && $access{'view_users'}; # save &error_setup($text{'saveuser_fail'}); &lock_file($config{'smb_passwd'}); @list = &list_users(); $u = $list[$in{'idx'}]; # check inputs $in{'uid'} =~ /^\d+$/ || &error(&text('saveuser_uid', $in{'uid'})); $u->{'uid'} = $in{'uid'}; if ($in{'new'}) { $u->{'opts'} = [ split(/\0/, $in{'opts'}) ]; } else { $in{'realname'} !~ /:/ || &error($text{'saveuser_colon'}); (-d $in{'homedir'}) || &error(&text('saveuser_home', $in{'homedir'})); (-x $in{'shell'}) || &error(&text('saveuser_shell', $in{'shell'})); $u->{'home'} = $in{'homedir'}; $u->{'shell'} = $in{'shell'}; $u->{'real'} = $in{'realname'}; } # apply changes if ($in{ptype} == 0) { $u->{'pass1'} = $u->{'$pass2'} = ("X" x 32); } elsif ($in{ptype} == 1) { $u->{'pass1'} = "NO PASSWORDXXXXXXXXXXXXXXXXXXXXX"; $u->{'pass2'} = $u->{'pass1'}; } elsif ($in{ptype} == 3) { # changing password.. need to set later with smbpasswd $u->{'pass1'} = $u->{'$pass2'} = ("X" x 32); $set_passwd = 1; } &modify_user($u); # Call password change program if necessary if ($set_passwd) { &set_password($u->{'name'}, $in{'pass'}, \$err) || &error(&text('saveuser_pass', $err)); } &unlock_file($config{'smb_passwd'}); &webmin_log("save", "euser", $u->{'name'}, $u); &redirect("edit_epass.cgi");Private