├── .flake8 ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── brokenlink.md │ ├── bug_report.md │ └── documentation.md ├── dependabot.yml ├── labeler.yml ├── pull_request_template.md ├── wordlist.txt └── workflows │ ├── bandit.yml │ ├── check_spelling.yml │ ├── codeql-analysis.yml │ ├── dev-deploy.yml │ ├── flake8.yml │ ├── label_request.yml │ ├── pydocstyle.yml │ ├── pylint.yml │ ├── python-publish.yml │ ├── unit_testing_eu1.yml │ ├── unit_testing_macos.yml │ ├── unit_testing_ubuntu.yml │ ├── unit_testing_us2.yml │ ├── unit_testing_usgov1.yml │ └── unit_testing_windows.yml ├── .gitignore ├── .pylintrc ├── AUTHORS.md ├── CHANGELOG.md ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── OSSMETADATA ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── docs ├── PACKAGING.md ├── README.md └── asset │ ├── adversary-bear-1.png │ ├── adversary-bear-2.png │ ├── adversary-goblin-panda.png │ ├── adversary-jackal.png │ ├── adversary-lineup-1.png │ ├── adversary-lineup-2.png │ ├── adversary-panda-1.png │ ├── adversary-panda.png │ ├── adversary-red-eyes.png │ ├── adversary-spider.png │ ├── alliance_team.png │ ├── api_office_hour_preso_thumbnail.png │ ├── ask-a-question.png │ ├── class_types.png │ ├── cs-adversaries-group.png │ ├── cs-logo-footer.png │ ├── cs-logo-red.png │ ├── cs-logo-small.png │ ├── cs-logo.png │ ├── csfalcon.png │ ├── fal.con-2021-presentation.png │ ├── falcon-divider.png │ ├── falconpy-api-office-hour_customer_presentation.pdf │ ├── falconpy-social-graphic.png │ ├── falconpy_code_review_process.png │ ├── glax.png │ ├── hollywood-adversaries.jpg │ ├── join-the-discussion.png │ ├── lunar-wizard.png │ ├── origins-mural.png │ ├── redfalcon.png │ ├── report-issue.png │ ├── service-class-relationships.png │ ├── turbine-panda-lines.png │ ├── turbine-panda.png │ └── uber-class-relationships.png ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── samples ├── README.md ├── authentication │ ├── README.md │ ├── aes_authentication.py │ ├── aes_file_crypt.py │ ├── aws_parameter_store.py │ ├── azure_key_vault.py │ ├── gcp_secrets_manager.py │ ├── requirements_aws_parameter_store.txt │ ├── requirements_token_authentication_example.txt │ └── token_authentication_example.py ├── config_sample.json ├── containers │ ├── README.md │ └── kube_map.py ├── correlation_rules │ └── detection_as_code │ │ ├── .github │ │ └── workflows │ │ │ └── detection-sync.yml │ │ ├── README.md │ │ ├── requirements.txt │ │ ├── rules │ │ └── rules.json │ │ └── scripts │ │ └── sync_detections.py ├── cspm_registration │ ├── README.md │ ├── get_cspm_policies.py │ └── requirements_get_cspm_policies.txt ├── custom_ioa │ ├── README.md │ └── custom_ioa_clone.py ├── detects │ ├── README.md │ └── detects_advisor.py ├── discover │ ├── README.md │ ├── list_discovered_hosts.py │ └── spyglass.py ├── discover_aws │ ├── README.md │ ├── manage_discover_accounts_service.py │ └── manage_discover_accounts_uber.py ├── falconx_sandbox │ ├── README.md │ ├── get_all_artifacts.py │ └── single_scan │ │ ├── README.md │ │ ├── falconx_scan_example.py │ │ └── falconx_scan_example_uber.py ├── firewall_management │ ├── README.md │ ├── firedrill.py │ └── get_firewall_events.py ├── flight_control │ ├── README.md │ ├── find_child_cid.py │ ├── get_child_prevention_policies.py │ ├── host_group_duplicator.py │ └── multicid.py ├── hosts │ ├── README.md │ ├── bulk_add_falcon_tag.py │ ├── default_groups.py │ ├── duplicate_sensors.py │ ├── get_host_groups.py │ ├── host_search.py │ ├── host_search_advanced.py │ ├── hosts_report.py │ ├── match_username_to_host.py │ ├── offset_vs_token.py │ ├── online_since.py │ ├── policy_check.py │ ├── prune_hosts.py │ ├── quarantine_hosts_new.py │ ├── rfm_report.py │ ├── sensor_versions_by_hostname.py │ ├── sensor_versions_by_hostname_advanced.py │ ├── sensor_versions_by_hostname_scrolling.py │ ├── serial_search.py │ └── stale_sensors.py ├── identity │ ├── README.md │ └── graphql_pagination.py ├── incidents │ ├── README.md │ ├── crowdscore_quickchart.py │ └── incident_triage.py ├── installation_tokens │ ├── README.md │ └── token_dispenser.py ├── intel │ ├── README.md │ ├── get_mitre_reports.py │ └── intel_search.py ├── ioa_exclusions │ ├── README.md │ └── ioa_audit.py ├── ioc │ ├── README.md │ ├── create_ioc.py │ ├── example_indicator.json │ ├── ioc_audit.py │ ├── ioc_restore.py │ └── ioc_restore_requirements.txt ├── malquery │ ├── README.md │ └── malqueryinator.py ├── ml_exclusions │ ├── README.md │ └── mle_audit.py ├── ngsiem │ ├── README.md │ └── what_the_hec.py ├── prevention_policy │ ├── README.md │ ├── clone_prev_policy.py │ ├── create_attached_group.py │ ├── prevention_policy_hawk.py │ └── requiremts_prevention_policy_hawk.txt ├── quarantine │ ├── README.md │ └── get_quarantined_files.py ├── quick_scan │ ├── README.md │ ├── quota_check.py │ └── scan_target.py ├── recon │ ├── README.md │ ├── addresses.csv │ └── email_monitoring_recon.py ├── report_executions │ ├── README.md │ └── get_report_results.py ├── rtr │ ├── README.md │ ├── bulk_execute.py │ ├── get_file_from_hosts.py │ ├── get_host_uptime.py │ ├── get_rtr_result.py │ ├── pid-dump │ │ ├── README.md │ │ └── rtr_dump_memory.py │ ├── pony │ │ ├── README.md │ │ └── my_little_rtr.py │ ├── quarantine_hosts.py │ ├── queued_execute.py │ ├── restart_sensor.py │ ├── script_manager.py │ ├── streaming_download_service.py │ └── streaming_download_uber.py ├── sample_uploads │ ├── README.md │ ├── sample_uploads_service.py │ ├── sample_uploads_uber.py │ └── testfile.jpg ├── sensor_download │ ├── README.md │ ├── download_sensor.py │ └── requirements_download_sensor.txt ├── sensor_update_policies │ ├── README.md │ ├── clone_update_policy.py │ ├── create_attached_group.py │ ├── policy_wonk.py │ └── requirements_policy_wonk.txt ├── sensor_visibility_exclusions │ ├── README.md │ └── sve_audit.py ├── spotlight │ ├── CISA_known_exploited_vulns │ │ ├── README.md │ │ └── main.py │ ├── README.md │ ├── find_hosts_by_cve.py │ ├── spotlight_grab_cves_for_cid.py │ └── spotlight_quick_report.py ├── user_management │ ├── README.md │ ├── bulk_user.py │ ├── find_users.py │ ├── get_user_grants.py │ └── users.json └── workflows │ ├── README.md │ ├── asset │ ├── command-execute.png │ ├── command-get-result.png │ ├── command-list-executions.png │ ├── command-list-workflows.png │ ├── command-workflow-export.png │ ├── command-workflow-import.png │ ├── config_icon.png │ ├── environment-configuration-api-debugging.png │ ├── environment-configuration-compress-output.png │ ├── environment-configuration-csv-output.png │ ├── environment-configuration-json-formatting.png │ ├── environment-configuration-log-file-dialog.png │ ├── environment-configuration-log-file-overwrite-dialog.png │ ├── environment-configuration-log-file.png │ ├── environment-configuration-table-formatting.png │ ├── environment-configuration.png │ ├── execution-example-execute-workflow.png │ ├── execution-example-export-workflow.png │ ├── execution-example-get-result.png │ ├── execution-example-import-workflow.png │ ├── execution-example-list-executions.png │ ├── execution-example-list-workflows.png │ ├── execution-example-workflow-disabled.png │ ├── exit-program.png │ ├── export-configuration-export-file.png │ ├── export-configuration-save-file-dialog.png │ ├── export-configuration.png │ ├── import-configuration-import-file-dialog.png │ ├── import-configuration-validate-only.png │ ├── import-configuration-workflow-name.png │ ├── import-configuration.png │ ├── program_icon.png │ ├── running_icon.png │ ├── workflow-configuration-execution-id.png │ ├── workflow-configuration-id-and-payload.png │ ├── workflow-configuration-no-dropdown.png │ ├── workflow-configuration-select-option.png │ ├── workflow-configuration-select-workflow-id.png │ ├── workflow-configuration-workflow-id-custom-value.png │ └── workflow-configuration.png │ ├── workflow_manager.py │ ├── workflow_manager_gui.py │ ├── workflow_manager_gui_requirements.txt │ └── workflow_manager_requirements.txt ├── src └── falconpy │ ├── README.md │ ├── __init__.py │ ├── _api_request │ ├── __init__.py │ ├── _request.py │ ├── _request_behavior.py │ ├── _request_connection.py │ ├── _request_meta.py │ ├── _request_payloads.py │ └── _request_validator.py │ ├── _auth_object │ ├── __init__.py │ ├── _base_falcon_auth.py │ ├── _bearer_token.py │ ├── _falcon_interface.py │ ├── _interface_config.py │ └── _uber_interface.py │ ├── _constant │ └── __init__.py │ ├── _endpoint │ ├── README.md │ ├── __init__.py │ ├── _alerts.py │ ├── _api_integrations.py │ ├── _aspm.py │ ├── _cao_hunting.py │ ├── _certificate_based_exclusions.py │ ├── _cloud_aws_registration.py │ ├── _cloud_azure_registration.py │ ├── _cloud_connect_aws.py │ ├── _cloud_oci_registration.py │ ├── _cloud_security_assets.py │ ├── _cloud_snapshots.py │ ├── _configuration_assessment.py │ ├── _configuration_assessment_evaluation_logic.py │ ├── _container_alerts.py │ ├── _container_detections.py │ ├── _container_image_compliance.py │ ├── _container_images.py │ ├── _container_packages.py │ ├── _container_vulnerabilities.py │ ├── _content_update_policies.py │ ├── _correlation_rules.py │ ├── _cspm_registration.py │ ├── _custom_ioa.py │ ├── _custom_storage.py │ ├── _d4c_registration.py │ ├── _delivery_settings.py │ ├── _deployments.py │ ├── _detects.py │ ├── _device_content.py │ ├── _device_control_policies.py │ ├── _discover.py │ ├── _downloads.py │ ├── _drift_indicators.py │ ├── _event_streams.py │ ├── _exposure_management.py │ ├── _faas_execution.py │ ├── _falcon_complete_dashboard.py │ ├── _falcon_container.py │ ├── _falconx_sandbox.py │ ├── _fdr.py │ ├── _filevantage.py │ ├── _firewall_management.py │ ├── _firewall_policies.py │ ├── _foundry_logscale.py │ ├── _host_group.py │ ├── _host_migration.py │ ├── _hosts.py │ ├── _identity_protection.py │ ├── _image_assessment_policies.py │ ├── _incidents.py │ ├── _installation_tokens.py │ ├── _intel.py │ ├── _intelligence_feeds.py │ ├── _intelligence_indicator_graph.py │ ├── _ioa_exclusions.py │ ├── _ioc.py │ ├── _iocs.py │ ├── _it_automation.py │ ├── _kubernetes_container_compliance.py │ ├── _kubernetes_protection.py │ ├── _malquery.py │ ├── _message_center.py │ ├── _ml_exclusions.py │ ├── _mobile_enrollment.py │ ├── _mssp.py │ ├── _ngsiem.py │ ├── _oauth2.py │ ├── _ods.py │ ├── _overwatch_dashboard.py │ ├── _prevention_policies.py │ ├── _quarantine.py │ ├── _quick_scan.py │ ├── _quick_scan_pro.py │ ├── _real_time_response.py │ ├── _real_time_response_admin.py │ ├── _real_time_response_audit.py │ ├── _recon.py │ ├── _report_executions.py │ ├── _response_policies.py │ ├── _sample_uploads.py │ ├── _scheduled_reports.py │ ├── _sensor_download.py │ ├── _sensor_update_policies.py │ ├── _sensor_usage.py │ ├── _sensor_visibility_exclusions.py │ ├── _serverless_vulnerabilities.py │ ├── _spotlight_evaluation_logic.py │ ├── _spotlight_vulnerabilities.py │ ├── _tailored_intelligence.py │ ├── _threatgraph.py │ ├── _unidentified_containers.py │ ├── _user_management.py │ ├── _workflows.py │ ├── _zero_trust_assessment.py │ └── deprecated │ │ ├── README.md │ │ ├── __init__.py │ │ ├── _certificate_based_exclusions.py │ │ ├── _cloud_aws_registration.py │ │ ├── _cloud_azure_registration.py │ │ ├── _cloud_oci_registration.py │ │ ├── _cloud_security_assets.py │ │ ├── _correlation_rules.py │ │ ├── _custom_ioa.py │ │ ├── _d4c_registration.py │ │ ├── _datascanner.py │ │ ├── _device_content.py │ │ ├── _discover.py │ │ ├── _exposure_management.py │ │ ├── _fdr.py │ │ ├── _firewall_management.py │ │ ├── _hosts.py │ │ ├── _identity_protection.py │ │ ├── _installation_tokens.py │ │ ├── _ioc.py │ │ ├── _iocs.py │ │ ├── _mapping.py │ │ ├── _ods.py │ │ ├── _real_time_response.py │ │ ├── _real_time_response_admin.py │ │ ├── _report_executions.py │ │ ├── _scheduled_reports.py │ │ └── _zero_trust_assessment.py │ ├── _enum │ ├── __init__.py │ ├── _base_url.py │ ├── _container_base_url.py │ ├── _ingest_base_url.py │ ├── _ingest_format.py │ ├── _timeunit.py │ └── _token_fail_reason.py │ ├── _error │ ├── __init__.py │ ├── _exceptions.py │ └── _warnings.py │ ├── _helper │ ├── __init__.py │ ├── _find_operation.py │ ├── _indicator.py │ └── _text_colors.py │ ├── _log │ ├── __init__.py │ └── _facility.py │ ├── _ngsiem │ ├── __init__.py │ ├── _hec.py │ ├── _ingest_config.py │ ├── _ingest_payload.py │ └── _session_manager.py │ ├── _payload │ ├── README.md │ ├── __init__.py │ ├── _alerts.py │ ├── _api_integrations.py │ ├── _aspm.py │ ├── _certificate_based_exclusions.py │ ├── _cloud_aws_registration.py │ ├── _cloud_azure_registration.py │ ├── _cloud_connect_aws.py │ ├── _cloud_oci_registration.py │ ├── _cloud_snapshots.py │ ├── _container.py │ ├── _content_update_policy.py │ ├── _correlation_rules.py │ ├── _cspm_registration.py │ ├── _d4c_registration.py │ ├── _delivery_settings.py │ ├── _detects.py │ ├── _device_control_policy.py │ ├── _exposure_management.py │ ├── _falconx.py │ ├── _filevantage.py │ ├── _firewall.py │ ├── _foundry.py │ ├── _generic.py │ ├── _host_group.py │ ├── _identity_protection.py │ ├── _incidents.py │ ├── _intelligence_indicator_graph.py │ ├── _ioa.py │ ├── _ioc.py │ ├── _it_automation.py │ ├── _malquery.py │ ├── _message_center.py │ ├── _mobile_enrollment.py │ ├── _mssp.py │ ├── _ngsiem.py │ ├── _ods.py │ ├── _prevention_policy.py │ ├── _real_time_response.py │ ├── _recon.py │ ├── _reports.py │ ├── _response_policy.py │ ├── _sample_uploads.py │ ├── _sensor_update_policy.py │ └── _workflows.py │ ├── _result │ ├── __base_resource.py │ ├── __init__.py │ ├── _base_dictionary.py │ ├── _errors.py │ ├── _expanded_result.py │ ├── _headers.py │ ├── _meta.py │ ├── _resources.py │ ├── _response_component.py │ └── _result.py │ ├── _service_class │ ├── __init__.py │ ├── _base_service_class.py │ └── _service_class.py │ ├── _util │ ├── __init__.py │ ├── _auth.py │ ├── _functions.py │ ├── _service.py │ └── _uber.py │ ├── _version.py │ ├── alerts.py │ ├── api_complete │ ├── __init__.py │ ├── _advanced.py │ └── _legacy.py │ ├── api_integrations.py │ ├── aspm.py │ ├── cao_hunting.py │ ├── certificate_based_exclusions.py │ ├── cloud_aws_registration.py │ ├── cloud_azure_registration.py │ ├── cloud_connect_aws.py │ ├── cloud_oci_registration.py │ ├── cloud_security_assets.py │ ├── cloud_snapshots.py │ ├── configuration_assessment.py │ ├── configuration_assessment_evaluation_logic.py │ ├── container_alerts.py │ ├── container_detections.py │ ├── container_image_compliance.py │ ├── container_images.py │ ├── container_packages.py │ ├── container_vulnerabilities.py │ ├── content_update_policies.py │ ├── correlation_rules.py │ ├── cspm_registration.py │ ├── custom_ioa.py │ ├── custom_storage.py │ ├── d4c_registration.py │ ├── debug.py │ ├── delivery_settings.py │ ├── deployments.py │ ├── detects.py │ ├── device_content.py │ ├── device_control_policies.py │ ├── discover.py │ ├── downloads.py │ ├── drift_indicators.py │ ├── event_streams.py │ ├── exposure_management.py │ ├── faas_execution.py │ ├── falcon_complete_dashboard.py │ ├── falcon_container.py │ ├── falconx_sandbox.py │ ├── fdr.py │ ├── filevantage.py │ ├── firewall_management.py │ ├── firewall_policies.py │ ├── foundry_logscale.py │ ├── host_group.py │ ├── host_migration.py │ ├── hosts.py │ ├── identity_protection.py │ ├── image_assessment_policies.py │ ├── incidents.py │ ├── installation_tokens.py │ ├── intel.py │ ├── intelligence_feeds.py │ ├── intelligence_indicator_graph.py │ ├── ioa_exclusions.py │ ├── ioc.py │ ├── iocs.py │ ├── it_automation.py │ ├── kubernetes_container_compliance.py │ ├── kubernetes_protection.py │ ├── malquery.py │ ├── message_center.py │ ├── ml_exclusions.py │ ├── mobile_enrollment.py │ ├── mssp.py │ ├── ngsiem.py │ ├── oauth2.py │ ├── ods.py │ ├── overwatch_dashboard.py │ ├── prevention_policy.py │ ├── quarantine.py │ ├── quick_scan.py │ ├── quick_scan_pro.py │ ├── real_time_response.py │ ├── real_time_response_admin.py │ ├── real_time_response_audit.py │ ├── recon.py │ ├── report_executions.py │ ├── response_policies.py │ ├── sample_uploads.py │ ├── scheduled_reports.py │ ├── sensor_download.py │ ├── sensor_update_policy.py │ ├── sensor_usage.py │ ├── sensor_visibility_exclusions.py │ ├── serverless_vulnerabilities.py │ ├── spotlight_evaluation_logic.py │ ├── spotlight_vulnerabilities.py │ ├── tailored_intelligence.py │ ├── threatgraph.py │ ├── unidentified_containers.py │ ├── user_management.py │ ├── workflows.py │ └── zero_trust_assessment.py ├── tests ├── 100thousand.raw.gz ├── 5records.raw ├── README.md ├── __init__.py ├── conftest.py ├── coverage.svg ├── manual │ ├── __init__.py │ └── test_get_device_details.py ├── test.yml ├── test_alerts.py ├── test_api_integrations.py ├── test_api_request.py ├── test_aspm.py ├── test_authentications.py ├── test_authorization.py ├── test_cao_hunting.py ├── test_certificate_based_exclusions.py ├── test_cloud_aws_registration.py ├── test_cloud_azure_registration.py ├── test_cloud_connect_aws.py ├── test_cloud_oci_registration.py ├── test_cloud_security_assets.py ├── test_cloud_snapshots.py ├── test_configuration_assessment.py ├── test_configuration_assessment_evaluation_logic.py ├── test_container_alerts.py ├── test_container_detections.py ├── test_container_image_compliance.py ├── test_container_images.py ├── test_container_packages.py ├── test_container_vulnerabilities.py ├── test_content_update_policies.py ├── test_correlation_rules.py ├── test_cspm_registration.py ├── test_custom_ioa.py ├── test_custom_storage.py ├── test_d4c_registration.py ├── test_delivery_settings.py ├── test_deployments.py ├── test_detects.py ├── test_device_content.py ├── test_device_control_policies.py ├── test_discover.py ├── test_downloads.py ├── test_drift_indicators.py ├── test_event_streams.py ├── test_exposure_management.py ├── test_faas_execution.py ├── test_falcon_complete_dashboard.py ├── test_falcon_container.py ├── test_falconx_sandbox.py ├── test_fdr.py ├── test_filevantage.py ├── test_firewall_management.py ├── test_firewall_policies.py ├── test_foundry_logscale.py ├── test_hec.py ├── test_helper.py ├── test_host_group.py ├── test_host_migration.py ├── test_hosts.py ├── test_identity_protection.py ├── test_image_assessment_policies.py ├── test_incidents.py ├── test_installation_tokens.py ├── test_intel.py ├── test_intelligence_feeds.py ├── test_intelligence_indicator_graph.py ├── test_ioa_exclusions.py ├── test_ioc.py ├── test_iocs.py ├── test_it_automation.py ├── test_kubernetes_container_compliance.py ├── test_kubernetes_protection.py ├── test_malquery.py ├── test_message_center.py ├── test_ml_exclusions.py ├── test_mobile_enrollment.py ├── test_mssp.py ├── test_ngsiem.py ├── test_ods.py ├── test_overwatch_dashboard.py ├── test_prevention_policy.py ├── test_quarantine.py ├── test_quick_scan.py ├── test_quick_scan_pro.py ├── test_real_time_response.py ├── test_real_time_response_admin.py ├── test_real_time_response_audit.py ├── test_recon.py ├── test_report_executions.py ├── test_response_policies.py ├── test_result_object.py ├── test_sample_uploads.py ├── test_scheduled_reports.py ├── test_sensor_download.py ├── test_sensor_update_policy.py ├── test_sensor_usage.py ├── test_sensor_visibility_exclusions.py ├── test_serverless_vulnerabilities.py ├── test_service_class.py ├── test_spotlight_evaluation_logic.py ├── test_spotlight_vulnerabilities.py ├── test_tailored_intelligence.py ├── test_threatgraph.py ├── test_timeout.py ├── test_uber.py ├── test_uber_api_complete.py ├── test_unidentified_containers.py ├── test_user_management.py ├── test_workflows.py ├── test_zero_trust_assessment.py ├── testfile.csv ├── testfile.json ├── testfile.pdf ├── testfile.png └── testfile.zip └── util ├── README.md ├── babel_fish.py ├── coverage.config ├── create-lambda-layer.sh ├── debug.sh ├── docstyle.sh ├── find-strings.sh ├── lint.sh ├── public-modules.sh ├── run-tests.sh ├── sample-list.sh ├── set-debug.sh ├── unit-test.sh └── vcheck.sh /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/brokenlink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/ISSUE_TEMPLATE/brokenlink.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/wordlist.txt -------------------------------------------------------------------------------- /.github/workflows/bandit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/bandit.yml -------------------------------------------------------------------------------- /.github/workflows/check_spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/check_spelling.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dev-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/dev-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/flake8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/flake8.yml -------------------------------------------------------------------------------- /.github/workflows/label_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/label_request.yml -------------------------------------------------------------------------------- /.github/workflows/pydocstyle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/pydocstyle.yml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/unit_testing_eu1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/unit_testing_eu1.yml -------------------------------------------------------------------------------- /.github/workflows/unit_testing_macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/unit_testing_macos.yml -------------------------------------------------------------------------------- /.github/workflows/unit_testing_ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/unit_testing_ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/unit_testing_us2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/unit_testing_us2.yml -------------------------------------------------------------------------------- /.github/workflows/unit_testing_usgov1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/unit_testing_usgov1.yml -------------------------------------------------------------------------------- /.github/workflows/unit_testing_windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.github/workflows/unit_testing_windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/.pylintrc -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/LICENSE -------------------------------------------------------------------------------- /OSSMETADATA: -------------------------------------------------------------------------------- 1 | osslifecycle=active 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /docs/PACKAGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/PACKAGING.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/asset/adversary-bear-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/adversary-bear-1.png -------------------------------------------------------------------------------- /docs/asset/adversary-bear-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/adversary-bear-2.png -------------------------------------------------------------------------------- /docs/asset/adversary-goblin-panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/adversary-goblin-panda.png -------------------------------------------------------------------------------- /docs/asset/adversary-jackal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/adversary-jackal.png -------------------------------------------------------------------------------- /docs/asset/adversary-lineup-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/adversary-lineup-1.png -------------------------------------------------------------------------------- /docs/asset/adversary-lineup-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/adversary-lineup-2.png -------------------------------------------------------------------------------- /docs/asset/adversary-panda-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/adversary-panda-1.png -------------------------------------------------------------------------------- /docs/asset/adversary-panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/adversary-panda.png -------------------------------------------------------------------------------- /docs/asset/adversary-red-eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/adversary-red-eyes.png -------------------------------------------------------------------------------- /docs/asset/adversary-spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/adversary-spider.png -------------------------------------------------------------------------------- /docs/asset/alliance_team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/alliance_team.png -------------------------------------------------------------------------------- /docs/asset/api_office_hour_preso_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/api_office_hour_preso_thumbnail.png -------------------------------------------------------------------------------- /docs/asset/ask-a-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/ask-a-question.png -------------------------------------------------------------------------------- /docs/asset/class_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/class_types.png -------------------------------------------------------------------------------- /docs/asset/cs-adversaries-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/cs-adversaries-group.png -------------------------------------------------------------------------------- /docs/asset/cs-logo-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/cs-logo-footer.png -------------------------------------------------------------------------------- /docs/asset/cs-logo-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/cs-logo-red.png -------------------------------------------------------------------------------- /docs/asset/cs-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/cs-logo-small.png -------------------------------------------------------------------------------- /docs/asset/cs-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/cs-logo.png -------------------------------------------------------------------------------- /docs/asset/csfalcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/csfalcon.png -------------------------------------------------------------------------------- /docs/asset/fal.con-2021-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/fal.con-2021-presentation.png -------------------------------------------------------------------------------- /docs/asset/falcon-divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/falcon-divider.png -------------------------------------------------------------------------------- /docs/asset/falconpy-api-office-hour_customer_presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/falconpy-api-office-hour_customer_presentation.pdf -------------------------------------------------------------------------------- /docs/asset/falconpy-social-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/falconpy-social-graphic.png -------------------------------------------------------------------------------- /docs/asset/falconpy_code_review_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/falconpy_code_review_process.png -------------------------------------------------------------------------------- /docs/asset/glax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/glax.png -------------------------------------------------------------------------------- /docs/asset/hollywood-adversaries.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/hollywood-adversaries.jpg -------------------------------------------------------------------------------- /docs/asset/join-the-discussion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/join-the-discussion.png -------------------------------------------------------------------------------- /docs/asset/lunar-wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/lunar-wizard.png -------------------------------------------------------------------------------- /docs/asset/origins-mural.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/origins-mural.png -------------------------------------------------------------------------------- /docs/asset/redfalcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/redfalcon.png -------------------------------------------------------------------------------- /docs/asset/report-issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/report-issue.png -------------------------------------------------------------------------------- /docs/asset/service-class-relationships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/service-class-relationships.png -------------------------------------------------------------------------------- /docs/asset/turbine-panda-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/turbine-panda-lines.png -------------------------------------------------------------------------------- /docs/asset/turbine-panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/turbine-panda.png -------------------------------------------------------------------------------- /docs/asset/uber-class-relationships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/docs/asset/uber-class-relationships.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/authentication/README.md -------------------------------------------------------------------------------- /samples/authentication/aes_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/authentication/aes_authentication.py -------------------------------------------------------------------------------- /samples/authentication/aes_file_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/authentication/aes_file_crypt.py -------------------------------------------------------------------------------- /samples/authentication/aws_parameter_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/authentication/aws_parameter_store.py -------------------------------------------------------------------------------- /samples/authentication/azure_key_vault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/authentication/azure_key_vault.py -------------------------------------------------------------------------------- /samples/authentication/gcp_secrets_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/authentication/gcp_secrets_manager.py -------------------------------------------------------------------------------- /samples/authentication/requirements_aws_parameter_store.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | crowdstrike-falconpy -------------------------------------------------------------------------------- /samples/authentication/requirements_token_authentication_example.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | click 3 | colorama 4 | crowdstrike-falconpy -------------------------------------------------------------------------------- /samples/authentication/token_authentication_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/authentication/token_authentication_example.py -------------------------------------------------------------------------------- /samples/config_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/config_sample.json -------------------------------------------------------------------------------- /samples/containers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/containers/README.md -------------------------------------------------------------------------------- /samples/containers/kube_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/containers/kube_map.py -------------------------------------------------------------------------------- /samples/correlation_rules/detection_as_code/.github/workflows/detection-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/correlation_rules/detection_as_code/.github/workflows/detection-sync.yml -------------------------------------------------------------------------------- /samples/correlation_rules/detection_as_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/correlation_rules/detection_as_code/README.md -------------------------------------------------------------------------------- /samples/correlation_rules/detection_as_code/requirements.txt: -------------------------------------------------------------------------------- 1 | crowdstrike-falconpy>=1.4.8 -------------------------------------------------------------------------------- /samples/correlation_rules/detection_as_code/rules/rules.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /samples/correlation_rules/detection_as_code/scripts/sync_detections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/correlation_rules/detection_as_code/scripts/sync_detections.py -------------------------------------------------------------------------------- /samples/cspm_registration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/cspm_registration/README.md -------------------------------------------------------------------------------- /samples/cspm_registration/get_cspm_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/cspm_registration/get_cspm_policies.py -------------------------------------------------------------------------------- /samples/cspm_registration/requirements_get_cspm_policies.txt: -------------------------------------------------------------------------------- 1 | crowdstrike-falconpy 2 | tabulate -------------------------------------------------------------------------------- /samples/custom_ioa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/custom_ioa/README.md -------------------------------------------------------------------------------- /samples/custom_ioa/custom_ioa_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/custom_ioa/custom_ioa_clone.py -------------------------------------------------------------------------------- /samples/detects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/detects/README.md -------------------------------------------------------------------------------- /samples/detects/detects_advisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/detects/detects_advisor.py -------------------------------------------------------------------------------- /samples/discover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/discover/README.md -------------------------------------------------------------------------------- /samples/discover/list_discovered_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/discover/list_discovered_hosts.py -------------------------------------------------------------------------------- /samples/discover/spyglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/discover/spyglass.py -------------------------------------------------------------------------------- /samples/discover_aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/discover_aws/README.md -------------------------------------------------------------------------------- /samples/discover_aws/manage_discover_accounts_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/discover_aws/manage_discover_accounts_service.py -------------------------------------------------------------------------------- /samples/discover_aws/manage_discover_accounts_uber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/discover_aws/manage_discover_accounts_uber.py -------------------------------------------------------------------------------- /samples/falconx_sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/falconx_sandbox/README.md -------------------------------------------------------------------------------- /samples/falconx_sandbox/get_all_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/falconx_sandbox/get_all_artifacts.py -------------------------------------------------------------------------------- /samples/falconx_sandbox/single_scan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/falconx_sandbox/single_scan/README.md -------------------------------------------------------------------------------- /samples/falconx_sandbox/single_scan/falconx_scan_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/falconx_sandbox/single_scan/falconx_scan_example.py -------------------------------------------------------------------------------- /samples/falconx_sandbox/single_scan/falconx_scan_example_uber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/falconx_sandbox/single_scan/falconx_scan_example_uber.py -------------------------------------------------------------------------------- /samples/firewall_management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/firewall_management/README.md -------------------------------------------------------------------------------- /samples/firewall_management/firedrill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/firewall_management/firedrill.py -------------------------------------------------------------------------------- /samples/firewall_management/get_firewall_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/firewall_management/get_firewall_events.py -------------------------------------------------------------------------------- /samples/flight_control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/flight_control/README.md -------------------------------------------------------------------------------- /samples/flight_control/find_child_cid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/flight_control/find_child_cid.py -------------------------------------------------------------------------------- /samples/flight_control/get_child_prevention_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/flight_control/get_child_prevention_policies.py -------------------------------------------------------------------------------- /samples/flight_control/host_group_duplicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/flight_control/host_group_duplicator.py -------------------------------------------------------------------------------- /samples/flight_control/multicid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/flight_control/multicid.py -------------------------------------------------------------------------------- /samples/hosts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/README.md -------------------------------------------------------------------------------- /samples/hosts/bulk_add_falcon_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/bulk_add_falcon_tag.py -------------------------------------------------------------------------------- /samples/hosts/default_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/default_groups.py -------------------------------------------------------------------------------- /samples/hosts/duplicate_sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/duplicate_sensors.py -------------------------------------------------------------------------------- /samples/hosts/get_host_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/get_host_groups.py -------------------------------------------------------------------------------- /samples/hosts/host_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/host_search.py -------------------------------------------------------------------------------- /samples/hosts/host_search_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/host_search_advanced.py -------------------------------------------------------------------------------- /samples/hosts/hosts_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/hosts_report.py -------------------------------------------------------------------------------- /samples/hosts/match_username_to_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/match_username_to_host.py -------------------------------------------------------------------------------- /samples/hosts/offset_vs_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/offset_vs_token.py -------------------------------------------------------------------------------- /samples/hosts/online_since.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/online_since.py -------------------------------------------------------------------------------- /samples/hosts/policy_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/policy_check.py -------------------------------------------------------------------------------- /samples/hosts/prune_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/prune_hosts.py -------------------------------------------------------------------------------- /samples/hosts/quarantine_hosts_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/quarantine_hosts_new.py -------------------------------------------------------------------------------- /samples/hosts/rfm_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/rfm_report.py -------------------------------------------------------------------------------- /samples/hosts/sensor_versions_by_hostname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/sensor_versions_by_hostname.py -------------------------------------------------------------------------------- /samples/hosts/sensor_versions_by_hostname_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/sensor_versions_by_hostname_advanced.py -------------------------------------------------------------------------------- /samples/hosts/sensor_versions_by_hostname_scrolling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/sensor_versions_by_hostname_scrolling.py -------------------------------------------------------------------------------- /samples/hosts/serial_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/serial_search.py -------------------------------------------------------------------------------- /samples/hosts/stale_sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/hosts/stale_sensors.py -------------------------------------------------------------------------------- /samples/identity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/identity/README.md -------------------------------------------------------------------------------- /samples/identity/graphql_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/identity/graphql_pagination.py -------------------------------------------------------------------------------- /samples/incidents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/incidents/README.md -------------------------------------------------------------------------------- /samples/incidents/crowdscore_quickchart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/incidents/crowdscore_quickchart.py -------------------------------------------------------------------------------- /samples/incidents/incident_triage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/incidents/incident_triage.py -------------------------------------------------------------------------------- /samples/installation_tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/installation_tokens/README.md -------------------------------------------------------------------------------- /samples/installation_tokens/token_dispenser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/installation_tokens/token_dispenser.py -------------------------------------------------------------------------------- /samples/intel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/intel/README.md -------------------------------------------------------------------------------- /samples/intel/get_mitre_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/intel/get_mitre_reports.py -------------------------------------------------------------------------------- /samples/intel/intel_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/intel/intel_search.py -------------------------------------------------------------------------------- /samples/ioa_exclusions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/ioa_exclusions/README.md -------------------------------------------------------------------------------- /samples/ioa_exclusions/ioa_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/ioa_exclusions/ioa_audit.py -------------------------------------------------------------------------------- /samples/ioc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/ioc/README.md -------------------------------------------------------------------------------- /samples/ioc/create_ioc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/ioc/create_ioc.py -------------------------------------------------------------------------------- /samples/ioc/example_indicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/ioc/example_indicator.json -------------------------------------------------------------------------------- /samples/ioc/ioc_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/ioc/ioc_audit.py -------------------------------------------------------------------------------- /samples/ioc/ioc_restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/ioc/ioc_restore.py -------------------------------------------------------------------------------- /samples/ioc/ioc_restore_requirements.txt: -------------------------------------------------------------------------------- 1 | crowdstrike-falconpy 2 | tabulate -------------------------------------------------------------------------------- /samples/malquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/malquery/README.md -------------------------------------------------------------------------------- /samples/malquery/malqueryinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/malquery/malqueryinator.py -------------------------------------------------------------------------------- /samples/ml_exclusions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/ml_exclusions/README.md -------------------------------------------------------------------------------- /samples/ml_exclusions/mle_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/ml_exclusions/mle_audit.py -------------------------------------------------------------------------------- /samples/ngsiem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/ngsiem/README.md -------------------------------------------------------------------------------- /samples/ngsiem/what_the_hec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/ngsiem/what_the_hec.py -------------------------------------------------------------------------------- /samples/prevention_policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/prevention_policy/README.md -------------------------------------------------------------------------------- /samples/prevention_policy/clone_prev_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/prevention_policy/clone_prev_policy.py -------------------------------------------------------------------------------- /samples/prevention_policy/create_attached_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/prevention_policy/create_attached_group.py -------------------------------------------------------------------------------- /samples/prevention_policy/prevention_policy_hawk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/prevention_policy/prevention_policy_hawk.py -------------------------------------------------------------------------------- /samples/prevention_policy/requiremts_prevention_policy_hawk.txt: -------------------------------------------------------------------------------- 1 | argparse 2 | enum34 3 | crowdstrike-falconpy 4 | tabulate 5 | -------------------------------------------------------------------------------- /samples/quarantine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/quarantine/README.md -------------------------------------------------------------------------------- /samples/quarantine/get_quarantined_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/quarantine/get_quarantined_files.py -------------------------------------------------------------------------------- /samples/quick_scan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/quick_scan/README.md -------------------------------------------------------------------------------- /samples/quick_scan/quota_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/quick_scan/quota_check.py -------------------------------------------------------------------------------- /samples/quick_scan/scan_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/quick_scan/scan_target.py -------------------------------------------------------------------------------- /samples/recon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/recon/README.md -------------------------------------------------------------------------------- /samples/recon/addresses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/recon/addresses.csv -------------------------------------------------------------------------------- /samples/recon/email_monitoring_recon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/recon/email_monitoring_recon.py -------------------------------------------------------------------------------- /samples/report_executions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/report_executions/README.md -------------------------------------------------------------------------------- /samples/report_executions/get_report_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/report_executions/get_report_results.py -------------------------------------------------------------------------------- /samples/rtr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/README.md -------------------------------------------------------------------------------- /samples/rtr/bulk_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/bulk_execute.py -------------------------------------------------------------------------------- /samples/rtr/get_file_from_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/get_file_from_hosts.py -------------------------------------------------------------------------------- /samples/rtr/get_host_uptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/get_host_uptime.py -------------------------------------------------------------------------------- /samples/rtr/get_rtr_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/get_rtr_result.py -------------------------------------------------------------------------------- /samples/rtr/pid-dump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/pid-dump/README.md -------------------------------------------------------------------------------- /samples/rtr/pid-dump/rtr_dump_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/pid-dump/rtr_dump_memory.py -------------------------------------------------------------------------------- /samples/rtr/pony/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/pony/README.md -------------------------------------------------------------------------------- /samples/rtr/pony/my_little_rtr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/pony/my_little_rtr.py -------------------------------------------------------------------------------- /samples/rtr/quarantine_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/quarantine_hosts.py -------------------------------------------------------------------------------- /samples/rtr/queued_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/queued_execute.py -------------------------------------------------------------------------------- /samples/rtr/restart_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/restart_sensor.py -------------------------------------------------------------------------------- /samples/rtr/script_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/script_manager.py -------------------------------------------------------------------------------- /samples/rtr/streaming_download_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/streaming_download_service.py -------------------------------------------------------------------------------- /samples/rtr/streaming_download_uber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/rtr/streaming_download_uber.py -------------------------------------------------------------------------------- /samples/sample_uploads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/sample_uploads/README.md -------------------------------------------------------------------------------- /samples/sample_uploads/sample_uploads_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/sample_uploads/sample_uploads_service.py -------------------------------------------------------------------------------- /samples/sample_uploads/sample_uploads_uber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/sample_uploads/sample_uploads_uber.py -------------------------------------------------------------------------------- /samples/sample_uploads/testfile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/sample_uploads/testfile.jpg -------------------------------------------------------------------------------- /samples/sensor_download/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/sensor_download/README.md -------------------------------------------------------------------------------- /samples/sensor_download/download_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/sensor_download/download_sensor.py -------------------------------------------------------------------------------- /samples/sensor_download/requirements_download_sensor.txt: -------------------------------------------------------------------------------- 1 | crowdstrike-falconpy 2 | tabulate 3 | -------------------------------------------------------------------------------- /samples/sensor_update_policies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/sensor_update_policies/README.md -------------------------------------------------------------------------------- /samples/sensor_update_policies/clone_update_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/sensor_update_policies/clone_update_policy.py -------------------------------------------------------------------------------- /samples/sensor_update_policies/create_attached_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/sensor_update_policies/create_attached_group.py -------------------------------------------------------------------------------- /samples/sensor_update_policies/policy_wonk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/sensor_update_policies/policy_wonk.py -------------------------------------------------------------------------------- /samples/sensor_update_policies/requirements_policy_wonk.txt: -------------------------------------------------------------------------------- 1 | crowdstrike-falconpy 2 | tabulate 3 | -------------------------------------------------------------------------------- /samples/sensor_visibility_exclusions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/sensor_visibility_exclusions/README.md -------------------------------------------------------------------------------- /samples/sensor_visibility_exclusions/sve_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/sensor_visibility_exclusions/sve_audit.py -------------------------------------------------------------------------------- /samples/spotlight/CISA_known_exploited_vulns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/spotlight/CISA_known_exploited_vulns/README.md -------------------------------------------------------------------------------- /samples/spotlight/CISA_known_exploited_vulns/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/spotlight/CISA_known_exploited_vulns/main.py -------------------------------------------------------------------------------- /samples/spotlight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/spotlight/README.md -------------------------------------------------------------------------------- /samples/spotlight/find_hosts_by_cve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/spotlight/find_hosts_by_cve.py -------------------------------------------------------------------------------- /samples/spotlight/spotlight_grab_cves_for_cid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/spotlight/spotlight_grab_cves_for_cid.py -------------------------------------------------------------------------------- /samples/spotlight/spotlight_quick_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/spotlight/spotlight_quick_report.py -------------------------------------------------------------------------------- /samples/user_management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/user_management/README.md -------------------------------------------------------------------------------- /samples/user_management/bulk_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/user_management/bulk_user.py -------------------------------------------------------------------------------- /samples/user_management/find_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/user_management/find_users.py -------------------------------------------------------------------------------- /samples/user_management/get_user_grants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/user_management/get_user_grants.py -------------------------------------------------------------------------------- /samples/user_management/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/user_management/users.json -------------------------------------------------------------------------------- /samples/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/README.md -------------------------------------------------------------------------------- /samples/workflows/asset/command-execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/command-execute.png -------------------------------------------------------------------------------- /samples/workflows/asset/command-get-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/command-get-result.png -------------------------------------------------------------------------------- /samples/workflows/asset/command-list-executions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/command-list-executions.png -------------------------------------------------------------------------------- /samples/workflows/asset/command-list-workflows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/command-list-workflows.png -------------------------------------------------------------------------------- /samples/workflows/asset/command-workflow-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/command-workflow-export.png -------------------------------------------------------------------------------- /samples/workflows/asset/command-workflow-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/command-workflow-import.png -------------------------------------------------------------------------------- /samples/workflows/asset/config_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/config_icon.png -------------------------------------------------------------------------------- /samples/workflows/asset/environment-configuration-api-debugging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/environment-configuration-api-debugging.png -------------------------------------------------------------------------------- /samples/workflows/asset/environment-configuration-compress-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/environment-configuration-compress-output.png -------------------------------------------------------------------------------- /samples/workflows/asset/environment-configuration-csv-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/environment-configuration-csv-output.png -------------------------------------------------------------------------------- /samples/workflows/asset/environment-configuration-json-formatting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/environment-configuration-json-formatting.png -------------------------------------------------------------------------------- /samples/workflows/asset/environment-configuration-log-file-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/environment-configuration-log-file-dialog.png -------------------------------------------------------------------------------- /samples/workflows/asset/environment-configuration-log-file-overwrite-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/environment-configuration-log-file-overwrite-dialog.png -------------------------------------------------------------------------------- /samples/workflows/asset/environment-configuration-log-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/environment-configuration-log-file.png -------------------------------------------------------------------------------- /samples/workflows/asset/environment-configuration-table-formatting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/environment-configuration-table-formatting.png -------------------------------------------------------------------------------- /samples/workflows/asset/environment-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/environment-configuration.png -------------------------------------------------------------------------------- /samples/workflows/asset/execution-example-execute-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/execution-example-execute-workflow.png -------------------------------------------------------------------------------- /samples/workflows/asset/execution-example-export-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/execution-example-export-workflow.png -------------------------------------------------------------------------------- /samples/workflows/asset/execution-example-get-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/execution-example-get-result.png -------------------------------------------------------------------------------- /samples/workflows/asset/execution-example-import-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/execution-example-import-workflow.png -------------------------------------------------------------------------------- /samples/workflows/asset/execution-example-list-executions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/execution-example-list-executions.png -------------------------------------------------------------------------------- /samples/workflows/asset/execution-example-list-workflows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/execution-example-list-workflows.png -------------------------------------------------------------------------------- /samples/workflows/asset/execution-example-workflow-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/execution-example-workflow-disabled.png -------------------------------------------------------------------------------- /samples/workflows/asset/exit-program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/exit-program.png -------------------------------------------------------------------------------- /samples/workflows/asset/export-configuration-export-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/export-configuration-export-file.png -------------------------------------------------------------------------------- /samples/workflows/asset/export-configuration-save-file-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/export-configuration-save-file-dialog.png -------------------------------------------------------------------------------- /samples/workflows/asset/export-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/export-configuration.png -------------------------------------------------------------------------------- /samples/workflows/asset/import-configuration-import-file-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/import-configuration-import-file-dialog.png -------------------------------------------------------------------------------- /samples/workflows/asset/import-configuration-validate-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/import-configuration-validate-only.png -------------------------------------------------------------------------------- /samples/workflows/asset/import-configuration-workflow-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/import-configuration-workflow-name.png -------------------------------------------------------------------------------- /samples/workflows/asset/import-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/import-configuration.png -------------------------------------------------------------------------------- /samples/workflows/asset/program_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/program_icon.png -------------------------------------------------------------------------------- /samples/workflows/asset/running_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/running_icon.png -------------------------------------------------------------------------------- /samples/workflows/asset/workflow-configuration-execution-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/workflow-configuration-execution-id.png -------------------------------------------------------------------------------- /samples/workflows/asset/workflow-configuration-id-and-payload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/workflow-configuration-id-and-payload.png -------------------------------------------------------------------------------- /samples/workflows/asset/workflow-configuration-no-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/workflow-configuration-no-dropdown.png -------------------------------------------------------------------------------- /samples/workflows/asset/workflow-configuration-select-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/workflow-configuration-select-option.png -------------------------------------------------------------------------------- /samples/workflows/asset/workflow-configuration-select-workflow-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/workflow-configuration-select-workflow-id.png -------------------------------------------------------------------------------- /samples/workflows/asset/workflow-configuration-workflow-id-custom-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/workflow-configuration-workflow-id-custom-value.png -------------------------------------------------------------------------------- /samples/workflows/asset/workflow-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/asset/workflow-configuration.png -------------------------------------------------------------------------------- /samples/workflows/workflow_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/workflow_manager.py -------------------------------------------------------------------------------- /samples/workflows/workflow_manager_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/workflow_manager_gui.py -------------------------------------------------------------------------------- /samples/workflows/workflow_manager_gui_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/samples/workflows/workflow_manager_gui_requirements.txt -------------------------------------------------------------------------------- /samples/workflows/workflow_manager_requirements.txt: -------------------------------------------------------------------------------- 1 | crowdstrike-falconpy 2 | tabulate 3 | termcolor -------------------------------------------------------------------------------- /src/falconpy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/README.md -------------------------------------------------------------------------------- /src/falconpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_api_request/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_api_request/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_api_request/_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_api_request/_request.py -------------------------------------------------------------------------------- /src/falconpy/_api_request/_request_behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_api_request/_request_behavior.py -------------------------------------------------------------------------------- /src/falconpy/_api_request/_request_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_api_request/_request_connection.py -------------------------------------------------------------------------------- /src/falconpy/_api_request/_request_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_api_request/_request_meta.py -------------------------------------------------------------------------------- /src/falconpy/_api_request/_request_payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_api_request/_request_payloads.py -------------------------------------------------------------------------------- /src/falconpy/_api_request/_request_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_api_request/_request_validator.py -------------------------------------------------------------------------------- /src/falconpy/_auth_object/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_auth_object/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_auth_object/_base_falcon_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_auth_object/_base_falcon_auth.py -------------------------------------------------------------------------------- /src/falconpy/_auth_object/_bearer_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_auth_object/_bearer_token.py -------------------------------------------------------------------------------- /src/falconpy/_auth_object/_falcon_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_auth_object/_falcon_interface.py -------------------------------------------------------------------------------- /src/falconpy/_auth_object/_interface_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_auth_object/_interface_config.py -------------------------------------------------------------------------------- /src/falconpy/_auth_object/_uber_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_auth_object/_uber_interface.py -------------------------------------------------------------------------------- /src/falconpy/_constant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_constant/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/README.md -------------------------------------------------------------------------------- /src/falconpy/_endpoint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_alerts.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_api_integrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_api_integrations.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_aspm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_aspm.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_cao_hunting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_cao_hunting.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_certificate_based_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_certificate_based_exclusions.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_cloud_aws_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_cloud_aws_registration.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_cloud_azure_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_cloud_azure_registration.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_cloud_connect_aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_cloud_connect_aws.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_cloud_oci_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_cloud_oci_registration.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_cloud_security_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_cloud_security_assets.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_cloud_snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_cloud_snapshots.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_configuration_assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_configuration_assessment.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_configuration_assessment_evaluation_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_configuration_assessment_evaluation_logic.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_container_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_container_alerts.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_container_detections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_container_detections.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_container_image_compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_container_image_compliance.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_container_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_container_images.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_container_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_container_packages.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_container_vulnerabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_container_vulnerabilities.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_content_update_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_content_update_policies.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_correlation_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_correlation_rules.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_cspm_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_cspm_registration.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_custom_ioa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_custom_ioa.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_custom_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_custom_storage.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_d4c_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_d4c_registration.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_delivery_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_delivery_settings.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_deployments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_deployments.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_detects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_detects.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_device_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_device_content.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_device_control_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_device_control_policies.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_discover.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_downloads.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_drift_indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_drift_indicators.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_event_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_event_streams.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_exposure_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_exposure_management.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_faas_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_faas_execution.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_falcon_complete_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_falcon_complete_dashboard.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_falcon_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_falcon_container.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_falconx_sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_falconx_sandbox.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_fdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_fdr.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_filevantage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_filevantage.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_firewall_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_firewall_management.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_firewall_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_firewall_policies.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_foundry_logscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_foundry_logscale.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_host_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_host_group.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_host_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_host_migration.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_hosts.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_identity_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_identity_protection.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_image_assessment_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_image_assessment_policies.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_incidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_incidents.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_installation_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_installation_tokens.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_intel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_intel.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_intelligence_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_intelligence_feeds.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_intelligence_indicator_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_intelligence_indicator_graph.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_ioa_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_ioa_exclusions.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_ioc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_ioc.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_iocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_iocs.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_it_automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_it_automation.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_kubernetes_container_compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_kubernetes_container_compliance.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_kubernetes_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_kubernetes_protection.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_malquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_malquery.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_message_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_message_center.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_ml_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_ml_exclusions.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_mobile_enrollment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_mobile_enrollment.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_mssp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_mssp.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_ngsiem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_ngsiem.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_oauth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_oauth2.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_ods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_ods.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_overwatch_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_overwatch_dashboard.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_prevention_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_prevention_policies.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_quarantine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_quarantine.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_quick_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_quick_scan.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_quick_scan_pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_quick_scan_pro.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_real_time_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_real_time_response.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_real_time_response_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_real_time_response_admin.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_real_time_response_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_real_time_response_audit.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_recon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_recon.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_report_executions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_report_executions.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_response_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_response_policies.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_sample_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_sample_uploads.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_scheduled_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_scheduled_reports.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_sensor_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_sensor_download.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_sensor_update_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_sensor_update_policies.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_sensor_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_sensor_usage.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_sensor_visibility_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_sensor_visibility_exclusions.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_serverless_vulnerabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_serverless_vulnerabilities.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_spotlight_evaluation_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_spotlight_evaluation_logic.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_spotlight_vulnerabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_spotlight_vulnerabilities.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_tailored_intelligence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_tailored_intelligence.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_threatgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_threatgraph.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_unidentified_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_unidentified_containers.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_user_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_user_management.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_workflows.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/_zero_trust_assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/_zero_trust_assessment.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/README.md -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_certificate_based_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_certificate_based_exclusions.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_cloud_aws_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_cloud_aws_registration.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_cloud_azure_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_cloud_azure_registration.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_cloud_oci_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_cloud_oci_registration.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_cloud_security_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_cloud_security_assets.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_correlation_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_correlation_rules.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_custom_ioa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_custom_ioa.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_d4c_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_d4c_registration.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_datascanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_datascanner.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_device_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_device_content.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_discover.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_exposure_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_exposure_management.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_fdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_fdr.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_firewall_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_firewall_management.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_hosts.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_identity_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_identity_protection.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_installation_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_installation_tokens.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_ioc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_ioc.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_iocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_iocs.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_mapping.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_ods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_ods.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_real_time_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_real_time_response.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_real_time_response_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_real_time_response_admin.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_report_executions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_report_executions.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_scheduled_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_scheduled_reports.py -------------------------------------------------------------------------------- /src/falconpy/_endpoint/deprecated/_zero_trust_assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_endpoint/deprecated/_zero_trust_assessment.py -------------------------------------------------------------------------------- /src/falconpy/_enum/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_enum/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_enum/_base_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_enum/_base_url.py -------------------------------------------------------------------------------- /src/falconpy/_enum/_container_base_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_enum/_container_base_url.py -------------------------------------------------------------------------------- /src/falconpy/_enum/_ingest_base_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_enum/_ingest_base_url.py -------------------------------------------------------------------------------- /src/falconpy/_enum/_ingest_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_enum/_ingest_format.py -------------------------------------------------------------------------------- /src/falconpy/_enum/_timeunit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_enum/_timeunit.py -------------------------------------------------------------------------------- /src/falconpy/_enum/_token_fail_reason.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_enum/_token_fail_reason.py -------------------------------------------------------------------------------- /src/falconpy/_error/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_error/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_error/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_error/_exceptions.py -------------------------------------------------------------------------------- /src/falconpy/_error/_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_error/_warnings.py -------------------------------------------------------------------------------- /src/falconpy/_helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_helper/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_helper/_find_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_helper/_find_operation.py -------------------------------------------------------------------------------- /src/falconpy/_helper/_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_helper/_indicator.py -------------------------------------------------------------------------------- /src/falconpy/_helper/_text_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_helper/_text_colors.py -------------------------------------------------------------------------------- /src/falconpy/_log/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_log/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_log/_facility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_log/_facility.py -------------------------------------------------------------------------------- /src/falconpy/_ngsiem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_ngsiem/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_ngsiem/_hec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_ngsiem/_hec.py -------------------------------------------------------------------------------- /src/falconpy/_ngsiem/_ingest_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_ngsiem/_ingest_config.py -------------------------------------------------------------------------------- /src/falconpy/_ngsiem/_ingest_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_ngsiem/_ingest_payload.py -------------------------------------------------------------------------------- /src/falconpy/_ngsiem/_session_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_ngsiem/_session_manager.py -------------------------------------------------------------------------------- /src/falconpy/_payload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/README.md -------------------------------------------------------------------------------- /src/falconpy/_payload/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_alerts.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_api_integrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_api_integrations.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_aspm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_aspm.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_certificate_based_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_certificate_based_exclusions.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_cloud_aws_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_cloud_aws_registration.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_cloud_azure_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_cloud_azure_registration.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_cloud_connect_aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_cloud_connect_aws.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_cloud_oci_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_cloud_oci_registration.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_cloud_snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_cloud_snapshots.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_container.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_content_update_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_content_update_policy.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_correlation_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_correlation_rules.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_cspm_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_cspm_registration.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_d4c_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_d4c_registration.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_delivery_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_delivery_settings.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_detects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_detects.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_device_control_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_device_control_policy.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_exposure_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_exposure_management.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_falconx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_falconx.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_filevantage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_filevantage.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_firewall.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_foundry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_foundry.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_generic.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_host_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_host_group.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_identity_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_identity_protection.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_incidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_incidents.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_intelligence_indicator_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_intelligence_indicator_graph.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_ioa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_ioa.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_ioc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_ioc.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_it_automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_it_automation.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_malquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_malquery.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_message_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_message_center.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_mobile_enrollment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_mobile_enrollment.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_mssp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_mssp.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_ngsiem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_ngsiem.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_ods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_ods.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_prevention_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_prevention_policy.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_real_time_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_real_time_response.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_recon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_recon.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_reports.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_response_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_response_policy.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_sample_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_sample_uploads.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_sensor_update_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_sensor_update_policy.py -------------------------------------------------------------------------------- /src/falconpy/_payload/_workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_payload/_workflows.py -------------------------------------------------------------------------------- /src/falconpy/_result/__base_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_result/__base_resource.py -------------------------------------------------------------------------------- /src/falconpy/_result/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_result/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_result/_base_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_result/_base_dictionary.py -------------------------------------------------------------------------------- /src/falconpy/_result/_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_result/_errors.py -------------------------------------------------------------------------------- /src/falconpy/_result/_expanded_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_result/_expanded_result.py -------------------------------------------------------------------------------- /src/falconpy/_result/_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_result/_headers.py -------------------------------------------------------------------------------- /src/falconpy/_result/_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_result/_meta.py -------------------------------------------------------------------------------- /src/falconpy/_result/_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_result/_resources.py -------------------------------------------------------------------------------- /src/falconpy/_result/_response_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_result/_response_component.py -------------------------------------------------------------------------------- /src/falconpy/_result/_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_result/_result.py -------------------------------------------------------------------------------- /src/falconpy/_service_class/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_service_class/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_service_class/_base_service_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_service_class/_base_service_class.py -------------------------------------------------------------------------------- /src/falconpy/_service_class/_service_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_service_class/_service_class.py -------------------------------------------------------------------------------- /src/falconpy/_util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_util/__init__.py -------------------------------------------------------------------------------- /src/falconpy/_util/_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_util/_auth.py -------------------------------------------------------------------------------- /src/falconpy/_util/_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_util/_functions.py -------------------------------------------------------------------------------- /src/falconpy/_util/_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_util/_service.py -------------------------------------------------------------------------------- /src/falconpy/_util/_uber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_util/_uber.py -------------------------------------------------------------------------------- /src/falconpy/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/_version.py -------------------------------------------------------------------------------- /src/falconpy/alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/alerts.py -------------------------------------------------------------------------------- /src/falconpy/api_complete/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/api_complete/__init__.py -------------------------------------------------------------------------------- /src/falconpy/api_complete/_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/api_complete/_advanced.py -------------------------------------------------------------------------------- /src/falconpy/api_complete/_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/api_complete/_legacy.py -------------------------------------------------------------------------------- /src/falconpy/api_integrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/api_integrations.py -------------------------------------------------------------------------------- /src/falconpy/aspm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/aspm.py -------------------------------------------------------------------------------- /src/falconpy/cao_hunting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/cao_hunting.py -------------------------------------------------------------------------------- /src/falconpy/certificate_based_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/certificate_based_exclusions.py -------------------------------------------------------------------------------- /src/falconpy/cloud_aws_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/cloud_aws_registration.py -------------------------------------------------------------------------------- /src/falconpy/cloud_azure_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/cloud_azure_registration.py -------------------------------------------------------------------------------- /src/falconpy/cloud_connect_aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/cloud_connect_aws.py -------------------------------------------------------------------------------- /src/falconpy/cloud_oci_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/cloud_oci_registration.py -------------------------------------------------------------------------------- /src/falconpy/cloud_security_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/cloud_security_assets.py -------------------------------------------------------------------------------- /src/falconpy/cloud_snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/cloud_snapshots.py -------------------------------------------------------------------------------- /src/falconpy/configuration_assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/configuration_assessment.py -------------------------------------------------------------------------------- /src/falconpy/configuration_assessment_evaluation_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/configuration_assessment_evaluation_logic.py -------------------------------------------------------------------------------- /src/falconpy/container_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/container_alerts.py -------------------------------------------------------------------------------- /src/falconpy/container_detections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/container_detections.py -------------------------------------------------------------------------------- /src/falconpy/container_image_compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/container_image_compliance.py -------------------------------------------------------------------------------- /src/falconpy/container_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/container_images.py -------------------------------------------------------------------------------- /src/falconpy/container_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/container_packages.py -------------------------------------------------------------------------------- /src/falconpy/container_vulnerabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/container_vulnerabilities.py -------------------------------------------------------------------------------- /src/falconpy/content_update_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/content_update_policies.py -------------------------------------------------------------------------------- /src/falconpy/correlation_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/correlation_rules.py -------------------------------------------------------------------------------- /src/falconpy/cspm_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/cspm_registration.py -------------------------------------------------------------------------------- /src/falconpy/custom_ioa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/custom_ioa.py -------------------------------------------------------------------------------- /src/falconpy/custom_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/custom_storage.py -------------------------------------------------------------------------------- /src/falconpy/d4c_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/d4c_registration.py -------------------------------------------------------------------------------- /src/falconpy/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/debug.py -------------------------------------------------------------------------------- /src/falconpy/delivery_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/delivery_settings.py -------------------------------------------------------------------------------- /src/falconpy/deployments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/deployments.py -------------------------------------------------------------------------------- /src/falconpy/detects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/detects.py -------------------------------------------------------------------------------- /src/falconpy/device_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/device_content.py -------------------------------------------------------------------------------- /src/falconpy/device_control_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/device_control_policies.py -------------------------------------------------------------------------------- /src/falconpy/discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/discover.py -------------------------------------------------------------------------------- /src/falconpy/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/downloads.py -------------------------------------------------------------------------------- /src/falconpy/drift_indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/drift_indicators.py -------------------------------------------------------------------------------- /src/falconpy/event_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/event_streams.py -------------------------------------------------------------------------------- /src/falconpy/exposure_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/exposure_management.py -------------------------------------------------------------------------------- /src/falconpy/faas_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/faas_execution.py -------------------------------------------------------------------------------- /src/falconpy/falcon_complete_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/falcon_complete_dashboard.py -------------------------------------------------------------------------------- /src/falconpy/falcon_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/falcon_container.py -------------------------------------------------------------------------------- /src/falconpy/falconx_sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/falconx_sandbox.py -------------------------------------------------------------------------------- /src/falconpy/fdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/fdr.py -------------------------------------------------------------------------------- /src/falconpy/filevantage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/filevantage.py -------------------------------------------------------------------------------- /src/falconpy/firewall_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/firewall_management.py -------------------------------------------------------------------------------- /src/falconpy/firewall_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/firewall_policies.py -------------------------------------------------------------------------------- /src/falconpy/foundry_logscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/foundry_logscale.py -------------------------------------------------------------------------------- /src/falconpy/host_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/host_group.py -------------------------------------------------------------------------------- /src/falconpy/host_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/host_migration.py -------------------------------------------------------------------------------- /src/falconpy/hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/hosts.py -------------------------------------------------------------------------------- /src/falconpy/identity_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/identity_protection.py -------------------------------------------------------------------------------- /src/falconpy/image_assessment_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/image_assessment_policies.py -------------------------------------------------------------------------------- /src/falconpy/incidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/incidents.py -------------------------------------------------------------------------------- /src/falconpy/installation_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/installation_tokens.py -------------------------------------------------------------------------------- /src/falconpy/intel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/intel.py -------------------------------------------------------------------------------- /src/falconpy/intelligence_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/intelligence_feeds.py -------------------------------------------------------------------------------- /src/falconpy/intelligence_indicator_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/intelligence_indicator_graph.py -------------------------------------------------------------------------------- /src/falconpy/ioa_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/ioa_exclusions.py -------------------------------------------------------------------------------- /src/falconpy/ioc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/ioc.py -------------------------------------------------------------------------------- /src/falconpy/iocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/iocs.py -------------------------------------------------------------------------------- /src/falconpy/it_automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/it_automation.py -------------------------------------------------------------------------------- /src/falconpy/kubernetes_container_compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/kubernetes_container_compliance.py -------------------------------------------------------------------------------- /src/falconpy/kubernetes_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/kubernetes_protection.py -------------------------------------------------------------------------------- /src/falconpy/malquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/malquery.py -------------------------------------------------------------------------------- /src/falconpy/message_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/message_center.py -------------------------------------------------------------------------------- /src/falconpy/ml_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/ml_exclusions.py -------------------------------------------------------------------------------- /src/falconpy/mobile_enrollment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/mobile_enrollment.py -------------------------------------------------------------------------------- /src/falconpy/mssp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/mssp.py -------------------------------------------------------------------------------- /src/falconpy/ngsiem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/ngsiem.py -------------------------------------------------------------------------------- /src/falconpy/oauth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/oauth2.py -------------------------------------------------------------------------------- /src/falconpy/ods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/ods.py -------------------------------------------------------------------------------- /src/falconpy/overwatch_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/overwatch_dashboard.py -------------------------------------------------------------------------------- /src/falconpy/prevention_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/prevention_policy.py -------------------------------------------------------------------------------- /src/falconpy/quarantine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/quarantine.py -------------------------------------------------------------------------------- /src/falconpy/quick_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/quick_scan.py -------------------------------------------------------------------------------- /src/falconpy/quick_scan_pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/quick_scan_pro.py -------------------------------------------------------------------------------- /src/falconpy/real_time_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/real_time_response.py -------------------------------------------------------------------------------- /src/falconpy/real_time_response_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/real_time_response_admin.py -------------------------------------------------------------------------------- /src/falconpy/real_time_response_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/real_time_response_audit.py -------------------------------------------------------------------------------- /src/falconpy/recon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/recon.py -------------------------------------------------------------------------------- /src/falconpy/report_executions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/report_executions.py -------------------------------------------------------------------------------- /src/falconpy/response_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/response_policies.py -------------------------------------------------------------------------------- /src/falconpy/sample_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/sample_uploads.py -------------------------------------------------------------------------------- /src/falconpy/scheduled_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/scheduled_reports.py -------------------------------------------------------------------------------- /src/falconpy/sensor_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/sensor_download.py -------------------------------------------------------------------------------- /src/falconpy/sensor_update_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/sensor_update_policy.py -------------------------------------------------------------------------------- /src/falconpy/sensor_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/sensor_usage.py -------------------------------------------------------------------------------- /src/falconpy/sensor_visibility_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/sensor_visibility_exclusions.py -------------------------------------------------------------------------------- /src/falconpy/serverless_vulnerabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/serverless_vulnerabilities.py -------------------------------------------------------------------------------- /src/falconpy/spotlight_evaluation_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/spotlight_evaluation_logic.py -------------------------------------------------------------------------------- /src/falconpy/spotlight_vulnerabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/spotlight_vulnerabilities.py -------------------------------------------------------------------------------- /src/falconpy/tailored_intelligence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/tailored_intelligence.py -------------------------------------------------------------------------------- /src/falconpy/threatgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/threatgraph.py -------------------------------------------------------------------------------- /src/falconpy/unidentified_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/unidentified_containers.py -------------------------------------------------------------------------------- /src/falconpy/user_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/user_management.py -------------------------------------------------------------------------------- /src/falconpy/workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/workflows.py -------------------------------------------------------------------------------- /src/falconpy/zero_trust_assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/src/falconpy/zero_trust_assessment.py -------------------------------------------------------------------------------- /tests/100thousand.raw.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/100thousand.raw.gz -------------------------------------------------------------------------------- /tests/5records.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/5records.raw -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/coverage.svg -------------------------------------------------------------------------------- /tests/manual/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/test_get_device_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/manual/test_get_device_details.py -------------------------------------------------------------------------------- /tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test.yml -------------------------------------------------------------------------------- /tests/test_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_alerts.py -------------------------------------------------------------------------------- /tests/test_api_integrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_api_integrations.py -------------------------------------------------------------------------------- /tests/test_api_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_api_request.py -------------------------------------------------------------------------------- /tests/test_aspm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_aspm.py -------------------------------------------------------------------------------- /tests/test_authentications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_authentications.py -------------------------------------------------------------------------------- /tests/test_authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_authorization.py -------------------------------------------------------------------------------- /tests/test_cao_hunting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_cao_hunting.py -------------------------------------------------------------------------------- /tests/test_certificate_based_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_certificate_based_exclusions.py -------------------------------------------------------------------------------- /tests/test_cloud_aws_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_cloud_aws_registration.py -------------------------------------------------------------------------------- /tests/test_cloud_azure_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_cloud_azure_registration.py -------------------------------------------------------------------------------- /tests/test_cloud_connect_aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_cloud_connect_aws.py -------------------------------------------------------------------------------- /tests/test_cloud_oci_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_cloud_oci_registration.py -------------------------------------------------------------------------------- /tests/test_cloud_security_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_cloud_security_assets.py -------------------------------------------------------------------------------- /tests/test_cloud_snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_cloud_snapshots.py -------------------------------------------------------------------------------- /tests/test_configuration_assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_configuration_assessment.py -------------------------------------------------------------------------------- /tests/test_configuration_assessment_evaluation_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_configuration_assessment_evaluation_logic.py -------------------------------------------------------------------------------- /tests/test_container_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_container_alerts.py -------------------------------------------------------------------------------- /tests/test_container_detections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_container_detections.py -------------------------------------------------------------------------------- /tests/test_container_image_compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_container_image_compliance.py -------------------------------------------------------------------------------- /tests/test_container_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_container_images.py -------------------------------------------------------------------------------- /tests/test_container_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_container_packages.py -------------------------------------------------------------------------------- /tests/test_container_vulnerabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_container_vulnerabilities.py -------------------------------------------------------------------------------- /tests/test_content_update_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_content_update_policies.py -------------------------------------------------------------------------------- /tests/test_correlation_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_correlation_rules.py -------------------------------------------------------------------------------- /tests/test_cspm_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_cspm_registration.py -------------------------------------------------------------------------------- /tests/test_custom_ioa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_custom_ioa.py -------------------------------------------------------------------------------- /tests/test_custom_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_custom_storage.py -------------------------------------------------------------------------------- /tests/test_d4c_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_d4c_registration.py -------------------------------------------------------------------------------- /tests/test_delivery_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_delivery_settings.py -------------------------------------------------------------------------------- /tests/test_deployments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_deployments.py -------------------------------------------------------------------------------- /tests/test_detects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_detects.py -------------------------------------------------------------------------------- /tests/test_device_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_device_content.py -------------------------------------------------------------------------------- /tests/test_device_control_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_device_control_policies.py -------------------------------------------------------------------------------- /tests/test_discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_discover.py -------------------------------------------------------------------------------- /tests/test_downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_downloads.py -------------------------------------------------------------------------------- /tests/test_drift_indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_drift_indicators.py -------------------------------------------------------------------------------- /tests/test_event_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_event_streams.py -------------------------------------------------------------------------------- /tests/test_exposure_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_exposure_management.py -------------------------------------------------------------------------------- /tests/test_faas_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_faas_execution.py -------------------------------------------------------------------------------- /tests/test_falcon_complete_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_falcon_complete_dashboard.py -------------------------------------------------------------------------------- /tests/test_falcon_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_falcon_container.py -------------------------------------------------------------------------------- /tests/test_falconx_sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_falconx_sandbox.py -------------------------------------------------------------------------------- /tests/test_fdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_fdr.py -------------------------------------------------------------------------------- /tests/test_filevantage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_filevantage.py -------------------------------------------------------------------------------- /tests/test_firewall_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_firewall_management.py -------------------------------------------------------------------------------- /tests/test_firewall_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_firewall_policies.py -------------------------------------------------------------------------------- /tests/test_foundry_logscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_foundry_logscale.py -------------------------------------------------------------------------------- /tests/test_hec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_hec.py -------------------------------------------------------------------------------- /tests/test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_helper.py -------------------------------------------------------------------------------- /tests/test_host_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_host_group.py -------------------------------------------------------------------------------- /tests/test_host_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_host_migration.py -------------------------------------------------------------------------------- /tests/test_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_hosts.py -------------------------------------------------------------------------------- /tests/test_identity_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_identity_protection.py -------------------------------------------------------------------------------- /tests/test_image_assessment_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_image_assessment_policies.py -------------------------------------------------------------------------------- /tests/test_incidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_incidents.py -------------------------------------------------------------------------------- /tests/test_installation_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_installation_tokens.py -------------------------------------------------------------------------------- /tests/test_intel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_intel.py -------------------------------------------------------------------------------- /tests/test_intelligence_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_intelligence_feeds.py -------------------------------------------------------------------------------- /tests/test_intelligence_indicator_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_intelligence_indicator_graph.py -------------------------------------------------------------------------------- /tests/test_ioa_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_ioa_exclusions.py -------------------------------------------------------------------------------- /tests/test_ioc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_ioc.py -------------------------------------------------------------------------------- /tests/test_iocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_iocs.py -------------------------------------------------------------------------------- /tests/test_it_automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_it_automation.py -------------------------------------------------------------------------------- /tests/test_kubernetes_container_compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_kubernetes_container_compliance.py -------------------------------------------------------------------------------- /tests/test_kubernetes_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_kubernetes_protection.py -------------------------------------------------------------------------------- /tests/test_malquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_malquery.py -------------------------------------------------------------------------------- /tests/test_message_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_message_center.py -------------------------------------------------------------------------------- /tests/test_ml_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_ml_exclusions.py -------------------------------------------------------------------------------- /tests/test_mobile_enrollment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_mobile_enrollment.py -------------------------------------------------------------------------------- /tests/test_mssp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_mssp.py -------------------------------------------------------------------------------- /tests/test_ngsiem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_ngsiem.py -------------------------------------------------------------------------------- /tests/test_ods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_ods.py -------------------------------------------------------------------------------- /tests/test_overwatch_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_overwatch_dashboard.py -------------------------------------------------------------------------------- /tests/test_prevention_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_prevention_policy.py -------------------------------------------------------------------------------- /tests/test_quarantine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_quarantine.py -------------------------------------------------------------------------------- /tests/test_quick_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_quick_scan.py -------------------------------------------------------------------------------- /tests/test_quick_scan_pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_quick_scan_pro.py -------------------------------------------------------------------------------- /tests/test_real_time_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_real_time_response.py -------------------------------------------------------------------------------- /tests/test_real_time_response_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_real_time_response_admin.py -------------------------------------------------------------------------------- /tests/test_real_time_response_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_real_time_response_audit.py -------------------------------------------------------------------------------- /tests/test_recon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_recon.py -------------------------------------------------------------------------------- /tests/test_report_executions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_report_executions.py -------------------------------------------------------------------------------- /tests/test_response_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_response_policies.py -------------------------------------------------------------------------------- /tests/test_result_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_result_object.py -------------------------------------------------------------------------------- /tests/test_sample_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_sample_uploads.py -------------------------------------------------------------------------------- /tests/test_scheduled_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_scheduled_reports.py -------------------------------------------------------------------------------- /tests/test_sensor_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_sensor_download.py -------------------------------------------------------------------------------- /tests/test_sensor_update_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_sensor_update_policy.py -------------------------------------------------------------------------------- /tests/test_sensor_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_sensor_usage.py -------------------------------------------------------------------------------- /tests/test_sensor_visibility_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_sensor_visibility_exclusions.py -------------------------------------------------------------------------------- /tests/test_serverless_vulnerabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_serverless_vulnerabilities.py -------------------------------------------------------------------------------- /tests/test_service_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_service_class.py -------------------------------------------------------------------------------- /tests/test_spotlight_evaluation_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_spotlight_evaluation_logic.py -------------------------------------------------------------------------------- /tests/test_spotlight_vulnerabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_spotlight_vulnerabilities.py -------------------------------------------------------------------------------- /tests/test_tailored_intelligence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_tailored_intelligence.py -------------------------------------------------------------------------------- /tests/test_threatgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_threatgraph.py -------------------------------------------------------------------------------- /tests/test_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_timeout.py -------------------------------------------------------------------------------- /tests/test_uber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_uber.py -------------------------------------------------------------------------------- /tests/test_uber_api_complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_uber_api_complete.py -------------------------------------------------------------------------------- /tests/test_unidentified_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_unidentified_containers.py -------------------------------------------------------------------------------- /tests/test_user_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_user_management.py -------------------------------------------------------------------------------- /tests/test_workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_workflows.py -------------------------------------------------------------------------------- /tests/test_zero_trust_assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/test_zero_trust_assessment.py -------------------------------------------------------------------------------- /tests/testfile.csv: -------------------------------------------------------------------------------- 1 | id,content 2 | 1,This 3 | 2,is 4 | 3,a 5 | 4,test 6 | 5,lookup 7 | 6,file -------------------------------------------------------------------------------- /tests/testfile.json: -------------------------------------------------------------------------------- 1 | {"content": "this is a test file"} -------------------------------------------------------------------------------- /tests/testfile.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/testfile.pdf -------------------------------------------------------------------------------- /tests/testfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/testfile.png -------------------------------------------------------------------------------- /tests/testfile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/tests/testfile.zip -------------------------------------------------------------------------------- /util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/util/README.md -------------------------------------------------------------------------------- /util/babel_fish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/util/babel_fish.py -------------------------------------------------------------------------------- /util/coverage.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/util/coverage.config -------------------------------------------------------------------------------- /util/create-lambda-layer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/util/create-lambda-layer.sh -------------------------------------------------------------------------------- /util/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/util/debug.sh -------------------------------------------------------------------------------- /util/docstyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/util/docstyle.sh -------------------------------------------------------------------------------- /util/find-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/util/find-strings.sh -------------------------------------------------------------------------------- /util/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/util/lint.sh -------------------------------------------------------------------------------- /util/public-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/util/public-modules.sh -------------------------------------------------------------------------------- /util/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/util/run-tests.sh -------------------------------------------------------------------------------- /util/sample-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/util/sample-list.sh -------------------------------------------------------------------------------- /util/set-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/util/set-debug.sh -------------------------------------------------------------------------------- /util/unit-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/util/unit-test.sh -------------------------------------------------------------------------------- /util/vcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdStrike/falconpy/HEAD/util/vcheck.sh --------------------------------------------------------------------------------