Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
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 /
IO /
Delete
Unzip
Name
Size
Permission
Date
Action
Socket
[ DIR ]
drwxr-xr-x
2026-06-26 06:39
File.pm
1.6
KB
-rw-r--r--
2026-06-23 17:11
Handle.pm
7.52
KB
-rw-r--r--
2026-06-23 17:11
Pipe.pm
3.33
KB
-rw-r--r--
2026-06-23 17:11
Seekable.pm
642
B
-rw-r--r--
2026-06-23 17:11
Select.pm
4.6
KB
-rw-r--r--
2026-06-23 17:11
Socket.pm
9.71
KB
-rw-r--r--
2026-06-23 17:11
Save
Rename
# package IO::Seekable; use 5.008_001; use Carp; use strict; 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; our @EXPORT = qw(SEEK_SET SEEK_CUR SEEK_END); our @ISA = qw(Exporter); our $VERSION = "1.46"; 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;