1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851
|
#!/usr/bin/perl
#
#
# dnsenum VERSION 1.3.2
# This version: - changed version number to the correct one
#
# dnsenum: multithread script to enumerate information on
# a domain and to discover non-contiguous ip blocks.
#
# 1) Get the host's address.
# 2) Get the nameservers (threaded).
# 3) get the MX record (threaded).
# 4) Perform axfr queries on nameservers (threaded).
# 5) Get extra names via google scraping.
# 6) Brute force subdomains from file (threaded).
# 7) Calculate C class domain network ranges and perform whois
# queries on them (threaded).
# 8) Perform reverse lookups on C class or/and whois
# network ranges (threaded).
# 9) Write to domain_ips.txt file non-contiguous ip-blocks results.
#
# run perldoc on this script for help.
#
# To install needed modules:
# sudo perl -MCPAN -e shell
# and then e.g.: cpan[1]> install XML::Writer
#
# Copyright (C) 2014 - Filip Waeytens, tixxDZ
# Copyright (C) 2019 - Network Silence
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of
# the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation,
# Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
#
# Special thanks to all perl developers.
#
# please see perldoc dnsenum for options and arguments
use strict;
use warnings
; #it complains about uninitialized values when it doesn't find address in RR; need to fix later
use Config;
use Term::ANSIColor;
use Getopt::Long;
use IO::File;
use Net::IP;
use Net::DNS;
use Net::Netmask;
use XML::Writer;
use Socket;
use Cwd;
use String::Random;
my (
$ithreads_support, $whois_support, $mech_support,
$html_support, $xml_support
);
my ( %nameservers, %allsubs, %googlesubs );
my ( %filesubs, %netranges, %recursubs );
my ( @mxservers, @results, @ipblocks, @privateips );
my ( $enum, $exp, $help, $noreverse, $nocolor, $update, $whois, $dnsserver );
my ( $private, $recursion, $scrap, $threads, $verbose );
my ( $dnsfile, $subfile, $dns_tmp, $sub_tmp, $fileips );
my ( $domain, $recur, $table, $extend_b, $extend_r );
my ( $timeout, $delay, $pages, $ipcount, $ipvalid ) = ( 10, 3, 5, 0, 0 );
my ($output);
my $writer;
my $program = 'dnsenum';
my $default_dir = '/usr/share/dnsenum/dns.txt';
my $string_gen = String::Random->new;
my $wildcards = $string_gen->randpattern("cccccccccccc");
my @wildcardaddress;
my @wildcardcname;
my $VERSION = '1.3.1';
#load threads modules (perl must be compiled with ithreads support)
BEGIN {
if ( $Config{useithreads} ) {
eval(
" use threads;
use threads::shared;
use Thread::Queue;
"
);
$ithreads_support = 1 unless $@;
}
}
eval("use Net::Whois::IP qw(whoisip_query);");
$whois_support = 1 unless $@;
eval("use WWW::Mechanize;");
$mech_support = 1 unless $@;
eval("use HTML::Parser;");
$html_support = 1 unless $@;
eval("use XML::Writer;");
$xml_support = 1 unless $@;
$dnsfile = get_dns_list($default_dir);
print STDOUT $program, " VERSION:", $VERSION, "\n";
GetOptions(
'dnsserver=s' => \$dnsserver,
'enum' => \$enum,
'd|delay=i' => \$delay,
'e|exclude=s' => \$exp,
'f|file=s' => \$dnsfile,
'h|help' => \$help,
'noreverse' => \$noreverse,
'nocolor' => \$nocolor,
'p|pages=i' => \$pages,
'private' => \$private,
'r|recursion' => \$recursion,
's|scrap=i' => \$scrap,
'subfile=s' => \$subfile,
'threads=i' => \$threads,
't|timeout=i' => \$timeout,
'u|update=s' => \$update,
'v|verbose' => \$verbose,
'w|whois' => \$whois,
'o|output=s' => \$output
); # Documentation Says Output not Out
usage() if $help || @ARGV == 0;
$domain = lc $ARGV[0];
$fileips = $domain . '_ips.txt';
#DEFAULT options --threads 5 -s 15 -w
if ($enum) {
$threads = 5;
$scrap = 15
; # Google scraping default to 15 to avoid Google Blocking us with captcha's
$whois = 1;
}
#module support
if ($threads) {
if (
(
!defined $ithreads_support
and warn "Warning: can't use threads, check ithreads support, and "
. "(threads, threads::shared, Thread::Queue) modules.\n"
)
|| $threads <= 0
)
{
$threads = undef;
}
else {
#to handle different ips that belongs to the domain
share(@results);
#number of ips that will be queried in reverse lookup
share($ipcount);
#number of valid ips (taken from reverse lookup responses)
share($ipvalid);
#will contain all valid subdomains
share(%allsubs);
if ($recursion) {
share(%recursubs);
share(%nameservers);
}
#to save whois netblocks
share($table);
#whois and reverse lookup results
share(%netranges);
}
}
if ( $whois && !defined $whois_support ) {
warn "Warning: can't load Net::Whois::IP module, "
. "whois queries disabled.\n";
$whois = undef;
}
if ( $output && !defined $xml_support ) {
warn "Warning: can't load XML::Writer module, " . "xml output disabled.\n";
$output = undef;
}
if ( defined($output) ) {
my $out = new IO::File(">$output");
$writer = new XML::Writer( OUTPUT => $out );
$writer->xmlDecl("UTF-8");
$writer->startTag( "magictree", "class" => "MtBranchObject" );
$writer->startTag( "testdata", "class" => "MtBranchObject" );
}
$scrap = undef
if $scrap
&& (
(
not defined $mech_support
and warn "Warning: can't load WWW::Mechanize module"
. ", Google scraping disabled.\n"
)
|| ( not defined $html_support
and warn "Warning: can't load HTML::Parser module"
. ", Google scraping disabled.\n" )
|| $scrap <= 0
|| $pages <= 0
);
$timeout = 10 if $timeout < 0 || $timeout > 128;
$delay = 3 if $delay < 0;
$update = undef if $update && !$dnsfile;
unless ($nocolor) {
print color 'bold blue';
}
print STDOUT "\n----- ", $domain, " -----\n";
unless ($nocolor) {
print color 'reset';
}
################START#####################
# (1) get the host's addresses
printheader("Host's addresses:\n");
my $res = Net::DNS::Resolver->new(
tcp_timeout => $timeout,
udp_timeout => $timeout,
defnames => 0
);
$res->nameservers($dnsserver) if $dnsserver;
my $packet = $res->query($domain);
if ($packet) {
foreach my $rr ( grep { $_->type eq 'A' } $packet->answer ) {
printrr( $rr->string );
xml_host($rr);
push @results, $rr->address
if $rr->name =~ /$domain$/;
}
}
elsif ($verbose) {
warn " ", $domain, " A query failed: ", $res->errorstring, "\n";
}
# wildcards test - I guess it can be cleaner, but it seems to be working
# tested with opendns servers and ubuntu.org domain
print STDOUT "\n" . "-" x 16 . "\nWildcards test:\n" . "-" x 16 . "\n"
if $verbose;
my $wildcardpacket = $res->query( $wildcards . "." . $domain );
# if we get a response resolving our random hostname, it can be a A or a CNAME
if ($wildcardpacket) {
printheader( "Wildcard detection using: " . $wildcards . "\n" );
foreach my $rr ( $wildcardpacket->answer ) {
if ( $rr->type eq 'A' ) {
printrr( $rr->string );
#wildcardaddress will hold the IP that's used as a string
my @wcheck = split( '\s+', $rr->string );
push @wildcardaddress, $wcheck[4];
}
if ( $rr->type eq 'CNAME' ) {
printrr( $rr->string );
#wildcardcname will hold CNAME that's used as a string
my @wcheck = split( '\s+', $rr->string );
push @wildcardcname, $wcheck[4];
}
}
unless ($nocolor) {
print color 'bold red';
}
print "\n\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n";
print STDOUT
" Wildcards detected, all subdomains will point to the same IP address\n";
print STDOUT " Omitting results containing "
. join( ', ', @wildcardaddress )
. ".\n Maybe you are using OpenDNS servers.\n";
print "\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n";
unless ($nocolor) {
print color 'reset';
}
#exit(1);#we don't exit when wildcards are detected, because we will miss existing hosts
}
elsif ($verbose) {
print STDOUT " good\n";
}
# (2) get the namservers for the domain
printheader("Name Servers:\n");
$packet = $res->query( $domain, 'NS' );
if ($packet) {
foreach my $rr ( grep { $_->type eq 'NS' } $packet->answer ) {
$nameservers{ $rr->nsdname } = 1;
}
die " Error: can't continue no NS record for ", $domain, "\n"
unless %nameservers;
#read the A record from the additional section
if ( $packet->header->arcount ) {
my @remain = additionalrecord( $packet, keys %nameservers );
#do nslookup on nameservers that are not present in the
#additional section
launchqueries( \&nslookup, @remain )
if scalar @remain;
}
#perform the nslookup on the nameservers
else {
launchqueries( \&nslookup, keys %nameservers );
}
}
#exit if there is no NS record.
else {
die " ", $domain, " NS record query failed: ", $res->errorstring, "\n";
}
# (3) get the MX record
printheader("Mail (MX) Servers:\n");
$packet = $res->query( $domain, 'MX' );
if ($packet) {
foreach my $rr ( grep { $_->type eq 'MX' } $packet->answer ) {
push @mxservers, $rr->exchange;
}
if ( scalar @mxservers ) {
if ( $packet->header->arcount ) {
my @remain = additionalrecord( $packet, @mxservers );
launchqueries( \&nslookup, @remain )
if scalar @remain;
}
else {
launchqueries( \&nslookup, @mxservers );
}
}
}
elsif ($verbose) {
warn " ", $domain, " MX record query failed: ", $res->errorstring, "\n";
}
# (4) perform zonetransfers on nameservers
printheader("Trying Zone Transfers and getting Bind Versions:\n");
launchqueries( \&zonetransfer, keys %nameservers );
# (5) scrap additional names from google search and do nslookup on them
if ($scrap) {
printheader( "Scraping " . $domain . " subdomains from Google:\n" );
my @tmp = googlescraping();
if ( scalar @tmp ) {
#print STDOUT "\n Performing nslookups:\n";
launchqueries( \&nslookup, map { $_ .= '.' . $domain } @tmp );
}
}
#exit if the brute force file is not specified
unless ($dnsfile) {
print STDOUT "\nbrute force file not specified, bay.\n";
if ( defined($output) ) {
$writer->endTag('testdata');
$writer->endTag('magictree');
}
exit(0);
}
$extend_b = 1 if ( $update && $update eq 'a' ) || $subfile || $recursion;
# (6) brute force subdomains from a file
printheader( "Brute forcing with " . $dnsfile . ":\n" );
bruteforce('f');
#updating dnsfile with zonetransfer or googlescraping subdomains results
if ($update) {
if ( $dns_tmp = IO::File->new_tmpfile() ) {
if ( $update eq 'z' ) {
print $dns_tmp $_, "\n"
for uniq_hosts( grep { $allsubs{$_} eq $update } keys %allsubs );
}
elsif ( $update eq 'g' ) {
print $dns_tmp $_, "\n" for uniq_hosts( keys %googlesubs );
}
}
else {
die "Error can't create a temporary file: $!, " . "to update ",
$dnsfile, " file\n";
}
}
undef %googlesubs if %googlesubs;
#launch recursion
if ($recursion) {
if (%allsubs) {
printheader("Performing recursion:\n");
print STDOUT "\n ---- Checking subdomains NS records ----\n";
#select subdomains that are able to recursion
launchqueries( \&selectsubdomains,
map { $_ .= '.' . $domain } sort keys %allsubs );
if (%recursubs) {
my @tmp = keys %recursubs;
undef %recursubs;
#brute force from a list using recursion
bruteforce( 'l', \@tmp );
}
else {
print STDERR "\n Can't perform recursion " . "no NS records.\n";
}
}
else {
print STDERR "\n Can't perform recursion no subdomains.\n";
}
undef %filesubs;
}
#updating the brute force file (-u a switch)
if ( $update && ( $update eq 'a' || $update eq 'all' ) ) {
#save ns and mx servers
my @tmp = keys %nameservers;
push @tmp, @mxservers if scalar @mxservers;
print $dns_tmp $_, "\n" for uniq_hosts( grep { s/\.$domain// } @tmp );
print $dns_tmp $_, "\n" for uniq_hosts( keys %allsubs );
}
#write subdomains to the subfile
if ($subfile) {
if ( $sub_tmp = IO::File->new_tmpfile() ) {
my %uniq;
@uniq{ keys %nameservers } = ();
@uniq{@mxservers} = () if scalar @mxservers;
print $sub_tmp $_, "\n" for grep { s/\.$domain// } keys %uniq;
print $sub_tmp $_, "\n" for keys %allsubs;
}
else {
die "Error can't create a temporary file: $!, "
. " to save results to ", $subfile, " file\n";
}
}
undef @mxservers;
undef %allsubs;
# (7) get domain network ranges from brute force results and whois queries
@results = networkranges(@results);
undef %netranges;
# (8) perform reverse lookups on netranges (class C or whois netranges)
unless ($noreverse) {
#to save all valid subdomains discovered in
#the reverse lookup process
$extend_r = 1
if (
$update
&& ( $update eq 'r'
|| $update eq 'a'
|| $update eq 'all' )
)
|| $subfile;
printheader(
"Performing reverse lookup on " . $ipcount . " ip addresses:\n" );
launchqueries( \&reverselookup, @results );
print STDOUT "\n", $ipvalid, " results out of ",
$ipcount, " IP addresses.\n";
}
else {
#calculate ip blocks
@ipblocks = finalvalidips( sort_by_ip_address(@results) );
}
#save final IP blocks to the domain_ips.txt file
writetofile( $fileips, "w", @ipblocks );
#show private ips
if ( $private && scalar @privateips ) {
print STDOUT "\n" . "-" x 26 . "\n",
$domain, " private ips:\n" . "-" x 26 . "\n";
print STDOUT " ", $_, "\n" for @privateips;
#save private ips to domain_ips.txt file
writetofile( $fileips, "a+", @privateips );
}
# (9) show non-contiguous IP blocks
printheader( $domain . " ip blocks:\n" );
print STDOUT " ", $_, "\n" for @ipblocks;
#clean the brute force file
cleanfile( $dnsfile, $dns_tmp ) if $update;
#clean the subfile
cleanfile( $subfile, $sub_tmp ) if $subfile;
if ( defined($output) ) {
$writer->endTag('testdata');
$writer->endTag('magictree');
}
print STDOUT "\ndone.\n";
exit(0);
#--------------------------------------------------
#Check if dns.txt file exists. Default on nonexistance
#to local dns.txt
sub get_dns_list {
my $default_dir = shift;
unless ( -f $default_dir ) {
$default_dir = getcwd() . '/dns.txt';
}
return $default_dir;
}
#subroutine that will launch different queries
#(nslookup, zonetransfer, whoisip, reverselookup)
sub launchqueries {
my $querytype = shift;
if ( $querytype != \&reverselookup ) {
if ($threads) {
my $stream = new Thread::Queue;
$stream->enqueue(@_);
my $thrs = $threads; #don')t create unused threads
$thrs = scalar @_ if $threads > scalar @_;
for ( 1 .. $thrs ) {
threads->new( $querytype, \$stream );
}
#wait all threads
foreach ( threads->list ) {
$_->join
if ( $_->tid
&& !threads::equal( $_, threads->self ) );
}
}
else {
foreach (@_) {
&$querytype($_);
}
}
}
else {
foreach (@_) {
my $block = new2 Net::Netmask($_);
unless ($block) {
print STDERR " Can't perform reverse lookup: ",
$Net::Netmask::error, "\n";
next;
}
if ($threads) {
my $stream = new Thread::Queue;
$stream->enqueue( $block->enumerate );
for ( 1 .. $threads ) {
threads->new( $querytype, \$stream );
}
#wait all threads
foreach ( threads->list ) {
$_->join
if ( $_->tid
&& !threads::equal( $_, threads->self ) );
}
}
else {
&$querytype( $block->enumerate );
}
#calculate IP blocks results
if (%netranges) {
my @tmp =
finalvalidips( sort_by_ip_address( keys %netranges ) );
undef %netranges;
#get final valid ip blocks
push @ipblocks, @tmp;
}
#write reverse lookup hostnames results to files
if ( $extend_r && %allsubs ) {
if (
$update
&& ( $update eq 'r'
|| $update eq 'a'
|| $update eq 'all' )
)
{
print $dns_tmp $_, "\n" for uniq_hosts( keys %allsubs );
}
if ($subfile) {
print $sub_tmp $_, "\n" for keys %allsubs;
}
undef %allsubs;
}
}
}
}
#subroutine to perform reverse lookups
sub reverselookup {
my $stream = shift if $threads;
my $res = Net::DNS::Resolver->new(
tcp_timeout => $timeout,
udp_timeout => $timeout,
persistent_udp => 1
);
$res->nameservers( keys %nameservers );
while ( defined( my $ip = $threads ? $$stream->dequeue_nb : shift ) ) {
my $query = $res->query($ip);
if ($query) {
foreach my $rr ( grep { $_->type eq 'PTR' } $query->answer ) {
#exclude non PTR types answers or unwanted hostnames
next if $exp && $rr->ptrdname =~ /$exp/;
if ( $rr->ptrdname =~ /(.*)(\.$domain$)/i ) {
$allsubs{$1} = 1
if $extend_r && !$allsubs{$1};
#to calculate last valid ip blocks
unless ( $netranges{$ip} ) {
$netranges{$ip} = 1;
$ipvalid++;
}
printrr( $rr->string );
xml_host($rr);
}
#show all answers even if the hostname don't match the domain
elsif ($verbose) {
printrr( $rr->string );
xml_host($rr);
}
}
}
#this part is just to check progress
elsif ($verbose) {
print STDOUT " ", $ip, " ...\n";
}
}
}
sub xml_host {
if ( defined $output ) {
my $rr = shift;
my $ip;
if ( $rr->type eq 'A' ) {
$ip = $rr->address;
}
else {
my $packed_ip = gethostbyname( $rr->name );
if ( defined $packed_ip ) {
$ip = inet_ntoa($packed_ip);
}
}
if ( defined($ip) ) {
$writer->startTag("host");
$writer->characters($ip);
$writer->startTag("hostname");
$writer->characters( $rr->name );
$writer->endTag("hostname");
$writer->endTag("host");
}
$writer->startTag("fqdn");
$writer->characters( $rr->name . '.' );
$writer->endTag("fqdn");
}
}
#subroutine for nslookups (A record)
sub nslookup {
my $stream = shift if $threads;
my $res = Net::DNS::Resolver->new(
tcp_timeout => $timeout,
udp_timeout => $timeout,
persistent_udp => 1,
dnsrch => 0
);
$res->nameservers($dnsserver) if $dnsserver;
while ( defined( my $host = $threads ? $$stream->dequeue_nb : shift ) ) {
my $query = $res->search($host);
if ($query) {
foreach my $rr ( $query->answer ) {
##we only print / add the result if it doesn't match the wildcardaddress
if (
!(
$rr->can('address') && grep { $_ eq $rr->address } @wildcardaddress
)
&& !( grep { $_ eq $rr->name } @wildcardcname )
)
{
printrr( $rr->string );
xml_host($rr);
#check if it match the domain
if ( $rr->name =~ /(.*)(\.$domain$)/i ) {
#save valid subdomains
if ($extend_b) {
$allsubs{$1} = 1
unless $allsubs{$1};
#recursion results
$recursubs{$1} = 1
if $recur
&& !$recursubs{$1};
}
#save ip address
push @results, $rr->address
if $rr->type eq 'A';
}
}
}
}
elsif ($verbose) {
warn " ", $host, " A record query failed: ",
$res->errorstring, "\n";
}
}
}
#subroutine to select subdomains that have NS records
sub selectsubdomains {
my $stream = shift if $threads;
my $res = Net::DNS::Resolver->new(
tcp_timeout => $timeout,
udp_timeout => $timeout,
persistent_udp => 1
);
$res->nameservers($dnsserver) if $dnsserver;
while ( defined( my $host = $threads ? $$stream->dequeue_nb : shift ) ) {
my $packet = $res->query( $host, 'NS' );
if ($packet) {
foreach my $rr ( grep { $_->type eq 'NS' } $packet->answer ) {
#show all results
#print STDOUT " ", $rr->string ,"\n";
printrr( $rr->string );
xml_host($rr);
if ( $rr->name =~ /(.*)(\.$domain$)/i ) {
if ( !$allsubs{$1}
|| $allsubs{$1} ne 'r' )
{
#bookmark this hostname to
#perform recursion on it and
#to avoid repetition, because
#some domains will use CNAME
#types that point to subs
#that we have already
#processed in a previous
#recursion levels
$allsubs{$1} = 'r';
#select this subdomain
#for recursion
$recursubs{ $rr->name } = 1;
}
#perhaps for future additions we save
#ns servers for each domain or
#subdomain, this will be very
#useful in reverse lookup
# --- begin ---
#check if we already have this
#NS server
#next if $nameservers{$rr->nsdname};
#$nameservers{$rr->nsdname} = 1;
#push @tmp, $rr->nsdname;
# --- end ---
}
}
#perhaps for future additions to perform an extrem
#recursion to get the IP address of the NS servers
# --- begin ---
#next unless scalar @tmp;
#get the NS servers A record
#if ($packet->header->arcount) {
# @tmp = additionalrecord($packet,@tmp);
# next unless scalar @tmp;
#}
#foreach my $nshost (@tmp) {
# $packet = $res->query($nshost);
# if ($packet) {
# foreach my $rr \
# (grep { $_->type eq 'A' }
# $packet->answer) {
# print STDOUT " ",
# $rr->string , "\n";
# push @results, $rr->address
# if ($rr->name =~ /$domain$/);
# }
# }
# elsif ($verbose) {
# warn " ", $nshost ,
# " A record query failed: ",
# $res->errorstring , "\n";
# }
#}
# --- end ---
}
elsif ($verbose) {
warn " ", $host, " NS record query failed: ",
$res->errorstring, "\n";
}
}
}
#subroutine for zonetransfers
#I got rid of the Bind Versions search...doesn't really add anything and clutters output
sub zonetransfer {
my $stream = shift if $threads;
my $res = Net::DNS::Resolver->new(
tcp_timeout => $timeout,
udp_timeout => $timeout
);
while ( defined( my $ns = $threads ? $$stream->dequeue_nb : shift ) ) {
$res->nameservers($ns);
my @zone = $res->axfr($domain);
#my $version_query = $res->search("version.bind","TXT","CH");
print STDOUT "\nTrying Zone Transfer for ", $domain,
" on ", $ns, " ... \n";
if (@zone) {
foreach my $rr (@zone) {
#print all results
printrr( $rr->string );
xml_host($rr);
#save data if the record's domain name
#match the domain
if ( $rr->name =~ /(.*)(\.$domain$)/i ) {
#save hostname
$allsubs{$1} = 'z'
unless $allsubs{$1};
#save the IP address
push @results, $rr->address
if $rr->type eq 'A';
#save new mx servers hostnames
push @mxservers, $rr->exchange
if $rr->type eq 'MX';
#perhaps for future additions
#save NS servers for reverse lookups
# --- begin ---
#$nameservers{$rr->nsdname} = 1
# if ($rr->type eq 'NS' &&
# !$nameservers{$rr->nsdname});
# --- end ---
}
}
}
else {
warn "AXFR record query failed: ", $res->errorstring, "\n";
}
}
}
#subroutine for scraping domains from google
sub googlescraping {
my ( $response, $browser, $form, $parser, $nextpage );
my ( $count, $mypage ) = ( 0, 1 );
my $query = qq[-www site:$domain]; # Allinurl deprecated
my $nexturl = qq[/search?.*q=.*$domain.*start];
#on errors the mech object will call die
$browser = WWW::Mechanize->new(
autocheck => 1,
stack_depth => 1,
cookie_jar => undef
);
#uncomment for debugging with BURP
#$browser->proxy(['http'], 'http://127.0.0.1:8080');
#setup the browser config
my @agents = $browser->known_agent_aliases();
my $agent = $agents[ rand( scalar @agents ) ];
$browser->agent_alias($agent);
$browser->timeout($timeout);
#get the first page
$response = $browser->get("http://www.google.com/ncr");
$form = $browser->form_number(1)
or return;
$form->find_input('q')->value($query);
$response = $browser->submit_form(
form_number => 1,
form_name => 'f'
);
do {
$nextpage = undef;
print STDOUT "\n ---- Google search page: ", $mypage, " ---- \n\n";
$parser = HTML::Parser->new(
api_version => 3,
start_h => [
sub {
my $attr = shift;
#end of parsing
#(we have enough subdomains)
$parser->eof
unless $count < $scrap;
return unless $attr->{href};
#subdomains checks - if shit goes wrong with googlescraping it's prolly the regex
if ( $attr->{href} =~
/(\/url\?q\=http:\/\/)([\w\.-]+)(\.$domain\/)/ )
{
$allsubs{$2} = 'g'
unless $allsubs{$2};
$googlesubs{$2} = 1
unless $googlesubs{$2};
print STDOUT " ", $2, "\n";
$count++;
}
#the next page
elsif ( $attr->{href} =~ /^$nexturl=$mypage\d.*/
&& !defined $nextpage )
{
$nextpage = $attr->{href};
}
},
'attr'
]
);
$parser->parse( $response->decoded_content );
if ($nextpage) {
$response = $browser->get($nextpage);
$mypage++;
}
} while ( $count < $scrap && $mypage <= $pages && $nextpage );
#print STDOUT "\n Google results: ", $count ,"\n";
printheader("Google Results:\n");
if ($count) {
return grep { $allsubs{$_} eq 'g' } keys %allsubs;
}
else {
print STDERR
" perhaps Google is blocking our queries.\n Check manually.\n";
return;
}
}
#subroutine to query a whois server for an IP address to get the correct netrange
sub whoisip {
my $stream = shift if $threads;
while ( defined( my $ip = $threads ? $$stream->dequeue_nb : shift ) ) {
my ( $inetnum, $block );
#search in the network blocks table to find
#if any of them contains the IP address
next if ( findAllNetblock( $ip, $table ) );
#this is very useful on whois servers
#that limit the number of connections
sleep rand $delay;
#catch different exceptions
#(on exceptions netrange will be a class C /24)
eval {
my $response = whoisip_query($ip);
foreach ( keys %{$response} ) {
next if ( $_ !~ /^(inetnum|netrange)$/i );
$inetnum = $response->{$_};
#handle all whois netrange format
if ( $inetnum =~ /([\d.\.]+)\/(\d{1,2})/ ) {
#whois.lacnic.net format
$block = new2 Net::Netmask(qq[$1/$2]);
}
else {
$inetnum =~ s/\s//g;
$block = new2 Net::Netmask($inetnum);
}
if ($block) {
# this is useful when threads are enabled to eliminate
# the processing of same netranges
next
if $threads
&& $netranges{ $block->desc };
$block->storeNetblock($table);
#this is a simple workaround to
#save netblocks in a hash
#because we will lost all data
#in $table after threads exit
#(see Net::Netmask and
#threads::shared and threads safe)
#i am soure that there is a beter
#solution please excuse my ignorance
$netranges{ $block->desc } = 1;
$ipcount += $block->size();
printf STDOUT " whois ip result:"
. " %-15s -> %s\n",
$ip, $block->desc;
}
else {
print STDERR " Netmask error: ", $Net::Netmask::error, "\n"
if $verbose;
$inetnum = undef;
}
}
};
if ($@) {
#catch any invalid results
#assume that the network range is a class C
print STDERR " Error: ", $@
if $verbose;
$inetnum = undef;
}
#can't get the netrange form the whois server
#so we assume that is a class C range (/24)
unless ( defined $inetnum ) {
$block = new Net::Netmask(qq[$ip/24]);
next if $threads && $netranges{ $block->desc };
$block->storeNetblock($table);
$netranges{ $block->desc } = 1;
$ipcount += 256;
printf STDOUT " c class default: "
. "%-15s -> %s "
. " (whois netrange operation failed)\n",
$ip, $block->desc;
}
}
}
#subroutine to brute force subdomains
sub bruteforce {
#recursion on valid subdomains brute force from a list
if ( shift eq 'l' ) {
my ( $level, $hosts, @tmp ) = 1;
my $res = Net::DNS::Resolver->new(
tcp_timeout => $timeout,
udp_timeout => $timeout,
persistent_udp => 1,
dnsrch => 0
);
$res->nameservers($dnsserver) if $dnsserver;
#signal to nslookup to save all recursive subdomains
$recur = 1;
RECURSION:
$hosts = shift;
print STDOUT "\n ---- Recursion level ", $level, " ---- \n";
foreach my $host (@$hosts) {
my ( @words, %uniq );
print STDOUT "\n Recursion on ", $host, " ...\n";
#wildcards test
if ( $res->search( $wildcards . $host ) ) {
print STDERR " ", $host, ": Wildcards detected.\n";
next;
}
#perform brute force using all hostnames and include the new one
#(discovered from previous brute forces)
foreach ( sort keys %allsubs,
grep { not $allsubs{$_} } keys %filesubs )
{
push @words, $_ . '.' . $host;
#split hostnames that contain dots
foreach ( split /\./ ) {
unless ( $allsubs{$_}
|| $filesubs{$_}
|| $uniq{$_} )
{
$uniq{$_} = 1;
push @words, $_ . '.' . $host;
}
}
}
launchqueries( \&nslookup, @words );
}
#can't find new hostnames
return
unless @tmp = grep { $allsubs{$_} ne 'r' } keys %recursubs;
undef %recursubs;
#select subdomains
printheader("Checking subdomains NS records:\n");
launchqueries( \&selectsubdomains,
map { $_ .= '.' . $domain } sort @tmp );
unless (%recursubs) {
print STDOUT "\n Can't perform recursion, "
. "no new NS records.\n"
if $verbose;
return;
}
@tmp = keys %recursubs;
undef %recursubs;
$level++;
@_ = \@tmp;
goto RECURSION;
}
#brute force subdomains from dnsfile
else {
my @words;
die "Error: make sure that the file ", $dnsfile,
" exists and has a size greater than zero.\n"
unless -s $dnsfile;
my $input = new IO::File $dnsfile, "r"
or die "Could not open ", $dnsfile, " file: $!\n";
while (<$input>) {
chomp;
#save subdomains found in the file to use them
#in the recursion process
$filesubs{$_} = 1 if $recursion;
#select all subdomains that have not been listed
push @words, $_ . '.' . $domain
unless $allsubs{$_};
}
$input->close;
scalar @words
? launchqueries( \&nslookup, @words )
: print STDOUT " Can't find new subdomains.\n";
#the names have already been found by zonetransfer, ...
}
}
#subroutine to get the domain's network ranges
sub networkranges {
my ( @cnets, %ips, %seen );
#uniq IP's
@ips{@_} = ();
foreach my $ip ( sort_by_ip_address( keys %ips ) ) {
my @octets = split /\./, $ip;
#private IP's
if (
$octets[0] == 10
|| $octets[0] == 127
|| ( $octets[0] == 169 && $octets[1] == 254 )
|| (
$octets[0] == 172
&& ( $octets[1] > 15
&& $octets[1] < 32 )
)
|| ( $octets[0] == 192 && $octets[1] == 168 )
)
{
#save private ips
push @privateips, $ip if $private;
delete $ips{$ip};
next;
}
#to get unique class C netranges
my $net = join( "\.", $octets[0], $octets[1], $octets[2] );
unless ( $seen{$net} ) {
$seen{$net} = 1;
push @cnets, $net . ".0";
}
}
#launch whois queries on IP's to get the correct netranges
if ($whois) {
printheader("Launching Whois Queries:\n");
#shutdown warns the whois ip will catch exceptions with eval
$SIG{__WARN__} = sub { };
launchqueries( \&whoisip, @cnets );
$SIG{__WARN__} = 'DEFAULT';
printheader( $domain, " whois netranges:\n" );
print STDOUT " ", $_, "\n" for keys %netranges;
}
#default class C netrange
else {
printheader( $domain . " class C netranges:\n" );
grep { $_ .= "/24"; print STDOUT " ", $_, "\n"; } @cnets;
$ipcount = scalar @cnets * 256;
}
defined $noreverse ? return keys %ips
: (
defined $whois ? return keys %netranges
: return @cnets
);
}
#subroutine that calculate and return non-contiguous IP blocks
sub finalvalidips {
my $firstip = shift;
#one single IP address
return $firstip . "/32" unless scalar @_;
my ( $lastip, @tmp );
my $broadcast = $_[$#_];
my $tmpip = new Net::IP(qq[$firstip - $broadcast]);
foreach my $thisip (@_) {
# increment the previous tmp IP address to compare it with the current
# IP address taken from the array
++$tmpip;
if ( $broadcast ne $thisip ) {
#this IP belongs to the current netrange
if ( $tmpip->ip() eq $thisip ) {
$lastip = $thisip;
}
#new netrange
else {
defined $lastip
? push @tmp, range2cidrlist( $firstip, $lastip )
: push @tmp, $firstip . "/32";
#update data
$firstip = $thisip;
$lastip = undef;
$tmpip = new Net::IP(qq[$firstip - $broadcast]);
}
}
#we have reached the last valid IP address in the network range
else {
#this IP belongs to the current range
if ( $tmpip->ip() eq $broadcast ) {
push @tmp, range2cidrlist( $firstip, $broadcast );
}
#this IP is the start of a new range
else {
defined $lastip
? push @tmp, range2cidrlist( $firstip, $lastip )
: push @tmp, $firstip . "/32";
#save the current new ip
push @tmp, $broadcast . "/32";
}
}
}
return @tmp;
}
#subroutine that reads the A record from the additional section
sub additionalrecord {
my ( $packet, @servers, %seen ) = @_;
foreach my $rr ( grep { $_->type eq 'A' } $packet->additional ) {
foreach ( grep { $_ eq $rr->name } @servers ) {
$seen{ $rr->name } = 1;
printrr( $rr->string );
xml_host($rr);
push @results, $rr->address
if $rr->name =~ /$domain$/;
}
}
#get the nameservers that have not been found in the additional section
keys %seen == @servers
? return
: return grep { not $seen{$_} } @servers;
}
#subroutine to get uniq splited subdomains
sub uniq_hosts {
my %uniq;
grep { !$uniq{$_} && $uniq{$_}++ for split /\./ } @_;
return keys %uniq;
}
#subroutine to write valid subdomains to files
sub writetofile {
my $file = shift;
my $output = new IO::File $file, shift
or die "Could not open ", $file, " file: $!\n";
print $output $_, "\n" for @_;
$output->close;
}
#subroutine to update and clean files
sub cleanfile {
my ( $file, $tmpfile, %uniq ) = @_;
seek( $tmpfile, 0, 0 )
or die "Error: seek failed on the temporary file: $!\n" . "can't update ",
$file, "\n";
@uniq{<$tmpfile>} = ();
if ( -s $file ) {
my $input = new IO::File $file, "r"
or die "Unable to update ", $file, " file: $!\n";
@uniq{<$input>} = ();
$input->close;
}
writetofile( $file, "w",
sort { uc($a) cmp uc($b) } grep { chomp } keys %uniq );
}
#broken
sub printrr {
my $output = shift;
my @outputA = split( '\s+', $output );
printf( "%-40s %-8s %-5s %-8s %10s\n",
$outputA[0], $outputA[1], $outputA[2], $outputA[3], $outputA[4] );
}
sub printheader {
my ($header) = @_;
unless ($nocolor) {
print color 'bold red';
}
print STDOUT "\n\n" . $header . "_" x length($header) . "\n\n";
unless ($nocolor) {
print color 'reset';
}
}
#the usage subroutine
sub usage {
print STDOUT qq{Usage: $program [Options] <domain>
[Options]:
Note: If no -f tag supplied will default to /usr/share/dnsenum/dns.txt or
the dns.txt file in the same directory as dnsenum
GENERAL OPTIONS:
--dnsserver <server>
Use this DNS server for A, NS and MX queries.
--enum Shortcut option equivalent to --threads 5 -s 15 -w.
-h, --help Print this help message.
--noreverse Skip the reverse lookup operations.
--nocolor Disable ANSIColor output.
--private Show and save private ips at the end of the file domain_ips.txt.
--subfile <file> Write all valid subdomains to this file.
-t, --timeout <value> The tcp and udp timeout values in seconds (default: 10s).
--threads <value> The number of threads that will perform different queries.
-v, --verbose Be verbose: show all the progress and all the error messages.
GOOGLE SCRAPING OPTIONS:
-p, --pages <value> The number of google search pages to process when scraping names,
the default is 5 pages, the -s switch must be specified.
-s, --scrap <value> The maximum number of subdomains that will be scraped from Google (default 15).
BRUTE FORCE OPTIONS:
-f, --file <file> Read subdomains from this file to perform brute force. (Takes priority over default dns.txt)
-u, --update <a|g|r|z>
Update the file specified with the -f switch with valid subdomains.
a (all) Update using all results.
g Update using only google scraping results.
r Update using only reverse lookup results.
z Update using only zonetransfer results.
-r, --recursion Recursion on subdomains, brute force all discovered subdomains that have an NS record.
WHOIS NETRANGE OPTIONS:
-d, --delay <value> The maximum value of seconds to wait between whois queries, the value is defined randomly, default: 3s.
-w, --whois Perform the whois queries on c class network ranges.
**Warning**: this can generate very large netranges and it will take lot of time to perform reverse lookups.
REVERSE LOOKUP OPTIONS:
-e, --exclude <regexp>
Exclude PTR records that match the regexp expression from reverse lookup results, useful on invalid hostnames.
OUTPUT OPTIONS:
-o --output <file> Output in XML format. Can be imported in MagicTree (www.gremwell.com)
};
exit(1);
}
__END__
=head1 NAME
dnsenum -- multithread script to enumerate information on a domain and to discover non-contiguous IP blocks
=head1 VERSION
dnsenum version 1.3.1
=head1 SYNOPSIS
dnsenum [options] <domain> -f dns.txt
=head1 DESCRIPTION
Supported operations:
nslookup, zonetransfer, google scraping, domain brute force
(support also recursion), whois ip and reverse lookups.
Operations:
=over 5
=item
1) Get the host's address (A record).
=item
2) Get the nameservers (threaded).
=item
3) Get the MX record (threaded).
=item
4) Perform AXFR queries on nameservers (threaded).
=item
5) Get extra names and subdomains via google scraping
(google query = "-www site:domain").
=item
6) Brute force subdomains from (REQUIRED), can also perform recursion on
subdomain that have NS records (all threaded).
=item
7) Calculate Class C IP network ranges from the results and perform whois queries on them (threaded).
=item
8) Perform reverse lookups on netranges (class C or/and whois netranges)(threaded).
=item
9) Write to domain_ips.txt file non-contiguous ip-blocks results.
=back
=head1 OPTIONS
The brute force -f switch takes priority over default dns.txt
=head2 GENERAL OPTIONS:
=over
=over 30
=item B<--dnsserver> B<<server>>
Use this DNS server to perform all A, NS and MX queries,
the AXFR and PTR queries are sent to the domain's NS servers.
=item B<--enum>
Shortcut option equivalent to --threads 5 -s 20 -w.
=item B<-h>, B<--help>
Print the help message.
=item B<--noreverse>
Skip the reverse lookup operations.
Reverse lookups can take long time on big netranges.
=item B<--nocolor>
Disable ANSIColor output.
This option is only intended to be used on consoles that do not support
color output.
=item B<--private>
Show and save private ips at the end of the file domain_ips.txt.
=item B<--subfile> B<<file>>
Write all valid subdomains to this file.
Subdomains are taken from NS and MX records, zonetransfer,
google scraping, brute force and reverse lookup hostnames.
=item B<-t>, B<--timeout> B<<value>>
The tcp and udp timeout values in seconds (default: 10s).
=item B<--threads> B<<va>>
The number of threads that will perform different queries.
=item B<-v>, B<--verbose>
Be verbose (show all the progress and all the error messages).
=back
=back
=over 3
B<Notes:>
neither the default domain nor the resolver search list are
appended to domains that don't contain any dots.
=back
=head2 GOOGLE SCRAPING OPTIONS:
=over 3
This function will scrap subdomains from google search,
using query: -www site:domain.
=back
=over
=over 30
=item B<-p>, B<--pages> B<<value>>
The number of google search pages to process when scraping names,
the -s switch must be specified, (default: 20 pages).
=item B<-s>, B<--scrap> B<<value>>
The maximum number of subdomains that will be scraped from google.
=back
=back
=over 3
B<NOTES:>
Google can block our queries with the malware detection.
Http proxy options for google scraping are automatically loaded from
the environment if the vars http_proxy or HTTP_PROXY are present.
"http_proxy=http://127.0.0.1:8118/" or "HTTP_PROXY=http://127.0.0.1:8118/".
On IO errors the mechanize browser object will automatically call die.
=back
=head2 BRUTE FORCE OPTIONS:
=over
=over 30
=item B<-f>, B<--file> B<<file>>
Read subdomains from this file to perform brute force.
=item B<-u>, B<--update> B<<a|g|r|z>>
Update the file specified with the -f switch with valid subdomains.
=back
=back
=over 35
B<-u> a Update using all results.
B<-u> g Update using only google scraping results.
B<-u> r Update using only reverse lookup results.
B<-u> z Update using only zonetransfer results.
=back
=over
=over 30
=item B<-r>, B<--recursion>
Recursion on subdomains, brute force all discovered subdomains
that have an NS record.
=back
=back
=over 3
B<NOTES:>
To perform recursion first we must check previous subdomains results (zonetransfer, google scraping and brute force) for NS
records after that we perform brute force on valid subdomains that have NS records and so on. NS, MX and reverse lookup results are
not concerned.
=back
=head2 WHOIS IP OPTIONS:
Perform whois ip queries on c class netanges discovered from
previous operations.
=over
=over 30
=item B<-d>, B<--delay> B<<value>>
The maximum value of seconds to wait between whois queries,
the value is defined randomly, (default: 3s).
=back
=back
=over 3
B<NOTES:>
whois servers will limit the number of connections.
=back
=over
=over 30
=item B<-w>, B<--whois>
Perform the whois queries on c class network ranges.
B<Warning>: this can generate very large netranges and it
will take lot of time to perform reverse lookups.
=back
=back
=over 3
B<NOTES:>
The whois query should recursively query the various whois
providers until it gets the more detailed information including
either TechPhone or OrgTechPhone by default. See: perldoc Net::Whois::IP.
On errors the netrange will be a default c class /24.
=back
=head2 REVERSE LOOKUP OPTIONS:
=over
=over 30
=item B<-e>, B<--exclude> B<<regexp>>
Exclude PTR records that match the regexp expression from reverse
lookup results, useful on invalid hostnames.
=back
=back
=over 3
B<NOTES:>
PTR records that not match the domain are also excluded.
Verbose mode will show all results.
=back
=head1 OUTPUT FILES
Final non-contiguous ip blocks are written to domain_ips.txt file.
B<NOTES:>
Final non-contiguous ip blocks are calculated :
=over 5
=item
1) From reverse lookups that were performed on netranges
( c class network ranges or whois netranges ).
=item
2) If the noreverse switch is used then they are calculated from
previous operations results (nslookups, zonetransfers,
google scraping and brute forcing).
=back
=head1 README
dnsenum: multithread script to enumerate information on a domain
and to discover non-contiguous ip blocks.
=head1 PREREQUISITES
Modules that are included in perl 5.28.0:
Getopt::Long, IO::File, Thread::Queue.
Other Necessary modules:
Must have: Net::DNS, Net::IP, Net::Netmask.
Optional: Net::Whois::IP, HTML::Parser, WWW::Mechanize.
Perl ithreads modules (perl must be compiled with ithreads support):
threads, threads::shared.
=head1 AUTHORS
Filip Waeytens <filip.waeytens[at]gmail.com>
tix tixxDZ <tixxdz[at]gmail.com>
=head1 MAINTAINER
Network Silence
=head1 COPYRIGHT
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of
the License, or (at your option) any later version.
=head1 SCRIPT CATEGORIES
Networking
DNS
=cut
|