Skip to content
Snippets Groups Projects
Commit ac32a443 authored by tbrehm's avatar tbrehm
Browse files

Improved user delete code for non jailkit users.

parent 396f0e67
No related branches found
No related tags found
No related merge requests found
...@@ -148,11 +148,14 @@ class shelluser_base_plugin { ...@@ -148,11 +148,14 @@ class shelluser_base_plugin {
// Get the UID of the user // Get the UID of the user
$userid = intval($app->system->getuid($data['old']['username'])); $userid = intval($app->system->getuid($data['old']['username']));
if($userid > $this->min_uid) { if($userid > $this->min_uid) {
$command = 'userdel -f'; // We delete only non jailkit users, jailkit users will be deleted by the jailkit plugin.
$command .= ' '.escapeshellcmd($data['old']['username']); if ($data['old']['chroot'] != "jailkit") {
$command = 'userdel -f';
$command .= ' '.escapeshellcmd($data['old']['username']);
exec($command); exec($command);
$app->log("Deleted shelluser: ".$data['old']['username'],LOGLEVEL_DEBUG); $app->log("Deleted shelluser: ".$data['old']['username'],LOGLEVEL_DEBUG);
}
} else { } else {
$app->log("UID = $userid for shelluser:".$data['old']['username']." not allowed.",LOGLEVEL_ERROR); $app->log("UID = $userid for shelluser:".$data['old']['username']." not allowed.",LOGLEVEL_ERROR);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment