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 /
pptp-client /
[ HOME SHELL ]
Name
Size
Permission
Action
help
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
448
B
-rw-r--r--
backup_config.pl
702
B
-rwxr-xr-x
bootup.cgi
863
B
-rwxr-xr-x
config
112
B
-rw-r--r--
config.info
274
B
-rw-r--r--
config.info.ca
305
B
-rw-r--r--
config.info.ca.UTF-8
310
B
-rw-r--r--
config.info.de
302
B
-rw-r--r--
config.info.de.UTF-8
302
B
-rw-r--r--
config.info.fr
0
B
-rw-r--r--
config.info.nl
297
B
-rw-r--r--
config.info.nl.UTF-8
297
B
-rw-r--r--
config.info.no
292
B
-rw-r--r--
config.info.no.UTF-8
292
B
-rw-r--r--
config.info.pt_BR
308
B
-rw-r--r--
config.info.pt_BR.UTF-8
320
B
-rw-r--r--
conn.cgi
2.32
KB
-rwxr-xr-x
disc.cgi
543
B
-rwxr-xr-x
edit.cgi
6.59
KB
-rwxr-xr-x
edit_opts.cgi
1.43
KB
-rwxr-xr-x
index.cgi
2.69
KB
-rwxr-xr-x
install_check.pl
385
B
-rwxr-xr-x
log_parser.pl
733
B
-rwxr-xr-x
module.info
193
B
-rw-r--r--
module.info.ca
116
B
-rw-r--r--
module.info.ca.UTF-8
128
B
-rw-r--r--
module.info.cz
24
B
-rw-r--r--
module.info.cz.UTF-8
30
B
-rw-r--r--
module.info.de
121
B
-rw-r--r--
module.info.de.UTF-8
133
B
-rw-r--r--
module.info.ms_MY
124
B
-rw-r--r--
module.info.ms_MY.UTF-8
136
B
-rw-r--r--
module.info.nl
24
B
-rw-r--r--
module.info.nl.UTF-8
30
B
-rw-r--r--
module.info.no
24
B
-rw-r--r--
module.info.no.UTF-8
30
B
-rw-r--r--
module.info.pt_BR
28
B
-rw-r--r--
module.info.pt_BR.UTF-8
34
B
-rw-r--r--
pptp-client-lib.pl
8.62
KB
-rwxr-xr-x
save.cgi
5.72
KB
-rwxr-xr-x
save_opts.cgi
910
B
-rwxr-xr-x
secrets-lib.pl
1.64
KB
-rwxr-xr-x
start.pl
779
B
-rwxr-xr-x
stop.pl
355
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : secrets-lib.pl
# secrets-lib.pl # Common functions for editing a PPP users file # list_secrets() sub list_secrets { local(@rv, $line, $_); open(SEC, $config{'pap_file'}); $line = 0; while(<SEC>) { chop; s/^#.*$//g; @w = &split_words($_); if (@w >= 3) { local(%sec, @ips); $sec{'client'} = $w[0]; $sec{'server'} = $w[1]; $sec{'secret'} = $w[2]; @ips = @w[3..$#w]; $sec{'ips'} = \@ips; $sec{'line'} = $line; $sec{'index'} = scalar(@rv); push(@rv, \%sec); } $line++; } close(SEC); return @rv; } # create_secret(&secret) sub create_secret { &open_tempfile(SEC, ">>$config{'pap_file'}"); &print_tempfile(SEC, &join_words($_[0]->{'client'}, $_[0]->{'server'}, $_[0]->{'secret'}, @{$_[0]->{'ips'}}),"\n"); &close_tempfile(SEC); } # change_secret(&secret) sub change_secret { &replace_file_line($config{'pap_file'}, $_[0]->{'line'}, &join_words($_[0]->{'client'}, $_[0]->{'server'}, $_[0]->{'secret'}, @{$_[0]->{'ips'}})."\n"); } # delete_secret(&secret) sub delete_secret { &replace_file_line($config{'pap_file'}, $_[0]->{'line'}); } # split_words(string) sub split_words { local($s, @w); $s = $_[0]; while($s =~ /^\s*([^"\s]+|"([^"]*)")(.*)$/) { push(@w, defined($2) ? $2 : $1); $s = $3; } return @w; } sub join_words { local(@w, $w); foreach $w (@_) { if ($w =~ /^[a-zA-Z0-9\.\-]+$/) { push(@w, $w); } else { push(@w, "\"$w\""); } } return join(" ", @w); } # opt_crypt(password) # Returns the given password, crypted if the user has configured it sub opt_crypt { if ($config{'encrypt_pass'}) { local($salt); srand(time()); $salt = chr(int(rand(26))+65).chr(int(rand(26))+65); return &unix_crypt($_[0], $salt); } return $_[0]; }
Close