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 : CDS.pm
package Net::DNS::RR::CDS; # # $Id: CDS.pm 1586 2017-08-15 09:01:57Z willem $ # our $VERSION = (qw$LastChangedRevision: 1586 $)[1]; use strict; use warnings; use base qw(Net::DNS::RR::DS); =head1 NAME Net::DNS::RR::CDS - DNS CDS resource record =cut use integer; sub algorithm { my ( $self, $arg ) = @_; return $self->SUPER::algorithm($arg) if $arg; return $self->SUPER::algorithm() unless defined $arg; @{$self}{qw(keytag algorithm digtype)} = ( 0, 0, 0 ); } sub digtype { my ( $self, $arg ) = @_; $self->SUPER::digtype( $arg ? $arg : () ); } sub digest { my $self = shift; return $self->SUPER::digest(@_) unless defined( $_[0] ) && length( $_[0] ) < 2; return $self->SUPER::digestbin( $_[0] ? '' : chr(0) ); } 1; __END__ =head1 SYNOPSIS use Net::DNS; $rr = new Net::DNS::RR('name CDS keytag algorithm digtype digest'); =head1 DESCRIPTION DNS Child DS resource record This is a clone of the DS record and inherits all properties of the Net::DNS::RR::DS class. Please see the L<Net::DNS::RR::DS> perl documentation for details. =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. =head1 COPYRIGHT Copyright (c)2014,2017 Dick Franks 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::DS>, RFC7344, RFC8078(erratum 5049) =cut
Close