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 /
cluster-copy /
[ HOME SHELL ]
Name
Size
Permission
Action
help
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
1.02
KB
-rw-r--r--
cluster-copy-lib.pl
6.67
KB
-rwxr-xr-x
config
12
B
-rw-r--r--
config.info
83
B
-rw-r--r--
config.info.ca
104
B
-rw-r--r--
config.info.ca.UTF-8
107
B
-rw-r--r--
config.info.de
84
B
-rw-r--r--
config.info.de.UTF-8
84
B
-rw-r--r--
config.info.hu
0
B
-rw-r--r--
config.info.ms_MY
86
B
-rw-r--r--
config.info.ms_MY.UTF-8
86
B
-rw-r--r--
config.info.nl
93
B
-rw-r--r--
config.info.nl.UTF-8
93
B
-rw-r--r--
config.info.no
103
B
-rw-r--r--
config.info.no.UTF-8
103
B
-rw-r--r--
config.info.pl
88
B
-rw-r--r--
config.info.pl.UTF-8
90
B
-rw-r--r--
copy.pl
1.8
KB
-rwxr-xr-x
delete.cgi
507
B
-rwxr-xr-x
edit.cgi
2.67
KB
-rwxr-xr-x
exec.cgi
2.02
KB
-rwxr-xr-x
index.cgi
1.89
KB
-rwxr-xr-x
log_parser.pl
704
B
-rwxr-xr-x
module.info
172
B
-rw-r--r--
module.info.ca
151
B
-rw-r--r--
module.info.ca.UTF-8
168
B
-rw-r--r--
module.info.cz
37
B
-rw-r--r--
module.info.cz.UTF-8
47
B
-rw-r--r--
module.info.de
126
B
-rw-r--r--
module.info.de.UTF-8
138
B
-rw-r--r--
module.info.es
36
B
-rw-r--r--
module.info.es.UTF-8
42
B
-rw-r--r--
module.info.fr
40
B
-rw-r--r--
module.info.fr.UTF-8
46
B
-rw-r--r--
module.info.hu
32
B
-rw-r--r--
module.info.hu.UTF-8
41
B
-rw-r--r--
module.info.ms_MY
133
B
-rw-r--r--
module.info.ms_MY.UTF-8
145
B
-rw-r--r--
module.info.nl
42
B
-rw-r--r--
module.info.nl.UTF-8
48
B
-rw-r--r--
module.info.no
30
B
-rw-r--r--
module.info.no.UTF-8
36
B
-rw-r--r--
module.info.pl
117
B
-rw-r--r--
module.info.pl.UTF-8
132
B
-rw-r--r--
save.cgi
2.1
KB
-rwxr-xr-x
uninstall.pl
230
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : save.cgi
#!/usr/bin/perl # Save, delete or create a scheduled copy require './cluster-copy-lib.pl'; &error_setup($text{'save_err'}); &ReadParse(); if (!$in{'new'}) { $copy = &get_copy($in{'id'}); $job = &find_cron_job($copy); } if ($in{'run'}) { # Run the job now &redirect("exec.cgi?id=$in{'id'}"); exit; } elsif ($in{'delete'}) { # Just delete it &delete_copy($copy); if ($job) { &lock_file(&cron::cron_file($job)); &cron::delete_cron_job($job); &unlock_file(&cron::cron_file($job)); } } else { # Check and parse inputs $in{'files'} =~ s/\r//g; @files = split(/\n/, $in{'files'}); foreach $f (@files) { $f =~ /^\// || &error(&text('save_efile', $f)); } $copy->{'files'} = join("\t", @files); @files || &error($text{'save_efiles'}); $in{'dest'} =~ /^\// || &error($text{'save_edest'}); if ($in{'email_def'}) { $copy->{'email'} = ''; } else { $in{'email'} =~ /^\S+$/ || &error($text{'save_eemail'}); $copy->{'email'} = $in{'email'}; } $copy->{'dest'} = $in{'dest'}; $copy->{'dmode'} = $in{'dmode'}; $copy->{'before'} = $in{'before'}; $copy->{'cmd'} = $in{'cmd'}; $copy->{'beforelocal'} = !$in{'beforeremote'}; $copy->{'cmdlocal'} = !$in{'cmdremote'}; @servers = split(/\0/, $in{'servers'}); @servers || &error($text{'save_eservers'}); $copy->{'servers'} = join(" ", @servers); $copy->{'sched'} = $in{'sched'}; &cron::parse_times_input($copy, \%in); # Save or create &save_copy($copy); if ($job) { &lock_file(&cron::cron_file($job)); &cron::delete_cron_job($job); } if ($in{'sched'}) { &cron::create_wrapper($cron_cmd, $module_name, "copy.pl"); $job = { 'user' => 'root', 'command' => "$cron_cmd $copy->{'id'}", 'active' => 1, 'mins' => $copy->{'mins'}, 'hours' => $copy->{'hours'}, 'days' => $copy->{'days'}, 'months' => $copy->{'months'}, 'weekdays' => $copy->{'weekdays'}, 'special' => $copy->{'special'} }; &lock_file(&cron::cron_file($job)); &cron::create_cron_job($job); } &unlock_file(&cron::cron_file($job)) if ($job); } &webmin_log($in{'new'} ? 'create' : $in{'delete'} ? 'delete' : 'modify', 'copy', undef, $copy); &redirect("");
Close