feat(crowdstrike): add CrowdStrike Falcon as a first-class evidence-collection provider - #10
Draft
austinsonger wants to merge 12 commits into
Draft
austinsonger wants to merge 12 commits into
austinsonger wants to merge 12 commits into
Conversation
added 12 commits
July 22, 2026 01:49
…ollection provider Adds a crowdstrike-rs workspace crate (OAuth2 client-credentials auth with token cache/refresh, 429 retry, 401-retry-once) plus five CSV collectors (hosts, alerts, Spotlight vulnerabilities, prevention policies, sensor update policies), wired into the TUI account picker, provider menu, navigation, and runner exactly like the existing Tenable/Okta/Jira providers. Enabled by default via the new `crowdstrike` Cargo feature.
…cloud-provider-plan-a43766 # Conflicts: # .gitignore # Cargo.toml # README.md # evidence-list.md # src/app_config.rs # src/providers/mod.rs # src/runner/tui_session.rs # src/tui/app/nav.rs # src/tui/events.rs # src/tui/menus/mod.rs # src/tui/ui/account_screens.rs
…cloud-provider-plan-a43766 # Conflicts: # Cargo.toml # src/tui/events.rs # src/tui/ui/account_screens.rs
…cloud-provider-plan-a43766 # Conflicts: # README.md # evidence-list.md # src/app_config.rs # src/runner/tui_session.rs # src/tui/app/mod.rs
…cloud-provider-plan-a43766 # Conflicts: # cli-examples.md
…cloud-provider-plan-a43766 # Conflicts: # Cargo.toml # README.md # evidence-list.md # src/app_config.rs
…cloud-provider-plan-a43766 # Conflicts: # README.md
…cloud-provider-plan-a43766 # Conflicts: # evidence-list.md
…cloud-provider-plan-a43766 # Conflicts: # .gitignore # Cargo.toml # src/app_config.rs
…cloud-provider-plan-a43766 # Conflicts: # Cargo.toml
…cloud-provider-plan-a43766
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
crowdstrike-rsworkspace crate for the CrowdStrike Falcon REST API: OAuth2 client-credentials auth with a shared token cache/refresh, HTTP 429 retry with backoff, and a single 401-triggered token-refresh retry.crowdstrike-hosts,crowdstrike-alerts(time-windowed),crowdstrike-vulnerabilities(Spotlight),crowdstrike-prevention-policies,crowdstrike-sensor-update-policies.crowdstrike_client_id/crowdstrike_client_secret/crowdstrike_base_urlfields onAccount, env-var overrides (CROWDSTRIKE_CLIENT_ID/CROWDSTRIKE_CLIENT_SECRET/CROWDSTRIKE_BASE_URL), andcrowdstrike-config.tomlmerge (seecrowdstrike-config.example.toml).crowdstrike, included indefaultalongsidetenable/okta/jira.README.md,cli-examples.md, andevidence-list.md(EV203–EV207).Implements
docs/plans/2026-07-17-add-crowdstrike.md.Test plan
cargo check --workspace --all-featurespassescargo fmt --checkpassescargo test --workspace --all-featurespasses (one unrelated pre-existingokta-rstest —users_test::list_all_users_follows_pagination— hangs/times out independent of this change;okta-rswas not touched by this PR)