Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
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 /
5.22.1 /
IO /
Delete
Unzip
Name
Size
Permission
Date
Action
Socket
[ DIR ]
drwxr-xr-x
2020-10-27 07:29
Dir.pm
5.24
KB
-rw-r--r--
2020-10-19 12:57
File.pm
1.63
KB
-rw-r--r--
2020-10-19 12:57
Handle.pm
8.04
KB
-rw-r--r--
2020-10-19 12:57
Pipe.pm
3.34
KB
-rw-r--r--
2020-10-19 12:57
Poll.pm
4.44
KB
-rw-r--r--
2020-10-19 12:57
Seekable.pm
686
B
-rw-r--r--
2020-10-19 12:57
Select.pm
4.26
KB
-rw-r--r--
2020-10-19 12:57
Socket.pm
9.23
KB
-rw-r--r--
2020-10-19 12:57
Save
Rename
# package IO::Seekable; use 5.006_001; use Carp; use strict; our($VERSION, @EXPORT, @ISA); use IO::Handle (); # XXX we can't get these from IO::Handle or we'll get prototype # mismatch warnings on C<use POSIX; use IO::File;> :-( use Fcntl qw(SEEK_SET SEEK_CUR SEEK_END); require Exporter; @EXPORT = qw(SEEK_SET SEEK_CUR SEEK_END); @ISA = qw(Exporter); $VERSION = "1.10"; $VERSION = eval $VERSION; sub seek { @_ == 3 or croak 'usage: $io->seek(POS, WHENCE)'; seek($_[0], $_[1], $_[2]); } sub sysseek { @_ == 3 or croak 'usage: $io->sysseek(POS, WHENCE)'; sysseek($_[0], $_[1], $_[2]); } sub tell { @_ == 1 or croak 'usage: $io->tell()'; tell($_[0]); } 1;