-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcli.php
More file actions
483 lines (424 loc) · 13.1 KB
/
cli.php
File metadata and controls
483 lines (424 loc) · 13.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<?php
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
define('G_DNSTOOL_ENTRY_POINT', 'cli.php');
require("definitions.php");
require("config.default.php");
require("config.php");
require_once("psf/psf.php");
require_once("includes/common.php");
require_once("includes/debug.php");
require_once("includes/login.php");
require_once("includes/passwd_file.php");
function info_log($text)
{
print("$text\n");
}
function fatal_log($text)
{
print("FATAL: $text\n");
}
/**
* Read a password from the terminal without displaying it
*
* @param string $prompt The prompt to display to the user
* @return string The password entered by the user
*/
function read_password($prompt = "Enter password: ")
{
echo $prompt;
// Check if we're on Windows or Unix
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN')
{
// Windows approach using COM object if available
if (class_exists('COM'))
{
try
{
$shell = new COM('WScript.Shell');
$obj = $shell->Exec('powershell.exe -Command "$password = Read-Host -AsSecureString; $BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($password); [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR)"');
$password = '';
while (!$obj->StdOut->AtEndOfStream) {
$password .= $obj->StdOut->ReadLine();
}
return $password;
} catch (Exception $e) {
// Fallback method if COM object fails
}
}
// Simple fallback for Windows
$password = '';
while (($char = fgetc(STDIN)) !== "\r")
{
if ($char === "\x08")
{ // Backspace
if (strlen($password) > 0)
$password = substr($password, 0, -1);
} else
{
$password .= $char;
}
}
fgets(STDIN); // Consume the following \n
echo "\n";
return $password;
} else
{
// Unix/Linux approach
system('stty -echo');
$password = trim(fgets(STDIN));
system('stty echo');
echo "\n"; // Add a newline since the user's Enter keypress wasn't displayed
return $password;
}
}
function print_help()
{
global $g_auth;
if ($g_auth != "file")
{
print("This CLI tool is only available when using file based authentication to manage user database (g_auth = 'file')\n");
exit(1);
}
print ("Supported commands:\n" .
" help: Displays this help.\n" .
" user-list: Lists all users.\n" .
" user-add username password: Adds a new user.\n" .
" user-del username: Deletes a user.\n" .
" user-passwd username: Changes a user's password.\n" .
" user-lock username: Locks a user account.\n" .
" user-unlock username: Unlocks a user account.\n" .
" user-role-list username: Lists roles for a user.\n" .
" user-role-add username role: Adds a role to a user.\n" .
" user-role-del username role: Deletes a role from a user.\n" .
"\n");
}
function get_passwd($create = false)
{
global $g_auth_file_db;
if (!file_exists($g_auth_file_db))
{
if ($create)
{
// Attempt to create an empty file
if (false === @touch($g_auth_file_db))
{
fatal_log("Failed to create user database file: " . $g_auth_file_db);
exit(1);
}
} else
{
fatal_log("User database file does not exist: " . $g_auth_file_db);
exit(1);
}
}
$passwd_file = new PasswdFile($g_auth_file_db);
if (!$passwd_file->Load())
{
fatal_log("Failed to read user database.");
exit(1);
}
return $passwd_file;
}
if (php_sapi_name() != "cli")
{
fatal_log("This can be only executed in CLI mode");
exit(1);
}
if ($argc < 2)
{
print_help();
exit(1);
}
$command = $argv[1];
switch ($command)
{
case 'help':
print_help();
break;
case 'user-list':
$passwd_file = get_passwd();
$users = $passwd_file->GetUsers();
foreach ($users as $user)
{
$roles = "No roles";
if (!empty($user['roles']))
$roles = implode(',', $user['roles']);
print("User: " . $user['username'] . " (Enabled: " . ($user['enabled'] ? 'Yes' : 'No') . ", Roles: ${roles})\n");
}
break;
case 'user-add':
if ($argc != 3)
{
fatal_log("Usage: user-add username");
exit(1);
}
$username = $argv[2];
// Get password with masking
$password = read_password("Enter password for user '$username': ");
if (empty($password))
{
fatal_log("Password cannot be empty.");
exit(1);
}
// Confirm password
$confirm_password = read_password("Confirm password: ");
if ($password !== $confirm_password)
{
fatal_log("Passwords do not match.");
exit(1);
}
$passwd_file = get_passwd(true);
if ($passwd_file->UserExists($username))
{
fatal_log("User '$username' already exists in database.");
exit(1);
}
if ($passwd_file->AddUser($username, $password))
{
if ($passwd_file->Save())
{
info_log("User '" . $username . "' added successfully.");
}
else
{
fatal_log("Failed to save user database.");
}
}
else
{
fatal_log("Failed to add user '" . $username . "'.");
}
break;
case 'user-del':
if ($argc != 3)
{
fatal_log("Usage: user-del username");
exit(1);
}
$username = $argv[2];
$passwd_file = get_passwd();
if (!$passwd_file->UserExists($username))
{
fatal_log("User '$username' not found in database.");
exit(1);
}
if ($passwd_file->DeleteUser($username))
{
if ($passwd_file->Save())
{
info_log("User '" . $username . "' deleted successfully.");
}
else
{
fatal_log("Failed to save user database.");
}
}
else
{
fatal_log("Failed to delete user '" . $username . "'.");
}
break;
case 'user-lock':
if ($argc != 3)
{
fatal_log("Usage: user-lock username");
exit(1);
}
$username = $argv[2];
$passwd_file = get_passwd();
if (!$passwd_file->UserExists($username))
{
fatal_log("User '$username' not found in database.");
exit(1);
}
$result = $passwd_file->LockUser($username);
if ($result === true)
{
if ($passwd_file->Save())
{
info_log("User '" . $username . "' locked successfully.");
}
else
{
fatal_log("Failed to save user database.");
}
}
else if ($result === 'already_locked')
{
info_log("User '$username' is already locked.");
}
else
{
fatal_log("Failed to lock user '" . $username . "'.");
}
break;
case 'user-unlock':
if ($argc != 3)
{
fatal_log("Usage: user-unlock username");
exit(1);
}
$username = $argv[2];
$passwd_file = get_passwd();
if (!$passwd_file->UserExists($username))
{
fatal_log("User '$username' not found in database.");
exit(1);
}
$result = $passwd_file->UnlockUser($username);
if ($result === true)
{
if ($passwd_file->Save())
{
info_log("User '" . $username . "' unlocked successfully.");
}
else
{
fatal_log("Failed to save user database.");
}
}
else if ($result === 'already_unlocked')
{
info_log("User '$username' is already unlocked.");
}
else
{
fatal_log("Failed to unlock user '" . $username . "'.");
}
break;
case 'user-role-list':
if ($argc != 3)
{
fatal_log("Usage: user-role-list username");
exit(1);
}
$username = $argv[2];
$passwd_file = get_passwd();
if (!$passwd_file->UserExists($username))
{
fatal_log("User '$username' not found in database.");
exit(1);
}
$roles = $passwd_file->GetUserRoles($username);
if (empty($roles) || (count($roles) === 1 && empty($roles[0])))
{
info_log("User '" . $username . "' has no roles assigned.");
}
else
{
info_log("Roles for user '" . $username . "': " . implode(", ", $roles));
}
break;
case 'user-role-add':
if ($argc != 4)
{
fatal_log("Usage: user-role-add username role");
exit(1);
}
$username = $argv[2];
$role = $argv[3];
$passwd_file = get_passwd();
if (!$passwd_file->UserExists($username))
{
fatal_log("User '$username' not found in database.");
exit(1);
}
if ($passwd_file->AddRoleToUser($username, $role))
{
if ($passwd_file->Save())
{
info_log("Role '" . $role . "' added to user '" . $username . "' successfully.");
}
else
{
fatal_log("Failed to save user database.");
}
}
else
{
fatal_log("Failed to add role '" . $role . "' to user '" . $username . "'.");
}
break;
case 'user-role-del':
if ($argc != 4)
{
fatal_log("Usage: user-role-del username role");
exit(1);
}
$username = $argv[2];
$role = $argv[3];
$passwd_file = get_passwd();
if (!$passwd_file->UserExists($username))
{
fatal_log("User '$username' not found in database.");
exit(1);
}
if ($passwd_file->DeleteRoleFromUser($username, $role))
{
if ($passwd_file->Save())
{
info_log("Role '" . $role . "' removed from user '" . $username . "' successfully.");
}
else
{
fatal_log("Failed to save user database.");
}
}
else
{
fatal_log("Failed to remove role '" . $role . "' from user '" . $username . "'.");
}
break;
case 'user-passwd':
if ($argc != 3)
{
fatal_log("Usage: user-passwd username");
exit(1);
}
$username = $argv[2];
$passwd_file = get_passwd();
if (!$passwd_file->UserExists($username))
{
fatal_log("User '$username' not found in database.");
exit(1);
}
// Get new password
$new_password = read_password("Enter new password for user '$username': ");
if (empty($new_password))
{
fatal_log("Password cannot be empty.");
exit(1);
}
// Confirm new password
$confirm_password = read_password("Confirm new password: ");
if ($new_password !== $confirm_password)
{
fatal_log("Passwords do not match.");
exit(1);
}
if ($passwd_file->ChangePassword($username, $new_password))
{
if ($passwd_file->Save())
{
info_log("Password for user '" . $username . "' changed successfully.");
}
else
{
fatal_log("Failed to save user database.");
}
}
else
{
fatal_log("Failed to change password for user '" . $username . "'.");
}
break;
default:
fatal_log("Unknown command '$command'. Use 'help' for a list of commands.");
}