Skip to content

Commit 1cd3dd8

Browse files
committed
removed AXFR from std type and fix for TXT result processing.
1 parent 9b98ca6 commit 1cd3dd8

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11

2+
## Version 0.8.12
3+
4+
**Date: 12/12/17**
5+
**Changes:**
6+
7+
- Removed AXFR from std enumeration type unless -a is specified.
8+
- Fixed processing of TXT records.
9+
10+
211
## Version 0.8.11
312

4-
### Date: 10/23/17
5-
### Changes:
13+
**Date: 10/23/17**
14+
**Changes:**
15+
616
- Bug fix for python 3.6.x and the Google enumeration type.
717
- Merged PR for Bing support.
818
- Fixed issue when doing zone walks on servers without a SOA record.

dnsrecon.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# along with this program; if not, write to the Free Software
1919
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2020

21-
__version__ = '0.8.11'
21+
__version__ = '0.8.12'
2222
__author__ = 'Carlos Perez, Carlos_Perez@darkoperator.com'
2323

2424
__doc__ = """
@@ -919,7 +919,7 @@ def general_enum(res, domain, do_axfr, do_google, do_bing, do_spf, do_whois, zw)
919919
from_zt = None
920920

921921
# Perform test for Zone Transfer against all NS servers of a Domain
922-
if do_axfr is not None:
922+
if do_axfr == True :
923923
zonerecs = res.zone_transfer()
924924
if zonerecs is not None:
925925
returned_records.extend(res.zone_transfer())
@@ -1307,7 +1307,7 @@ def usage():
13071307
print(" -f Filter out of brute force domain lookup, records that resolve to the wildcard defined")
13081308
print(" IP address when saving records.")
13091309
print(" -t, --type <types> Type of enumeration to perform (comma separated):")
1310-
print(" std SOA, NS, A, AAAA, MX and SRV if AXRF on the NS servers fail.")
1310+
print(" std SOA, NS, A, AAAA, MX and SRV.")
13111311
print(" rvl Reverse lookup of a given CIDR or IP range.")
13121312
print(" brt Brute force domains and hosts using a given dictionary.")
13131313
print(" srv SRV records.")

0 commit comments

Comments
 (0)