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 /
logviewer /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-07-25 20:55
lang
[ DIR ]
drwxr-xr-x
2026-07-25 20:55
CHANGELOG
103
B
-rw-r--r--
2026-07-17 21:17
acl_security.pl
1.31
KB
-rwxr-xr-x
2026-07-17 21:17
backup_config.pl
569
B
-rwxr-xr-x
2026-07-17 21:17
config
83
B
-rw-r--r--
2026-07-17 21:17
config.info
481
B
-rw-r--r--
2026-07-17 21:17
config.info.ru
576
B
-rw-r--r--
2026-07-17 21:17
defaultacl
24
B
-rw-r--r--
2026-07-17 21:17
index.cgi
4.96
KB
-rwxr-xr-x
2026-07-17 21:22
install_check.pl
294
B
-rwxr-xr-x
2026-07-17 21:17
logviewer-lib.pl
8.14
KB
-rwxr-xr-x
2026-07-17 21:17
module.info
165
B
-rw-r--r--
2026-07-17 21:17
module.info.pl
105
B
-rw-r--r--
2026-07-17 21:17
module.info.ru
190
B
-rw-r--r--
2026-07-17 21:17
postinstall.pl
643
B
-rw-r--r--
2026-07-17 21:17
prefs.info
49
B
-rw-r--r--
2026-07-17 21:17
safeacl
24
B
-rw-r--r--
2026-07-17 21:17
view_log.cgi
13.32
KB
-rwxr-xr-x
2026-07-17 21:22
view_log_progress.cgi
1.27
KB
-rwxr-xr-x
2026-07-17 21:22
Save
Rename
require 'logviewer-lib.pl'; # acl_security_form(&options) # Output HTML for editing security options for the syslog module sub acl_security_form { # Can enter arbitrary filename print &ui_table_row($text{'acl_any'}, &ui_yesno_radio("any", int($_[0]->{'any'}))); # Can view syslog logs and logs from other modules print &ui_table_row($text{'acl_syslog'}, &ui_yesno_radio("syslog", int($_[0]->{'syslog'}))); print &ui_table_row($text{'acl_others'}, &ui_yesno_radio("others", int($_[0]->{'others'}))); # Allowed directories print &ui_table_row($text{'acl_logs'}, &ui_radio("logs_def", $_[0]->{'logs'} ? 0 : 1, [ [ 1, $text{'acl_all'} ], [ 0, $text{'acl_sel'} ] ]). "<br>\n". &ui_textarea("logs", join("\n", split(/\t+/, $_[0]->{'logs'})), 5, 50), 3); # Extra per-user log files print &ui_table_row($text{'acl_extra'}, &ui_textarea("extras", join("\n", split(/\t+/, $_[0]->{'extras'})), 5, 50), 3); } # acl_security_save(&options) # Parse the form for security options for the syslog module sub acl_security_save { $_[0]->{'any'} = $in{'any'}; $_[0]->{'syslog'} = $in{'syslog'}; $_[0]->{'others'} = $in{'others'}; $in{'logs'} =~ s/\r//g; $_[0]->{'logs'} = $in{'logs_def'} ? undef : join("\t", split(/\n/, $in{'logs'})); $_[0]->{'extras'} = join("\t", split(/\n/, $in{'extras'})); }