Skip to content

Instantly share code, notes, and snippets.

@wjmccann
Created January 25, 2018 05:08
Show Gist options
  • Save wjmccann/c02af51e8d0a6024c8027a7c445e54d1 to your computer and use it in GitHub Desktop.
Save wjmccann/c02af51e8d0a6024c8027a7c445e54d1 to your computer and use it in GitHub Desktop.
A quick script to quickly get details from Shodan.io from an entire subnet
#!/usr/bin/python
import os
cmd = "wget https://www.shodan.io/host/xxx.xxx.xxx."
for x in range(256):
os.system(cmd + str(x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment