Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
libexec /
webmin /
filter /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
2.96
KB
-rw-r--r--
aliases-lib.pl
7.93
KB
-rwxr-xr-x
autoreply-file-lib.pl
2.28
KB
-rwxr-xr-x
config
218
B
-rw-r--r--
config.info
489
B
-rw-r--r--
config.info.ca
556
B
-rw-r--r--
config.info.ca.UTF-8
575
B
-rw-r--r--
config.info.cz
344
B
-rw-r--r--
config.info.cz.UTF-8
370
B
-rw-r--r--
config.info.de
598
B
-rw-r--r--
config.info.de.UTF-8
598
B
-rw-r--r--
config.info.el
264
B
-rw-r--r--
config.info.hu
0
B
-rw-r--r--
config.info.nl
584
B
-rw-r--r--
config.info.nl.UTF-8
584
B
-rw-r--r--
config.info.no
527
B
-rw-r--r--
config.info.no.UTF-8
527
B
-rw-r--r--
config.info.pl
580
B
-rw-r--r--
config.info.pl.UTF-8
604
B
-rw-r--r--
delete.cgi
431
B
-rwxr-xr-x
down.cgi
261
B
-rwxr-xr-x
edit.cgi
8.97
KB
-rwxr-xr-x
edit_auto.cgi
3.11
KB
-rwxr-xr-x
edit_forward.cgi
1.18
KB
-rwxr-xr-x
filter-lib.pl
17.71
KB
-rwxr-xr-x
index.cgi
4.33
KB
-rwxr-xr-x
module.info
260
B
-rw-r--r--
module.info.ca
109
B
-rw-r--r--
module.info.ca.UTF-8
121
B
-rw-r--r--
module.info.cz
39
B
-rw-r--r--
module.info.cz.UTF-8
52
B
-rw-r--r--
module.info.de
114
B
-rw-r--r--
module.info.de.UTF-8
126
B
-rw-r--r--
module.info.hu
81
B
-rw-r--r--
module.info.hu.UTF-8
104
B
-rw-r--r--
module.info.ms_MY
109
B
-rw-r--r--
module.info.ms_MY.UTF-8
121
B
-rw-r--r--
module.info.nl
34
B
-rw-r--r--
module.info.nl.UTF-8
40
B
-rw-r--r--
module.info.no
37
B
-rw-r--r--
module.info.no.UTF-8
43
B
-rw-r--r--
module.info.pl
114
B
-rw-r--r--
module.info.pl.UTF-8
130
B
-rw-r--r--
move.cgi
1.61
KB
-rwxr-xr-x
save.cgi
7.63
KB
-rwxr-xr-x
save_auto.cgi
2.73
KB
-rwxr-xr-x
save_forward.cgi
959
B
-rwxr-xr-x
up.cgi
259
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : autoreply-file-lib.pl
# Functions for reading and writing autoreply files # read_autoreply(file, &simple) # Fills in the autoreply parts of a simple alias structure from a file sub read_autoreply { local ($file, $simple) = @_; local @lines; open(FILE, $file); while(<FILE>) { if (/^Reply-Tracking:\s*(.*)/) { $simple->{'replies'} = $1; } elsif (/^Reply-Period:\s*(.*)/) { $simple->{'period'} = $1; } elsif (/^No-Autoreply:\s*(.*)/) { $simple->{'no_autoreply'} = $1; } elsif (/^No-Autoreply-Regexp:\s*(.*)/) { push(@{$simple->{'no_autoreply_regexp'}}, $1); } elsif (/^Autoreply-File:\s*(.*)/) { push(@{$simple->{'autoreply_file'}}, $1); } elsif (/^Autoreply-Start:\s*(\d+)/) { $simple->{'autoreply_start'} = $1; } elsif (/^Autoreply-End:\s*(\d+)/) { $simple->{'autoreply_end'} = $1; } elsif (/^From:\s*(.*)/) { $simple->{'from'} = $1; } elsif (/^Charset:\s*(\S+)/) { $simple->{'charset'} = $1; } elsif (/^Subject:\s*(\S.*)/) { $simple->{'subject'} = $1; } else { push(@lines, $_); } } close(FILE); $simple->{'autotext'} = join("", @lines); } # write_autoreply(&file, &simple) # Writes the autoreply parts of a simple alias structure to a file sub write_autoreply { local ($file, $simple) = @_; &open_tempfile(AUTO, ">$file"); if ($simple->{'replies'}) { &print_tempfile(AUTO, "Reply-Tracking: $simple->{'replies'}\n"); } if ($simple->{'period'}) { &print_tempfile(AUTO, "Reply-Period: $simple->{'period'}\n"); } if ($simple->{'no_autoreply'}) { &print_tempfile(AUTO, "No-Autoreply: $simple->{'no_autoreply'}\n"); } foreach my $r (@{$simple->{'no_autoreply_regexp'}}) { &print_tempfile(AUTO, "No-Autoreply-Regexp: $r\n"); } foreach my $f (@{$simple->{'autoreply_file'}}) { &print_tempfile(AUTO, "Autoreply-File: $f\n"); } if ($simple->{'autoreply_start'}) { &print_tempfile(AUTO, "Autoreply-Start: $simple->{'autoreply_start'}\n"); } if ($simple->{'autoreply_end'}) { &print_tempfile(AUTO, "Autoreply-End: $simple->{'autoreply_end'}\n"); } if ($simple->{'from'}) { &print_tempfile(AUTO, "From: $simple->{'from'}\n"); } if ($simple->{'charset'}) { &print_tempfile(AUTO, "Charset: $simple->{'charset'}\n"); } if ($simple->{'subject'}) { &print_tempfile(AUTO, "Subject: $simple->{'subject'}\n"); } &print_tempfile(AUTO, $simple->{'autotext'}); &close_tempfile(AUTO); } 1;
Close