Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.171
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
Mail /
Box /
[ HOME SHELL ]
Name
Size
Permission
Action
Dir
[ DIR ]
drwxr-xr-x
File
[ DIR ]
drwxr-xr-x
Locker
[ DIR ]
drwxr-xr-x
MH
[ DIR ]
drwxr-xr-x
Maildir
[ DIR ]
drwxr-xr-x
Manage
[ DIR ]
drwxr-xr-x
Mbox
[ DIR ]
drwxr-xr-x
Message
[ DIR ]
drwxr-xr-x
Net
[ DIR ]
drwxr-xr-x
Parser
[ DIR ]
drwxr-xr-x
Search
[ DIR ]
drwxr-xr-x
Thread
[ DIR ]
drwxr-xr-x
Tie
[ DIR ]
drwxr-xr-x
Collection.pm
1.81
KB
-rw-r--r--
Collection.pod
8.81
KB
-rw-r--r--
Dir.pm
3.03
KB
-rw-r--r--
Dir.pod
14.62
KB
-rw-r--r--
FastScalar.pm
4.13
KB
-rw-r--r--
FastScalar.pod
969
B
-rw-r--r--
File.pm
13.08
KB
-rw-r--r--
File.pod
21.55
KB
-rw-r--r--
Identity.pm
5.66
KB
-rw-r--r--
Identity.pod
12.12
KB
-rw-r--r--
Locker.pm
3.3
KB
-rw-r--r--
Locker.pod
8.57
KB
-rw-r--r--
MH.pm
11.23
KB
-rw-r--r--
MH.pod
19.9
KB
-rw-r--r--
Maildir.pm
10.3
KB
-rw-r--r--
Maildir.pod
17.54
KB
-rw-r--r--
Manager.pm
15.14
KB
-rw-r--r--
Manager.pod
21.18
KB
-rw-r--r--
Mbox.pm
5.72
KB
-rw-r--r--
Mbox.pod
19.23
KB
-rw-r--r--
Message.pm
2.6
KB
-rw-r--r--
Message.pod
17.92
KB
-rw-r--r--
Net.pm
2.55
KB
-rw-r--r--
Net.pod
13.55
KB
-rw-r--r--
Parser.pm
3.77
KB
-rw-r--r--
Parser.pod
10.76
KB
-rw-r--r--
Search.pm
5.06
KB
-rw-r--r--
Search.pod
9.12
KB
-rw-r--r--
Test.pm
8.36
KB
-rw-r--r--
Tie.pm
923
B
-rw-r--r--
Tie.pod
1.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : FastScalar.pm
# Copyrights 2001-2022 by [Mark Overmeer <markov@cpan.org>]. # For other contributors see ChangeLog. # See the manual pages for details on the licensing terms. # Pod stripped from pm file by OODoc 2.03. # This code is part of distribution Mail-Message. Meta-POD processed with # OODoc into POD and HTML manual-pages. See README.md # Copyright Mark Overmeer. Licensed under the same terms as Perl itself. package Mail::Box::FastScalar; use vars '$VERSION'; $VERSION = '3.012'; use strict; use warnings; use integer; sub new($) { my ($class, $ref) = @_; $$ref = '' unless defined $$ref; bless { ref => $ref, pos => 0 }, $class; } sub autoflush() {} sub binmode() {} sub clearerr { return 0; } sub flush() {} sub sync() { return 0; } sub opened() { return $_[0]->{ref}; } sub open($) { my $self = $_[0]; ${$_[1]} = '' unless defined(${$_[1]}); $self->{ref} = $_[1]; $self->{pos} = 0; } sub close() { undef $_[0]->{ref}; } sub eof() { my $self = $_[0]; return $self->{pos} >= length(${$self->{ref}}); } sub getc() { my $self = $_[0]; return substr(${$self->{ref}}, $self->{pos}++, 1); } sub print { my $self = shift; my $pos = $self->{pos}; my $ref = $self->{ref}; my $len = length($$ref); if ($pos >= $len) { $$ref .= $_ foreach @_; $self->{pos} = length($$ref); } else { my $buf = $#_ ? join('', @_) : $_[0]; $len = length($buf); substr($$ref, $pos, $len) = $buf; $self->{pos} = $pos + $len; } 1; } sub read($$;$) { my $self = $_[0]; my $buf = substr(${$self->{ref}}, $self->{pos}, $_[2]); $self->{pos} += $_[2]; ($_[3] ? substr($_[1], $_[3]) : $_[1]) = $buf; return length($buf); } sub sysread($$;$) { return shift()->read(@_); } sub seek($$) { my $self = $_[0]; my $whence = $_[2]; my $len = length(${$self->{ref}}); if ($whence == 0) { $self->{pos} = $_[1]; } elsif ($whence == 1) { $self->{pos} += $_[1]; } elsif ($whence == 2) { $self->{pos} = $len + $_[1]; } else { return; } if ($self->{pos} > $len) { $self->{pos} = $len; } elsif ($self->{pos} < 0) { $self->{pos} = 0; } return 1; } sub sysseek($$) { return $_[0]->seek($_[1], $_[2]); } sub setpos($) { return $_[0]->seek($_[1], 0); } sub sref() { return $_[0]->{ref}; } sub getpos() { return $_[0]->{pos}; } sub tell() { return $_[0]->{pos}; } sub write($$;$) { my $self = $_[0]; my $pos = $self->{pos}; my $ref = $self->{ref}; my $len = length($$ref); if ($pos >= $len) { $$ref .= substr($_[1], $_[3] || 0, $_[2]); $self->{pos} = length($$ref); $len = $self->{pos} - $len; } else { my $buf = substr($_[1], $_[3] || 0, $_[2]); $len = length($buf); substr($$ref, $pos, $len) = $buf; $self->{pos} = $pos + $len; } return $len; } sub syswrite($;$$) { return shift()->write(@_); } sub getline() { my $self = $_[0]; my $ref = $self->{ref}; my $pos = $self->{pos}; if (!defined($/) || (my $idx = index($$ref, $/, $pos)) == -1) { return if ($pos >= length($$ref)); $self->{pos} = length($$ref); return substr($$ref, $pos); } else { return substr($$ref, $pos, ($self->{pos} = $idx + length($/)) - $pos); } } sub getlines() { my $self = $_[0]; my @lines; my $ref = $self->{ref}; my $pos = $self->{pos}; if (defined($/)) { my $idx; while (($idx = index($$ref, $/, $pos)) != -1) { push(@lines, substr($$ref, $pos, ($idx + 1) - $pos)); $pos = $idx + 1; } } my $r = substr($$ref, $pos); if (length($r) > 0) { push(@lines, $r); } $self->{pos} = length($$ref); return wantarray() ? @lines : \@lines; } sub TIEHANDLE { ((defined($_[1]) && UNIVERSAL::isa($_[1], "Mail::Box::FastScalar")) ? $_[1] : shift->new(@_)); } sub GETC { shift()->getc(@_) } sub PRINT { shift()->print(@_) } sub PRINTF { shift()->print(sprintf(shift, @_)) } sub READ { shift()->read(@_) } sub READLINE { wantarray ? shift()->getlines(@_) : shift()->getline(@_) } sub WRITE { shift()->write(@_); } sub CLOSE { shift()->close(@_); } sub SEEK { shift()->seek(@_); } sub TELL { shift()->tell(@_); } sub EOF { shift()->eof(@_); } 1; 1;
Close