Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
perl5 /
site_perl /
5.34.1 /
Archive /
Zip /
[ HOME SHELL ]
Name
Size
Permission
Action
Archive.pm
28.71
KB
-r--r--r--
BufferedFileHandle.pm
2.72
KB
-r--r--r--
DirectoryMember.pm
1.95
KB
-r--r--r--
FAQ.pod
12.22
KB
-r--r--r--
FileMember.pm
1.32
KB
-r--r--r--
Member.pm
31.77
KB
-r--r--r--
MemberRead.pm
7.24
KB
-r--r--r--
MockFileHandle.pm
1.31
KB
-r--r--r--
NewFileMember.pm
2.16
KB
-r--r--r--
StringMember.pm
1.7
KB
-r--r--r--
Tree.pm
828
B
-r--r--r--
ZipFileMember.pm
13.21
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MockFileHandle.pm
package Archive::Zip::MockFileHandle; # Output file handle that calls a custom write routine # Ned Konz, March 2000 # This is provided to help with writing zip files # when you have to process them a chunk at a time. use strict; use vars qw{$VERSION}; BEGIN { $VERSION = '1.30'; $VERSION = eval $VERSION; } sub new { my $class = shift || __PACKAGE__; $class = ref($class) || $class; my $self = bless( { 'position' => 0, 'size' => 0 }, $class ); return $self; } sub eof { my $self = shift; return $self->{'position'} >= $self->{'size'}; } # Copy given buffer to me sub print { my $self = shift; my $bytes = join( '', @_ ); my $bytesWritten = $self->writeHook($bytes); if ( $self->{'position'} + $bytesWritten > $self->{'size'} ) { $self->{'size'} = $self->{'position'} + $bytesWritten; } $self->{'position'} += $bytesWritten; return $bytesWritten; } # Called on each write. # Override in subclasses. # Return number of bytes written (0 on error). sub writeHook { my $self = shift; my $bytes = shift; return length($bytes); } sub binmode { 1 } sub close { 1 } sub clearerr { 1 } # I'm write-only! sub read { 0 } sub tell { return shift->{'position'} } sub opened { 1 } 1;
Close