Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

CrowdClient is a Python library for interacting with CrowdStrike Falcon's REST API.

License

NotificationsYou must be signed in to change notification settings

tyler-tee/CrowdClient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CrowdClient is a Python library for interacting with CrowdStrike Falcon's REST API.

Installation

pipinstallcrowdclient

Usage

General Use

fromCrowdClient.crowdclientimportCrowdClient# Instantiate your clientfalcon_client=CrowdClient(<client_id>,<client_secret>)# Authenticate to retrieve and store an authentication token for subsequent requestsfalcon_client.authenticate()# Get current detections (defaults to new detections only of all severities sorted newest -> oldest)# Returns a list of all ID's matching above criteriadetections=falcon_client.get_detections()# Get the number of hosts in your environment exhibiting activity related to a specified indicatorhost_count=falcon_client.indicator_host_count('8.8.8.8','ipv4')

Real-Time Response

fromCrowdClient.crowdclientimportRTRClient# Instantiate your client and authenticatertr_client=RTRClient(<client_id>,<client_secret>,verify_cert=False)rtr_client.authenticate()# Initiate a batch session for multiple hostsbatch_id=rtr_client.batch_init(['hostid1','hostid2','hostid3'])# Issue an RTR Admin command using the established session - Exclude a host if you'd likertr_client.batch_admin_cmd(batch_id,command='ls',command_string='ls C:\Users\', optional_hosts=['hostid3'])# View the script ID's available for the user to use with the 'runscript' commandscript_ids=rtr_client.get_scripts()# Get the details for said scriptsscript_details=rtr_client.script_details(script_ids)

License

MIT

About

CrowdClient is a Python library for interacting with CrowdStrike Falcon's REST API.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp