]> git.proxmox.com Git - pve-access-control.git/blobdiff - PVE/API2/AccessControl.pm
add test if user exists
[pve-access-control.git] / PVE / API2 / AccessControl.pm
index 3d7c80d95d602ffbfbb42e011f26cf57eadf488b..f06a244d6b8783ec84fde00919163f985b43baab 100644 (file)
@@ -153,6 +153,10 @@ __PACKAGE__->register_method ({
                ($tmp eq 'root@pam' || $tmp eq $username)) {
                # got valid ticket
                # Note: root@pam can create tickets for other users
+               
+               # test if user exists and is enabled
+               my $usercfg = cfs_read_file('user.cfg');
+               die "no such user ('$username')\n" if !user_enabled($usercfg, $username);
            } else {
                $username = PVE::AccessControl::authenticate_user($username, $param->{password});
            }