Python library to interact with the Shadow Server Report API.
So far it only implements the ASN, malware, Trusted Programs and report queries.
See the documentation and the source code for more information.
from pyshadowserver import ShadowServer, ShadowServerException
ss = ShadowServer()
ss.asn(origin="8.8.8.8")
ss.trusted_program("7fe2248de77813ce850053ed0ce8a474")
from pyshadowserver import ShadowServer, ShadowServerException
ss = ShadowServer(APIKEY, APISECRET)
# Find all reports and save them
reports = ss.reports_list()
for r in reports:
data = ss.reports_download_raw(r["id"])
with open(r["file"], "w+") as f:
f.write(data)
This code is published under MIT license: do whatever you want with it, but don't blame me if it fails (and open a PR)