import shodan
import sys
from ConfigParser import ConfigParser
config = ConfigParser()
config.read('auth.ini')
SHODAN_API_KEY = config.get('auth','API_KEY')
api = shodan.Shodan(SHODAN_API_KEY)\
if len(sys.argv) == 1:
print 'Usage: %s <search query>' % sys.argv[0]
sys.exit(1)
try:
query = ' '.join(sys.argv[1:])
parent = query
exploit = api.Exploits(parent)
print exploit.search(query)
except Exception, e:
print 'Error: %s' % e
sys.exit(1)
I use Python 2.7 I get an AttributeError object: 'str' does not have the attribute '_request' traceback error shows line 79 in client.py in the Shodan API, is it just me or their code is inconvenient?
here is Traceback
Traceback (most recent call last):
File "exploitsearch.py", line 26, in <module>
print exploit.search('query')
File "/usr/local/lib/python2.7/dist-packages/shodan/client.py", line 79, in search
return self.parent._request('/api/search', query_args, service='exploits')
AttributeError: 'str' object has no attribute '_request'
source
share