Skip to content

Te-k/pyshadowserver

Repository files navigation

Pyshadowserver

PyPI PyPI - Downloads PyPI - License GitHub issues

Python library to interact with the Shadow Server Report API.

So far it only implements the ASN, malware, Trusted Programs and report queries.

API

See the documentation and the source code for more information.

Unauthenticated queries

from pyshadowserver import ShadowServer, ShadowServerException

ss = ShadowServer()

ss.asn(origin="8.8.8.8")
ss.trusted_program("7fe2248de77813ce850053ed0ce8a474")

Querying reports

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)

License

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)

About

Python library to interact with ShadowServer API

Resources

License

Stars

Watchers

Forks

Packages

No packages published