Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
perl /
vendor /
lib /
Net /
DNS /
RR /
[ HOME SHELL ]
Name
Size
Permission
Action
A.pm
2.91
KB
-rw-rw-rw-
AAAA.pm
3.91
KB
-rw-rw-rw-
AFSDB.pm
3.33
KB
-rw-rw-rw-
AMTRELAY.pm
6.31
KB
-rw-rw-rw-
APL.pm
6.06
KB
-rw-rw-rw-
CAA.pm
4.01
KB
-rw-rw-rw-
CDNSKEY.pm
2.46
KB
-rw-rw-rw-
CDS.pm
2.51
KB
-rw-rw-rw-
CERT.pm
6.18
KB
-rw-rw-rw-
CNAME.pm
2.88
KB
-rw-rw-rw-
CSYNC.pm
4.32
KB
-rw-rw-rw-
DHCID.pm
4.74
KB
-rw-rw-rw-
DNAME.pm
2.79
KB
-rw-rw-rw-
DNSKEY.pm
8.82
KB
-rw-rw-rw-
DS.pm
10.01
KB
-rw-rw-rw-
EUI48.pm
3.14
KB
-rw-rw-rw-
EUI64.pm
3.15
KB
-rw-rw-rw-
GPOS.pm
4.15
KB
-rw-rw-rw-
HINFO.pm
2.98
KB
-rw-rw-rw-
HIP.pm
5.13
KB
-rw-rw-rw-
IPSECKEY.pm
6.85
KB
-rw-rw-rw-
ISDN.pm
3.33
KB
-rw-rw-rw-
KEY.pm
2.28
KB
-rw-rw-rw-
KX.pm
3.57
KB
-rw-rw-rw-
L32.pm
3.71
KB
-rw-rw-rw-
L64.pm
3.74
KB
-rw-rw-rw-
LOC.pm
7.81
KB
-rw-rw-rw-
LP.pm
3.96
KB
-rw-rw-rw-
MB.pm
2.73
KB
-rw-rw-rw-
MG.pm
2.76
KB
-rw-rw-rw-
MINFO.pm
3.82
KB
-rw-rw-rw-
MR.pm
2.75
KB
-rw-rw-rw-
MX.pm
3.73
KB
-rw-rw-rw-
NAPTR.pm
5.66
KB
-rw-rw-rw-
NID.pm
3.84
KB
-rw-rw-rw-
NS.pm
2.84
KB
-rw-rw-rw-
NSEC.pm
7.72
KB
-rw-rw-rw-
NSEC3.pm
12.09
KB
-rw-rw-rw-
NSEC3PARAM.pm
4.73
KB
-rw-rw-rw-
NULL.pm
2.07
KB
-rw-rw-rw-
OPENPGPKEY.pm
3
KB
-rw-rw-rw-
OPT.pm
13.34
KB
-rw-rw-rw-
PTR.pm
2.73
KB
-rw-rw-rw-
PX.pm
4.19
KB
-rw-rw-rw-
RP.pm
3.81
KB
-rw-rw-rw-
RRSIG.pm
23.62
KB
-rw-rw-rw-
RT.pm
3.69
KB
-rw-rw-rw-
SIG.pm
21.81
KB
-rw-rw-rw-
SMIMEA.pm
5.12
KB
-rw-rw-rw-
SOA.pm
7.65
KB
-rw-rw-rw-
SPF.pm
2.66
KB
-rw-rw-rw-
SRV.pm
4.32
KB
-rw-rw-rw-
SSHFP.pm
4.61
KB
-rw-rw-rw-
TKEY.pm
5.42
KB
-rw-rw-rw-
TLSA.pm
5.18
KB
-rw-rw-rw-
TSIG.pm
19.78
KB
-rw-rw-rw-
TXT.pm
3.72
KB
-rw-rw-rw-
URI.pm
4.15
KB
-rw-rw-rw-
X25.pm
2.78
KB
-rw-rw-rw-
ZONEMD.pm
4.33
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SPF.pm
package Net::DNS::RR::SPF; # # $Id: SPF.pm 1593 2017-09-04 14:23:26Z willem $ # our $VERSION = (qw$LastChangedRevision: 1593 $)[1]; use strict; use warnings; use base qw(Net::DNS::RR::TXT); =head1 NAME Net::DNS::RR::SPF - DNS SPF resource record =cut use integer; sub spfdata { my @spf = shift->char_str_list(@_); wantarray ? @spf : join '', @spf; } sub txtdata { &spfdata; } 1; __END__ =head1 SYNOPSIS use Net::DNS; $rr = new Net::DNS::RR('name SPF spfdata ...'); $rr = new Net::DNS::RR( name => 'name', type => 'SPF', spfdata => 'single text string' ); $rr = new Net::DNS::RR( name => 'name', type => 'SPF', spfdata => [ 'multiple', 'strings', ... ] ); =head1 DESCRIPTION Class for DNS Sender Policy Framework (SPF) resource records. SPF records inherit most of the properties of the Net::DNS::RR::TXT class. =head1 METHODS The available methods are those inherited from the base class augmented by the type-specific methods defined in this package. Use of undocumented package features or direct access to internal data structures is discouraged and could result in program termination or other unpredictable behaviour. =head2 spfdata =head2 txtdata $string = $rr->spfdata; @list = $rr->spfdata; $rr->spfdata( @list ); When invoked in scalar context, spfdata() returns the policy text as a single string, with text elements concatenated without intervening spaces. In a list context, spfdata() returns a list of the text elements. =head1 COPYRIGHT Copyright (c)2005 Olaf Kolkman, NLnet Labs. All rights reserved. Package template (c)2009,2012 O.M.Kolkman and R.W.Franks. =head1 LICENSE Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of the author not be used in advertising or publicity pertaining to distribution of the software without specific prior written permission. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =head1 SEE ALSO L<perl>, L<Net::DNS>, L<Net::DNS::RR>, L<Net::DNS::RR::TXT>, RFC7208 =cut
Close