Skip to content

Commit

Permalink
Merge pull request #106 from BrashEndeavours/hotfix/find_dns.py
Browse files Browse the repository at this point in the history
Update find_dns.py, fix DNS-targets.txt output
  • Loading branch information
codingo committed Jul 28, 2019
2 parents 42c0a9c + 4333a7b commit 0b53a79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Reconnoitre/lib/find_dns.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def find_dns(target_hosts, output_directory, quiet):
"[*] Found DNS service running on: %s\n" %
(ip_address))
output_file.write(" [>] %s\n" % (line))
output_targets.write("%s" % (ip_address))
output_targets.write("%s\n" % (ip_address))
dnscount += 1
print("[*] Found %s DNS servers within %s hosts" %
(str(dnscount), str(hostcount)))
Expand Down

0 comments on commit 0b53a79

Please sign in to comment.