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 /
Resolver /
[ HOME SHELL ]
Name
Size
Permission
Action
Base.pm
30.9
KB
-rw-rw-rw-
MSWin32.pm
3.6
KB
-rw-rw-rw-
Recurse.pm
5.51
KB
-rw-rw-rw-
UNIX.pm
2.17
KB
-rw-rw-rw-
android.pm
2.28
KB
-rw-rw-rw-
cygwin.pm
4.86
KB
-rw-rw-rw-
os2.pm
2.07
KB
-rw-rw-rw-
os390.pm
4.45
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : android.pm
package Net::DNS::Resolver::android; # # $Id: android.pm 1568 2017-05-27 06:40:20Z willem $ # our $VERSION = (qw$LastChangedRevision: 1568 $)[1]; =head1 NAME Net::DNS::Resolver::android - Android resolver class =cut use strict; use warnings; use base qw(Net::DNS::Resolver::Base); my $config_file = 'resolv.conf'; my @config_path = ( $ENV{ANDROID_ROOT} || '/system' ); my @config_file = grep -f $_ && -r _, map "$_/etc/$config_file", @config_path; my $dotfile = '.resolv.conf'; my @dotpath = grep defined, $ENV{HOME}, '.'; my @dotfile = grep -f $_ && -o _, map "$_/$dotfile", @dotpath; sub _init { my $defaults = shift->_defaults; my @nameserver; for ( 1 .. 4 ) { my $ret = `getprop net.dns$_` || next; chomp $ret; push @nameserver, $ret || next; } $defaults->nameserver(@nameserver) if @nameserver; map $defaults->_read_config_file($_), @config_file; %$defaults = Net::DNS::Resolver::Base::_untaint(%$defaults); map $defaults->_read_config_file($_), @dotfile; $defaults->_read_env; } 1; __END__ =head1 SYNOPSIS use Net::DNS::Resolver; =head1 DESCRIPTION This class implements the OS specific portions of C<Net::DNS::Resolver>. No user serviceable parts inside, see L<Net::DNS::Resolver> for all your resolving needs. =head1 COPYRIGHT Copyright (c)2014 Dick Franks. All rights reserved. =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::Resolver> =cut
Close