forked from splunk/attack_range
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request splunk#935 from splunk/edr_agent_improvements
EDR Agent Improvements
- Loading branch information
Showing
13 changed files
with
64 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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 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 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: 0 additions & 4 deletions
4
terraform/ansible/roles/carbon_black_cloud_agent/tasks/main.yml
This file was deleted.
Oops, something went wrong.
This file contains 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
terraform/ansible/roles/carbon_black_cloud_agent_win/tasks/main.yml
This file contains 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,4 @@ | ||
--- | ||
|
||
- include_tasks: install.yml | ||
when: windows_servers.install_carbon_black == "1" |
2 changes: 1 addition & 1 deletion
2
terraform/ansible/roles/carbon_black_cloud_logs/templates/inputs.conf.j2
This file contains 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: 0 additions & 4 deletions
4
terraform/ansible/roles/crowdstrike_falcon_agent/tasks/main.yml
This file was deleted.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
terraform/ansible/roles/crowdstrike_falcon_agent_linux/tasks/crowdstrike_install.yml
This file contains 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,21 @@ | ||
--- | ||
|
||
- name: Copy CrowdStrike Falcon agent | ||
copy: | ||
src: "../../apps/{{ linux_servers.crowdstrike_linux_agent }}" | ||
dest: /tmp/crowdstrike_linux_agent.deb | ||
|
||
- name: Install CrowdStrike Falcon agent | ||
apt: | ||
deb: "/tmp/crowdstrike_linux_agent.deb" | ||
state: present | ||
become: yes | ||
|
||
- name: Set your CID on the sensor | ||
shell: /opt/CrowdStrike/falconctl -s --cid={{ general.crowdstrike_customer_ID }} | ||
become: yes | ||
|
||
- name: restart crowdstrike falcon agent | ||
service: | ||
name: falcon-sensor | ||
state: restarted |
4 changes: 4 additions & 0 deletions
4
terraform/ansible/roles/crowdstrike_falcon_agent_linux/tasks/main.yml
This file contains 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,4 @@ | ||
--- | ||
|
||
- include_tasks: crowdstrike_install.yml | ||
when: linux_servers.install_crowdstrike == "1" |
This file contains 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
terraform/ansible/roles/crowdstrike_falcon_agent_win/tasks/main.yml
This file contains 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,4 @@ | ||
--- | ||
|
||
- include_tasks: crowdstrike_install.yml | ||
when: windows_servers.install_crowdstrike == "1" |
This file contains 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