Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
x86_64-linux-gnu /
perl-base /
Delete
Unzip
Name
Size
Permission
Date
Action
Carp
[ DIR ]
drwxr-xr-x
2025-09-08 06:33
Exporter
[ DIR ]
drwxr-xr-x
2025-09-08 06:33
File
[ DIR ]
drwxr-xr-x
2025-09-08 06:33
Getopt
[ DIR ]
drwxr-xr-x
2025-09-08 06:33
Hash
[ DIR ]
drwxr-xr-x
2025-09-08 06:33
IO
[ DIR ]
drwxr-xr-x
2025-09-08 06:33
IPC
[ DIR ]
drwxr-xr-x
2025-09-08 06:33
List
[ DIR ]
drwxr-xr-x
2025-09-08 06:33
Scalar
[ DIR ]
drwxr-xr-x
2025-09-08 06:33
Text
[ DIR ]
drwxr-xr-x
2025-09-08 06:33
Tie
[ DIR ]
drwxr-xr-x
2025-09-08 06:33
auto
[ DIR ]
drwxr-xr-x
2023-11-25 20:59
unicore
[ DIR ]
drwxr-xr-x
2023-11-25 20:59
warnings
[ DIR ]
drwxr-xr-x
2025-09-08 06:33
AutoLoader.pm
5.36
KB
-rw-r--r--
2025-08-29 12:09
Carp.pm
24.8
KB
-rw-r--r--
2025-08-29 12:09
Config.pm
3.14
KB
-rw-r--r--
2025-08-29 12:09
Config_git.pl
409
B
-rw-r--r--
2025-08-29 12:09
Config_heavy.pl
54.48
KB
-rw-r--r--
2025-08-29 12:09
Cwd.pm
16.62
KB
-rw-r--r--
2025-08-29 12:09
DynaLoader.pm
11
KB
-rw-r--r--
2025-08-29 12:09
Errno.pm
4.8
KB
-rw-r--r--
2025-08-29 12:09
Exporter.pm
2.28
KB
-rw-r--r--
2025-08-29 12:09
Fcntl.pm
2.05
KB
-rw-r--r--
2025-08-29 12:09
FileHandle.pm
2.06
KB
-rw-r--r--
2025-08-29 12:09
IO.pm
469
B
-rw-r--r--
2025-08-29 12:09
POSIX.pm
19.91
KB
-rw-r--r--
2025-08-29 12:09
SelectSaver.pm
344
B
-rw-r--r--
2025-08-29 12:09
Socket.pm
13.5
KB
-rw-r--r--
2025-08-29 12:09
Symbol.pm
2.15
KB
-rw-r--r--
2025-08-29 12:09
XSLoader.pm
4.02
KB
-rw-r--r--
2025-08-29 12:09
attributes.pm
3
KB
-rw-r--r--
2025-08-29 12:09
base.pm
8.7
KB
-rw-r--r--
2025-08-29 12:09
builtin.pm
210
B
-rw-r--r--
2025-08-29 12:09
bytes.pm
489
B
-rw-r--r--
2025-08-29 12:09
bytes_heavy.pl
758
B
-rw-r--r--
2025-08-29 12:09
constant.pm
5.6
KB
-rw-r--r--
2025-08-29 12:09
feature.pm
7.38
KB
-rw-r--r--
2025-08-29 12:09
fields.pm
4.89
KB
-rw-r--r--
2025-08-29 12:09
integer.pm
172
B
-rw-r--r--
2025-08-29 12:09
lib.pm
2.23
KB
-rw-r--r--
2025-08-29 12:09
locale.pm
3.37
KB
-rw-r--r--
2025-08-29 12:09
overload.pm
4.39
KB
-rw-r--r--
2025-08-29 12:09
overloading.pm
964
B
-rw-r--r--
2025-08-29 12:09
parent.pm
460
B
-rw-r--r--
2025-08-29 12:09
re.pm
9.33
KB
-rw-r--r--
2025-08-29 12:09
strict.pm
1.57
KB
-rw-r--r--
2025-08-29 12:09
utf8.pm
341
B
-rw-r--r--
2025-08-29 12:09
vars.pm
1.12
KB
-rw-r--r--
2025-08-29 12:09
warnings.pm
28.97
KB
-rw-r--r--
2025-08-29 12:09
Save
Rename
package Exporter; use strict; no strict 'refs'; our $Debug = 0; our $ExportLevel = 0; our $Verbose ||= 0; our $VERSION = '5.77'; our %Cache; sub as_heavy { require Exporter::Heavy; # Unfortunately, this does not work if the caller is aliased as *name = \&foo # Thus the need to create a lot of identical subroutines my $c = (caller(1))[3]; $c =~ s/.*:://; \&{"Exporter::Heavy::heavy_$c"}; } sub export { goto &{as_heavy()}; } sub import { my $pkg = shift; my $callpkg = caller($ExportLevel); if ($pkg eq "Exporter" and @_ and $_[0] eq "import") { *{$callpkg."::import"} = \&import; return; } # We *need* to treat @{"$pkg\::EXPORT_FAIL"} since Carp uses it :-( my $exports = \@{"$pkg\::EXPORT"}; # But, avoid creating things if they don't exist, which saves a couple of # hundred bytes per package processed. my $fail = ${$pkg . '::'}{EXPORT_FAIL} && \@{"$pkg\::EXPORT_FAIL"}; return export $pkg, $callpkg, @_ if $Verbose or $Debug or $fail && @$fail > 1; my $export_cache = ($Cache{$pkg} ||= {}); my $args = @_ or @_ = @$exports; if ($args and not %$export_cache) { s/^&//, $export_cache->{$_} = 1 foreach (@$exports, @{"$pkg\::EXPORT_OK"}); } my $heavy; # Try very hard not to use {} and hence have to enter scope on the foreach # We bomb out of the loop with last as soon as heavy is set. if ($args or $fail) { ($heavy = (/\W/ or $args and not exists $export_cache->{$_} or $fail and @$fail and $_ eq $fail->[0])) and last foreach (@_); } else { ($heavy = /\W/) and last foreach (@_); } return export $pkg, $callpkg, ($args ? @_ : ()) if $heavy; local $SIG{__WARN__} = sub {require Carp; &Carp::carp} if not $SIG{__WARN__}; # shortcut for the common case of no type character *{"$callpkg\::$_"} = \&{"$pkg\::$_"} foreach @_; } # Default methods sub export_fail { my $self = shift; @_; } # Unfortunately, caller(1)[3] "does not work" if the caller is aliased as # *name = \&foo. Thus the need to create a lot of identical subroutines # Otherwise we could have aliased them to export(). sub export_to_level { goto &{as_heavy()}; } sub export_tags { goto &{as_heavy()}; } sub export_ok_tags { goto &{as_heavy()}; } sub require_version { goto &{as_heavy()}; } 1; __END__