From 40e65fc102e75f17039e4fbb327e7403ac4fd66d Mon Sep 17 00:00:00 2001 From: "Bruno P. Kinoshita" Date: Sun, 26 Jun 2016 15:26:39 +1200 Subject: [PATCH 1/2] Update INSTALL.txt Running these commands worked for me on an Ubuntu 16.04. Never used Perl on this computer, so probably that's why I didn't have Net::Netmask. With only String::Random, it complained about the two other missing modules. After that, everything works fine (not sure about Mac though). Thanks a lot for dnsenum! --- INSTALL.txt | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/INSTALL.txt b/INSTALL.txt index 373f8a3..793992a 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -8,14 +8,23 @@ centos: yum install cpan ##Then: -root@kali:~# cpanm String::Random +root@kali:~# cpanm String::Random Net::Netmask XML::Writer --> Working on String::Random -Fetching http://www.cpan.org/authors/id/S/SH/SHLOMIF/String-Random-0.25.tar.gz . -.. OK -Configuring String-Random-0.25 ... OK -Building and testing String-Random-0.25 ... OK -Successfully installed String-Random-0.25 -1 distribution installed +Fetching http://www.cpan.org/authors/id/S/SH/SHLOMIF/String-Random-0.29.tar.gz ... OK +Configuring String-Random-0.29 ... OK +Building and testing String-Random-0.29 ... OK +Successfully installed String-Random-0.29 +--> Working on Net::Netmask +Fetching http://www.cpan.org/authors/id/M/MU/MUIR/modules/Net-Netmask-1.9022.tar.gz ... OK +Configuring Net-Netmask-1.9022 ... OK +Building and testing Net-Netmask-1.9022 ... OK +Successfully installed Net-Netmask-1.9022 +--> Working on XML::Writer +Fetching http://www.cpan.org/authors/id/J/JO/JOSEPHW/XML-Writer-0.625.tar.gz ... OK +Configuring XML-Writer-0.625 ... OK +Building and testing XML-Writer-0.625 ... OK +Successfully installed XML-Writer-0.625 +3 distributions installed Mac Os X ======== From 343c3b59fbd2631da040add1aafbdff6e95ac9ff Mon Sep 17 00:00:00 2001 From: "Bruno P. Kinoshita" Date: Sun, 26 Jun 2016 15:29:35 +1200 Subject: [PATCH 2/2] Typo s/desabled/disabled/g --- dnsenum.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dnsenum.pl b/dnsenum.pl index a9ee263..4999e1c 100644 --- a/dnsenum.pl +++ b/dnsenum.pl @@ -197,10 +197,10 @@ BEGIN $scrap = undef if $scrap && ((not defined $mech_support and warn "Warning: can't load WWW::Mechanize module". - ", Google scraping desabled.\n") || + ", Google scraping disabled.\n") || (not defined $html_support and warn "Warning: can't load HTML::Parser module". - ", Google scraping desabled.\n") || + ", Google scraping disabled.\n") || $scrap <= 0 || $pages <= 0); $timeout = 10 if $timeout < 0 || $timeout > 128;