From 213e5040a12a84a0460d41c99e726ca233b82098 Mon Sep 17 00:00:00 2001 From: antisnatchor Date: Wed, 2 Nov 2011 20:16:40 +0000 Subject: [PATCH] DnsEnumeration module: corrected a few typos, added new subdomains to the default array git-svn-id: https://beef.googlecode.com/svn/trunk@1396 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9 --- modules/network/dns_enumeration/command.js | 2 +- modules/network/dns_enumeration/config.yaml | 2 +- modules/network/dns_enumeration/module.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/network/dns_enumeration/command.js b/modules/network/dns_enumeration/command.js index a13ee4adf..550d4a2d6 100644 --- a/modules/network/dns_enumeration/command.js +++ b/modules/network/dns_enumeration/command.js @@ -26,7 +26,7 @@ beef.execute(function() { if(dns_list!="%default%") { hostnames = dns_list.split(","); } else { - hostnames = new Array("abc", "about", "accounts", "admin", "administrador", "administrator", "ads", "adserver", "adsl", "agent", "blog", "channel", "client", "dmz", "dns", "dns0", "dns1", "dns2", "dns3", "extern", "extranet", "file", "forum", "forums", "ftp", "ftpserver", "host", "http", "https", "ida", "ids", "imail", "imap", "imap3", "imap4", "install", "intern", "intranet", "irc", "linux", "log", "mail", "map", "member", "members", "name", "nc", "ns", "ntp", "ntserver", "office", "phone", "pop", "ppp1", "ppp10", "ppp11", "ppp12", "ppp13", "ppp14", "ppp15", "ppp16", "ppp17", "ppp18", "ppp19", "ppp2", "ppp20", "ppp21", "ppp3", "ppp4", "ppp5", "ppp6", "ppp7", "ppp8", "ppp9", "pptp", "print", "printer", "pub", "public", "root", "route", "router", "server", "smtp", "sql", "sqlserver", "ssh", "telnet", "time", "voip", "w", "webaccess", "webadmin", "webserver", "website", "win", "windows", "ww", "www", "xml"); + hostnames = new Array("abc", "about", "accounts", "admin", "administrador", "administrator", "ads", "adserver", "adsl", "agent", "blog", "channel", "client", "dev", "dev1", "dev2", "dev3", "dev4", "dev5", "dmz", "dns", "dns0", "dns1", "dns2", "dns3", "extern", "extranet", "file", "forum", "forums", "ftp", "ftpserver", "host", "http", "https", "ida", "ids", "imail", "imap", "imap3", "imap4", "install", "intern", "intranet", "irc", "linux", "log", "mail", "map", "member", "members", "name", "nc", "ns", "ntp", "ntserver", "office", "phone", "pop", "ppp1", "ppp10", "ppp11", "ppp12", "ppp13", "ppp14", "ppp15", "ppp16", "ppp17", "ppp18", "ppp19", "ppp2", "ppp20", "ppp21", "ppp3", "ppp4", "ppp5", "ppp6", "ppp7", "ppp8", "ppp9", "pptp", "print", "printer", "pub", "public", "preprod", "root", "route", "router", "server", "smtp", "sql", "sqlserver", "ssh", "telnet", "time", "voip", "w", "webaccess", "webadmin", "webserver", "website", "win", "windows", "ww", "www", "xml"); } function notify() { diff --git a/modules/network/dns_enumeration/config.yaml b/modules/network/dns_enumeration/config.yaml index 80040c9d7..e0c78ef5f 100644 --- a/modules/network/dns_enumeration/config.yaml +++ b/modules/network/dns_enumeration/config.yaml @@ -19,7 +19,7 @@ beef: enable: true category: "Network" name: "DNS Enumeration" - description: "Discover DNS hostnames within the vicitim's network using dictionary and timming attacks." + description: "Discover DNS hostnames within the victim's network using dictionary and timing attacks." authors: ["jgaliana"] target: working: ["FF", "C"] diff --git a/modules/network/dns_enumeration/module.rb b/modules/network/dns_enumeration/module.rb index a0dac0a48..b67c6a497 100644 --- a/modules/network/dns_enumeration/module.rb +++ b/modules/network/dns_enumeration/module.rb @@ -20,7 +20,7 @@ class Dns_enumeration < BeEF::Core::Command def self.options return [ - {'name' => 'dns_list', 'ui_label' => 'DNS (coma separated)', 'value' => '%default%'}, + {'name' => 'dns_list', 'ui_label' => 'DNS (comma separated)', 'value' => '%default%'}, {'name' => 'timeout', 'ui_label' => 'Timeout (ms)', 'value' => '4000'} ] end