From: Dietmar Maurer Date: Wed, 18 Jan 2012 06:06:16 +0000 (+0100) Subject: add test if user exists X-Git-Url: https://git.proxmox.com/?p=pve-access-control.git;a=commitdiff_plain;h=66b7e98db9f59f79e3cd742fad8288e8baffcf3f add test if user exists --- diff --git a/PVE/API2/AccessControl.pm b/PVE/API2/AccessControl.pm index 3d7c80d..f06a244 100644 --- a/PVE/API2/AccessControl.pm +++ b/PVE/API2/AccessControl.pm @@ -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}); }