Created
September 28, 2017 16:20
-
-
Save chokepoint/28bed027606c5086ed9eeb274f3b840a to your computer and use it in GitHub Desktop.
Identify IPv4 hosts behind CloudFlare using certificate data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import censys.certificates | |
import censys.ipv4 | |
from sys import argv | |
UID = "**CHANGE**" | |
SECRET = "**CHANGE**" | |
def is_cloudflare(dn): | |
if "cloudflaressl.com" in dn or "cloudflare.com" in dn: | |
return True | |
return False | |
def find_certificates(target): | |
print("Certificates:") | |
certificates = censys.certificates.CensysCertificates(UID, SECRET) | |
fingerprints = [] | |
fields = ["parsed.names", "parsed.extensions.subject_alt_name.dns_names", | |
"parsed.fingerprint_sha256", "parsed.subject_dn"] | |
for cert in certificates.search("%s and tags: trusted" % target, fields=fields): | |
if not is_cloudflare(cert["parsed.subject_dn"]) and target in cert["parsed.names"]: | |
fingerprints.append(cert["parsed.fingerprint_sha256"]) | |
print("\tHost: %s\n\tFingerprint: %s" % (' '.join(cert["parsed.names"]), cert["parsed.fingerprint_sha256"])) | |
return fingerprints | |
def find_hosts(target): | |
print("Hosts: %s" % target) | |
hosts = censys.ipv4.CensysIPv4(UID, SECRET) | |
fields = ["ip"] | |
for host in hosts.search(target): | |
print("\tFound host: %s" % (host["ip"])) | |
def main(): | |
if len(argv) != 2: | |
print("Usage: %s <host>" % argv[0]) | |
else: | |
target = argv[1] | |
fingerprints = find_certificates(target) | |
for fp in fingerprints: | |
find_hosts(fp) | |
if __name__=="__main__": | |
main() |
I see you created a fields
var on line 19 inside find_certificates()
and pass that to the censys API, maybe you meant to do that inside find_hosts()
as well?
You're right, i meant to pass that along as well in find_hosts(). Good catch.
File "D:\Downloads\censys cloudsnare\CloudSnare.py", line 3, in
import censys.certificates
ModuleNotFoundError: No module named 'censys.certificates'
???
Is there any working solution at this very moment? Since, censys.ipv4 isn't supported any more, as far as I know. Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you clarify what's happening on line 32?
Seems like you're setting a variable but not using it anywhere else in that scope.
Maybe it's some left over debug code? Wasn't sure if I was missing something :)