Skip to content

skear/crowdstrike_api

 
 

Repository files navigation

Crowdstrike API

Build Status (master)

Implements some of the functions to interface with the Crowdstrike APIs.

Want to contribute? Log an issue or PR on the Repo.

To enable logging, use loguru and run logger.enable("crowdstrike") in your script.

Examples

Create a connection

falcon_client = crowdstrike.CrowdstrikeAPI(client_id="myid", client_secret="mysecret")

Create an IOC

create = falcon_client.iocs_create(policy = "detect", type = "domain", value = "mydomain.com")

Get an IOC

get = falcon_client.iocs_get(type = "domain", value = "mytest.com")

Delete an IOC

delete = falcon_client.iocs_delete(type = "domain", value = "mydomain.com")

About

Python library for Crowdstrike API

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.7%
  • Shell 0.3%