Created
June 11, 2016 19:03
-
-
Save msfidelis/07fb1ee85605d241c7626584e77ac757 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
SHODAN_API_KEY = "123456789" | |
api = shodan.Shodan(SHODAN_API_KEY) | |
results = api.search(dork) | |
try: | |
results = api.search(dork) | |
for result in results['matches']: | |
print result | |
except: | |
sys.exit() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment