Skip to content

Commit

Permalink
Update cloudfail.py
Browse files Browse the repository at this point in the history
CloudFlare -> Cloudflare correction.
  • Loading branch information
xxdesmus authored Nov 30, 2017
1 parent 69ad729 commit 86985bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cloudfail.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,23 +84,23 @@ def dnsdumpster(target):
if res['dns_records']['host']:
for entry in res['dns_records']['host']:
provider = str(entry['provider'])
if "CloudFlare" not in provider:
if "Cloudflare" not in provider:
print_out(
Style.BRIGHT + Fore.WHITE + "[FOUND:HOST] " + Fore.GREEN + "{domain} {ip} {as} {provider} {country}".format(
**entry))

if res['dns_records']['dns']:
for entry in res['dns_records']['dns']:
provider = str(entry['provider'])
if "CloudFlare" not in provider:
if "Cloudflare" not in provider:
print_out(
Style.BRIGHT + Fore.WHITE + "[FOUND:DNS] " + Fore.GREEN + "{domain} {ip} {as} {provider} {country}".format(
**entry))

if res['dns_records']['mx']:
for entry in res['dns_records']['mx']:
provider = str(entry['provider'])
if "CloudFlare" not in provider:
if "Cloudflare" not in provider:
print_out(
Style.BRIGHT + Fore.WHITE + "[FOUND:MX] " + Fore.GREEN + "{ip} {as} {provider} {domain}".format(
**entry))
Expand Down

0 comments on commit 86985bb

Please sign in to comment.