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
#!/usr/bin/env python | |
# Dependencies: | |
# - arrow | |
# - shodan | |
# - ImageMagick | |
# | |
# Installation: | |
# sudo easy_install arrow shodan | |
# sudo apt-get install imagemagick | |
# |
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
#!/usr/bin/env python | |
# dump-images.py | |
# | |
# Extract all the image data from the banners and store them as separate images | |
# in a provided output directory. | |
# | |
# Example: | |
# shodan download --limit -1 screenshots.json.gz has_screenshot:true | |
# ./dump-images.py screenshots.json.gz images/ |
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
Netflix | 863 | |
---|---|---|
Roku Home News | 767 | |
Amazon Video | 733 | |
Movie Store and TV Store | 717 | |
Hulu | 694 | |
HBO Now | 683 | |
Showtime | 678 | |
VUDU | 633 | |
Pandora | 569 | |
YouTube | 550 |
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
{ | |
"region_code": null, | |
"ip": 3561488084, | |
"area_code": null, | |
"latitude": 51.5, | |
"hostnames": ["li635-212.members.linode.com"], | |
"postal_code": null, | |
"dma_code": null, | |
"country_code": "GB", | |
"org": "Linode", |
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
#!/usr/bin/python | |
''' | |
Python 3.5 compatible | |
This will create a comma delimited file | |
it requires you to have a GeoIP2-City database from MaxMind. | |
https://www.maxmind.com/en/geoip2-databases | |
https://www.maxmind.com/en/geolite2-developer-package | |
If you do not wish to purchase this you can comment out the GeoDB class | |
and use the ShodanNode class. You will also need to remove the code for | |
any of the MaxMind variable and keys |
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
#!/usr/bin/env python | |
import shodan | |
import sys | |
# Configuration | |
API_KEY = "apikey" | |
# Input validation | |
if len(sys.argv) == 1: |
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
Query | http | |||
---|---|---|---|---|
http.component | port | |||
jQuery | 1250676 | 80 | 56553138 | |
Zepto | 483672 | 7547 | 50655465 | |
PHP | 266668 | 443 | 26476433 | |
Twitter Bootstrap | 255045 | 4567 | 11633390 | |
Google Font API | 211921 | 8080 | 8631875 | |
WordPress | 139645 | 1900 | 4540344 | |
Font Awesome | 133483 | 49152 | 3028740 |
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
Query | product:d-link | |
---|---|---|
product | ||
D-Link DCS-932L webcam http interface | 53585 | |
D-Link DCS-930L webcam http interface | 49788 | |
D-Link DLS-2750U ftp firmward update | 38563 | |
D-Link DCS-932LB1 webcam http interface | 31227 | |
D-Link DCS-930LB1 webcam http interface | 30413 | |
D-Link DCS-5020L webcam http interface | 14109 | |
D-Link DCS-934L webcam http interface | 10951 |
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
#!/usr/bin/python | |
import string | |
import mechanize | |
import socket | |
import Queue | |
import threading | |
import time | |
import sys |
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
#!/usr/local/opt/python/bin/python2.7 | |
import imp | |
import os | |
import shodan | |
import shodan.cli.helpers | |
def mp_init(self, key): | |
self._original___init__(key) | |
self.base_url=os.environ.get('SHODAN_API_PROXY', 'https://api.shodan.io') | |
self.base_exploits_url=os.environ.get('SHODAN_EXPLOITS_API_PROXY', 'https://exploits.shodan.io') |