Spaces:
No application file

OSINT / src /connectors /shodan.py
abello's picture
Upload 28 files
839a850 verified
Raw
History Blame
180 Bytes
import os
from shodan import Shodan
API_KEY = os.getenv("SHODAN_API_KEY")
client = Shodan(API_KEY)
async def search_shodan(entity: str):
return client.search(entity)