-
Notifications
You must be signed in to change notification settings - Fork 8.6k
[Security Solution][Endpoint] Enable bi-directional response actions and remove tech. preview labels #207107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
paul-tavares
merged 17 commits into
elastic:main
from
paul-tavares:task/olm-11579-ga-bidirectional-response-actions
Jan 23, 2025
Merged
[Security Solution][Endpoint] Enable bi-directional response actions and remove tech. preview labels #207107
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
63fcdf5
Enable all feature flags for all 3 connectors/edr systems
paul-tavares 8450f65
remove Tech. Preview tag from connectors's UI
paul-tavares cdcd834
Remove tech preview labels from bi-directional response actions in se…
paul-tavares bada23a
Adjust scripts for MS Defender + Sentinelone so that only a warning i…
paul-tavares 1dbb398
Merge branch 'main' into task/olm-11579-ga-bidirectional-response-act…
paul-tavares 919c923
Update failing tests
paul-tavares 42f4f9c
[CI] Auto-commit changed files from 'node scripts/yarn_deduplicate'
kibanamachine 36fb0c2
fix test import
paul-tavares 2251994
Merge remote-tracking branch 'origin/task/olm-11579-ga-bidirectional-…
paul-tavares 235e6cf
[CI] Auto-commit changed files from 'node scripts/notice'
kibanamachine 2b0ed1c
Fix tsconfig.json
paul-tavares 145aed5
Adjust test to use `isAgentTypeInTechPreview()`
paul-tavares f06b310
Merge remote-tracking branch 'origin/task/olm-11579-ga-bidirectional-…
paul-tavares 012cdef
Merge branch 'main' into task/olm-11579-ga-bidirectional-response-act…
paul-tavares b39d33a
Feedback from PR review
paul-tavares 69c5e7d
Merge remote-tracking branch 'origin/task/olm-11579-ga-bidirectional-…
paul-tavares b3e74eb
Merge remote-tracking branch 'upstream/main' into task/olm-11579-ga-b…
paul-tavares File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
2,787 changes: 2,785 additions & 2 deletions
2,787
...lugins/shared/actions/server/integration_tests/__snapshots__/connector_types.test.ts.snap
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
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
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
4 changes: 4 additions & 0 deletions
4
...s/shared/task_manager/server/integration_tests/__snapshots__/task_cost_check.test.ts.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
...curity_solution/common/endpoint/service/response_actions/is_agent_type_in_tech_preview.ts
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| /* | ||
| * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
| * or more contributor license agreements. Licensed under the Elastic License | ||
| * 2.0; you may not use this file except in compliance with the Elastic License | ||
| * 2.0. | ||
| */ | ||
|
|
||
| import type { ResponseActionAgentType } from './constants'; | ||
|
|
||
| const TECH_PREVIEW_AGENT_TYPE = Object.freeze<Record<ResponseActionAgentType, boolean>>({ | ||
| endpoint: false, | ||
| microsoft_defender_endpoint: false, | ||
| crowdstrike: false, | ||
| sentinel_one: false, | ||
| }); | ||
|
|
||
| /** | ||
| * Returns boolean indicating if agent type is in tech preview or not. | ||
| * @param agentType | ||
| */ | ||
| export const isAgentTypeInTechPreview = (agentType: ResponseActionAgentType) => { | ||
| return TECH_PREVIEW_AGENT_TYPE[agentType] ?? true; | ||
| }; |
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
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
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
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
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.