This repository has been archived by the owner on Jul 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
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 #108 from wazuh/release-4.0.0
Adapt wazuh-chef to upcoming major version
- Loading branch information
Showing
54 changed files
with
684 additions
and
923 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
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
default['ossec']['conf']['active-response']['disabled'] = false | ||
default['ossec']['conf']['active-response']['ca_store'] = "/var/ossec/etc/wpk_root.pem" | ||
default['ossec']['conf']['active-response']['ca_verification'] = true | ||
default['ossec']['conf']['active-response'] = [{ | ||
'disabled' => 'no', | ||
'ca_store' => "/var/ossec/etc/wpk_root.pem", | ||
'ca_verification' => 'yes' | ||
}] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
default['ossec']['conf']['client_buffer']['disabled'] = false | ||
default['ossec']['conf']['client_buffer']['queue_size'] = 5000 | ||
default['ossec']['conf']['client_buffer']['events_per_second'] = 500 | ||
default['ossec']['conf']['client_buffer'] = [{ | ||
'disabled' => 'no', | ||
'queue_size' => '5000', | ||
'events_per_second' => '500' | ||
}] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
# Rootcheck settings | ||
default['ossec']['conf']['rootcheck']['disabled'] = false | ||
default['ossec']['conf']['rootcheck']['check_files'] = true | ||
default['ossec']['conf']['rootcheck']['check_trojans'] = true | ||
default['ossec']['conf']['rootcheck']['check_dev'] = true | ||
default['ossec']['conf']['rootcheck']['check_sys'] = true | ||
default['ossec']['conf']['rootcheck']['check_pids'] = true | ||
default['ossec']['conf']['rootcheck']['check_ports'] = true | ||
default['ossec']['conf']['rootcheck']['check_if'] = true | ||
default['ossec']['conf']['rootcheck']['frequency'] = 43200 | ||
default['ossec']['conf']['rootcheck']['rootkit_files'] = "#{node['ossec']['dir']}/etc/shared/rootkit_files.txt" | ||
default['ossec']['conf']['rootcheck']['rootkit_trojans'] = "#{node['ossec']['dir']}/etc/shared/rootkit_trojans.txt" | ||
default['ossec']['conf']['rootcheck']['skip_nfs'] = true | ||
default['ossec']['conf']['rootcheck'] = [{ | ||
'disabled' => 'no', | ||
'check_files' => 'yes', | ||
'check_trojans' => 'yes', | ||
'check_dev' => 'yes', | ||
'check_sys' => 'yes', | ||
'check_pids' => 'yes', | ||
'check_ports' => 'yes', | ||
'check_if' => 'yes', | ||
'frequency' => '43200', | ||
'rootkit_files' => "#{node['ossec']['dir']}/etc/shared/rootkit_files.txt", | ||
'rootkit_trojans' => "#{node['ossec']['dir']}/etc/shared/rootkit_trojans.txt", | ||
'skip_nfs' => 'yes' | ||
}] |
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
|
||
default['ossec']['conf']['sca']['enabled'] = true | ||
default['ossec']['conf']['sca']['scan_on_start'] = true | ||
default['ossec']['conf']['sca']['interval'] = "12h" | ||
default['ossec']['conf']['sca']['skip_nfs'] = true | ||
default['ossec']['conf']['sca'] = [{ | ||
'enabled' => 'yes', | ||
'scan_on_start' => 'yes', | ||
'interval' => "12h", | ||
'skip_nfs' => 'yes' | ||
}] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
default['wazuh-agent']['version'] = "3.13.2" | ||
default['wazuh-agent']['version'] = "4.0.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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## v0.1.0 | ||
1. Bump to Opendistro for Elasticsearch 7.9.1 | ||
2. Added suse repository | ||
*Note*: in future version, kibana will be in an independent cookbook | ||
|
||
* Initial/current release |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
default['wazuh-elastic']['kibana_server_host'] = '0.0.0.0' | ||
default['wazuh-elastic']['kibana_server_port'] = '5601' | ||
default['wazuh-elastic']['kibana_elasticsearch_server_hosts'] = "http://#{node['wazuh-elastic']['elasticsearch_ip']}:#{node['wazuh-elastic']['elasticsearch_port']}" | ||
default['wazuh-elastic']['kibana_wazuh_api_credentials'] = [ { id: "default", url: "http://localhost", port: "55000", user: "foo", password: "bar" } ] | ||
default['wazuh-elastic']['kibana_server_port'] = 5601 | ||
default['wazuh-elastic']['kibana_elasticsearch_server_hosts'] = "https://#{node['wazuh-elastic']['elasticsearch_ip']}:#{node['wazuh-elastic']['elasticsearch_port']}" | ||
default['wazuh-elastic']['kibana_wazuh_api_credentials'] = [ { id: "default", url: "https://localhost", port: "55000", username: "wazuh", password: "wazuh" } ] |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
default['wazuh-elastic']['elastic_stack_version'] = '7.9.1' | ||
default['wazuh-elastic']['wazuh_app_version'] = "3.13.2_7.9.1" | ||
default['wazuh-elastic']['extensions_version'] = "v3.13.2" | ||
default['wazuh-elastic']['elastic_stack_version'] = "7.9.1" | ||
default['wazuh-elastic']['wazuh_app_version'] = "4.0.1_7.9.1" | ||
default['wazuh-elastic']['extensions_version'] = "v4.0.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
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
Oops, something went wrong.