معرفی شرکت ها


CrowdClient-0.3.6


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

CrowdClient is a Python library for interacting with CrowdStrike Falcon's REST API.
ویژگی مقدار
سیستم عامل -
نام فایل CrowdClient-0.3.6
نام CrowdClient
نسخه کتابخانه 0.3.6
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Tyler Talaga
ایمیل نویسنده ttalaga@wgu.edu
آدرس صفحه اصلی https://github.com/tyler-tee/CrowdClient
آدرس اینترنتی https://pypi.org/project/CrowdClient/
مجوز MIT
# CrowdClient CrowdClient is a Python library for interacting with CrowdStrike Falcon's REST API. ## Installation ```python pip install crowdclient ``` ## Usage ### General Use ```python from CrowdClient.crowdclient import CrowdClient # Instantiate your client falcon_client = CrowdClient(<client_id>, <client_secret>) # Authenticate to retrieve and store an authentication token for subsequent requests falcon_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 criteria detections = falcon_client.get_detections() # Get the number of hosts in your environment exhibiting activity related to a specified indicator host_count = falcon_client.indicator_host_count('8.8.8.8', 'ipv4') ``` ### Real-Time Response ```python from CrowdClient.crowdclient import RTRClient # Instantiate your client and authenticate rtr_client = RTRClient(<client_id>, <client_secret>, verify_cert=False) rtr_client.authenticate() # Initiate a batch session for multiple hosts batch_id = rtr_client.batch_init(['hostid1', 'hostid2', 'hostid3']) # Issue an RTR Admin command using the established session - Exclude a host if you'd like rtr_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' command script_ids = rtr_client.get_scripts() # Get the details for said scripts script_details = rtr_client.script_details(script_ids) ``` ## License [MIT](https://choosealicense.com/licenses/mit/)


نحوه نصب


نصب پکیج whl CrowdClient-0.3.6:

    pip install CrowdClient-0.3.6.whl


نصب پکیج tar.gz CrowdClient-0.3.6:

    pip install CrowdClient-0.3.6.tar.gz