Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
apps /
perl /
lib /
5.30.0 /
x86_64-linux /
Delete
Unzip
Name
Size
Permission
Date
Action
B
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
CORE
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Compress
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Data
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Devel
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Digest
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Encode
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
File
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Filter
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Hash
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
I18N
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
IO
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
IPC
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
List
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
MIME
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Math
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
PerlIO
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Scalar
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Sub
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Sys
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Tie
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Time
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Unicode
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
auto
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
threads
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
.packlist
147.37
KB
-rw-r--r--
2019-05-31 11:40
B.pm
28.78
KB
-r--r--r--
2019-05-31 11:39
Config.pm
3.2
KB
-r--r--r--
2019-05-31 11:39
Config.pod
248.97
KB
-r--r--r--
2019-05-31 11:39
Config_git.pl
409
B
-r--r--r--
2019-05-31 11:39
Config_heavy.pl
42.93
KB
-r--r--r--
2019-05-31 11:39
Cwd.pm
21.43
KB
-r--r--r--
2019-05-31 11:39
DynaLoader.pm
24.59
KB
-r--r--r--
2019-05-31 11:39
Encode.pm
31.33
KB
-r--r--r--
2019-05-31 11:39
Errno.pm
6.67
KB
-r--r--r--
2019-05-31 11:39
Fcntl.pm
3.95
KB
-r--r--r--
2019-05-31 11:39
IO.pm
1.42
KB
-r--r--r--
2019-05-31 11:39
O.pm
4.19
KB
-r--r--r--
2019-05-31 11:39
Opcode.pm
15.53
KB
-r--r--r--
2019-05-31 11:39
POSIX.pm
19.87
KB
-r--r--r--
2019-05-31 11:39
POSIX.pod
74.31
KB
-r--r--r--
2019-05-31 11:39
SDBM_File.pm
3.72
KB
-r--r--r--
2019-05-31 11:39
Socket.pm
36.19
KB
-r--r--r--
2019-05-31 11:39
Storable.pm
48.61
KB
-r--r--r--
2019-05-31 11:39
attributes.pm
15.97
KB
-r--r--r--
2019-05-31 11:39
encoding.pm
22.41
KB
-r--r--r--
2019-05-31 11:39
lib.pm
5.99
KB
-r--r--r--
2019-05-31 11:39
mro.pm
9.88
KB
-r--r--r--
2019-05-31 11:39
ops.pm
997
B
-r--r--r--
2019-05-31 11:39
perllocal.pod
1.23
KB
-rw-r--r--
2019-05-31 11:40
re.pm
22.26
KB
-r--r--r--
2019-05-31 11:39
threads.pm
37.05
KB
-r--r--r--
2019-05-31 11:39
Save
Rename
# This file was created by configpm when Perl was built. Any changes # made to this file will be lost the next time perl is built. # for a description of the variables, please have a look at the # Glossary file, as written in the Porting folder, or use the url: # http://perl5.git.perl.org/perl.git/blob/HEAD:/Porting/Glossary package Config; use strict; use warnings; our ( %Config, $VERSION ); $VERSION = "5.030000"; # Skip @Config::EXPORT because it only contains %Config, which we special # case below as it's not a function. @Config::EXPORT won't change in the # lifetime of Perl 5. my %Export_Cache = (myconfig => 1, config_sh => 1, config_vars => 1, config_re => 1, compile_date => 1, local_patches => 1, bincompat_options => 1, non_bincompat_options => 1, header_files => 1); @Config::EXPORT = qw(%Config); @Config::EXPORT_OK = keys %Export_Cache; # Need to stub all the functions to make code such as print Config::config_sh # keep working sub bincompat_options; sub compile_date; sub config_re; sub config_sh; sub config_vars; sub header_files; sub local_patches; sub myconfig; sub non_bincompat_options; # Define our own import method to avoid pulling in the full Exporter: sub import { shift; @_ = @Config::EXPORT unless @_; my @funcs = grep $_ ne '%Config', @_; my $export_Config = @funcs < @_ ? 1 : 0; no strict 'refs'; my $callpkg = caller(0); foreach my $func (@funcs) { die qq{"$func" is not exported by the Config module\n} unless $Export_Cache{$func}; *{$callpkg.'::'.$func} = \&{$func}; } *{"$callpkg\::Config"} = \%Config if $export_Config; return; } die "$0: Perl lib version (5.30.0) doesn't match executable '$^X' version ($])" unless $^V; $^V eq 5.30.0 or die sprintf "%s: Perl lib version (5.30.0) doesn't match executable '$^X' version (%vd)", $0, $^V; sub FETCH { my($self, $key) = @_; # check for cached value (which may be undef so we use exists not defined) return exists $self->{$key} ? $self->{$key} : $self->fetch_string($key); } sub TIEHASH { bless $_[1], $_[0]; } sub DESTROY { } sub AUTOLOAD { require 'Config_heavy.pl'; goto \&launcher unless $Config::AUTOLOAD =~ /launcher$/; die "&Config::AUTOLOAD failed on $Config::AUTOLOAD"; } # tie returns the object, so the value returned to require will be true. tie %Config, 'Config', { archlibexp => '/usr/local/apps/perl/lib/5.30.0/x86_64-linux', archname => 'x86_64-linux', cc => 'cc', d_readlink => 'define', d_symlink => 'define', dlext => 'so', dlsrc => 'dl_dlopen.xs', dont_use_nlink => undef, exe_ext => '', inc_version_list => ' ', intsize => '4', ldlibpthname => 'LD_LIBRARY_PATH', libpth => '/usr/local/lib /usr/lib /lib/../lib64 /usr/lib/../lib64 /lib /lib64 /usr/lib64 /usr/local/lib64', osname => 'linux', osvers => '2.6.32-358.0.1.el6.x86_64', path_sep => ':', privlibexp => '/usr/local/apps/perl/lib/5.30.0', scriptdir => '/usr/local/apps/perl/bin', sitearchexp => '/usr/local/apps/perl/lib/site_perl/5.30.0/x86_64-linux', sitelibexp => '/usr/local/apps/perl/lib/site_perl/5.30.0', so => 'so', useithreads => undef, usevendorprefix => undef, version => '5.30.0', };