Skip to content

Instantly share code, notes, and snippets.

@jimywork
Last active December 8, 2019 16:20
Show Gist options
  • Save jimywork/eec2c3067864757d02eabf5ea5937f69 to your computer and use it in GitHub Desktop.
Save jimywork/eec2c3067864757d02eabf5ea5937f69 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import shodan
import requests
def goipsms (api=None, dork=None, limit=None, offset=None) :
try:
api = shodan.Shodan(api)
res = api.search(dork, limit=limit, offset=offset)
except shodan.APIError as error:
print(error)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment