-
Notifications
You must be signed in to change notification settings - Fork 519
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 #13391 from Security-Onion-Solutions/2.4/dev
2.4.90
- Loading branch information
Showing
50 changed files
with
659 additions
and
416 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
### 2.4.80-20240624 ISO image released on 2024/06/25 | ||
### 2.4.90-20240729 ISO image released on 2024/07/29 | ||
|
||
|
||
### Download and Verify | ||
|
||
2.4.80-20240624 ISO image: | ||
https://download.securityonion.net/file/securityonion/securityonion-2.4.80-20240624.iso | ||
2.4.90-20240729 ISO image: | ||
https://download.securityonion.net/file/securityonion/securityonion-2.4.90-20240729.iso | ||
|
||
MD5: 139F9762E926F9CB3C4A9528A3752C31 | ||
SHA1: BC6CA2C5F4ABC1A04E83A5CF8FFA6A53B1583CC9 | ||
SHA256: 70E90845C84FFA30AD6CF21504634F57C273E7996CA72F7250428DDBAAC5B1BD | ||
MD5: 9A7714F5922EE555F08675D25E6237D5 | ||
SHA1: D3B331452627DB716906BA9F3922574DFA3852DC | ||
SHA256: 5B0CE32543944DBC50C4E906857384211E1BE83EF409619778F18FC62017E0E0 | ||
|
||
Signature for ISO image: | ||
https://github.com/Security-Onion-Solutions/securityonion/raw/2.4/main/sigs/securityonion-2.4.80-20240624.iso.sig | ||
https://github.com/Security-Onion-Solutions/securityonion/raw/2.4/main/sigs/securityonion-2.4.90-20240729.iso.sig | ||
|
||
Signing key: | ||
https://raw.githubusercontent.com/Security-Onion-Solutions/securityonion/2.4/main/KEYS | ||
|
@@ -25,22 +25,22 @@ wget https://raw.githubusercontent.com/Security-Onion-Solutions/securityonion/2. | |
|
||
Download the signature file for the ISO: | ||
``` | ||
wget https://github.com/Security-Onion-Solutions/securityonion/raw/2.4/main/sigs/securityonion-2.4.80-20240624.iso.sig | ||
wget https://github.com/Security-Onion-Solutions/securityonion/raw/2.4/main/sigs/securityonion-2.4.90-20240729.iso.sig | ||
``` | ||
|
||
Download the ISO image: | ||
``` | ||
wget https://download.securityonion.net/file/securityonion/securityonion-2.4.80-20240624.iso | ||
wget https://download.securityonion.net/file/securityonion/securityonion-2.4.90-20240729.iso | ||
``` | ||
|
||
Verify the downloaded ISO image using the signature file: | ||
``` | ||
gpg --verify securityonion-2.4.80-20240624.iso.sig securityonion-2.4.80-20240624.iso | ||
gpg --verify securityonion-2.4.90-20240729.iso.sig securityonion-2.4.90-20240729.iso | ||
``` | ||
|
||
The output should show "Good signature" and the Primary key fingerprint should match what's shown below: | ||
``` | ||
gpg: Signature made Mon 24 Jun 2024 02:42:03 PM EDT using RSA key ID FE507013 | ||
gpg: Signature made Thu 25 Jul 2024 06:51:11 PM EDT using RSA key ID FE507013 | ||
gpg: Good signature from "Security Onion Solutions, LLC <[email protected]>" | ||
gpg: WARNING: This key is not certified with a trusted signature! | ||
gpg: There is no indication that the signature belongs to the owner. | ||
|
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 +1 @@ | ||
2.4.80 | ||
2.4.90 |
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,34 @@ | ||
{% set node_types = {} %} | ||
{% for minionid, ip in salt.saltutil.runner( | ||
'mine.get', | ||
tgt='elasticsearch:enabled:true', | ||
fun='network.ip_addrs', | ||
tgt_type='pillar') | dictsort() | ||
%} | ||
|
||
# only add a node to the pillar if it returned an ip from the mine | ||
{% if ip | length > 0%} | ||
{% set hostname = minionid.split('_') | first %} | ||
{% set node_type = minionid.split('_') | last %} | ||
{% if node_type not in node_types.keys() %} | ||
{% do node_types.update({node_type: {hostname: ip[0]}}) %} | ||
{% else %} | ||
{% if hostname not in node_types[node_type] %} | ||
{% do node_types[node_type].update({hostname: ip[0]}) %} | ||
{% else %} | ||
{% do node_types[node_type][hostname].update(ip[0]) %} | ||
{% endif %} | ||
{% endif %} | ||
{% endif %} | ||
{% endfor %} | ||
|
||
|
||
elasticsearch: | ||
nodes: | ||
{% for node_type, values in node_types.items() %} | ||
{{node_type}}: | ||
{% for hostname, ip in values.items() %} | ||
{{hostname}}: | ||
ip: {{ip}} | ||
{% endfor %} | ||
{% endfor %} |
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,34 @@ | ||
{% set node_types = {} %} | ||
{% for minionid, ip in salt.saltutil.runner( | ||
'mine.get', | ||
tgt='redis:enabled:true', | ||
fun='network.ip_addrs', | ||
tgt_type='pillar') | dictsort() | ||
%} | ||
|
||
# only add a node to the pillar if it returned an ip from the mine | ||
{% if ip | length > 0%} | ||
{% set hostname = minionid.split('_') | first %} | ||
{% set node_type = minionid.split('_') | last %} | ||
{% if node_type not in node_types.keys() %} | ||
{% do node_types.update({node_type: {hostname: ip[0]}}) %} | ||
{% else %} | ||
{% if hostname not in node_types[node_type] %} | ||
{% do node_types[node_type].update({hostname: ip[0]}) %} | ||
{% else %} | ||
{% do node_types[node_type][hostname].update(ip[0]) %} | ||
{% endif %} | ||
{% endif %} | ||
{% endif %} | ||
{% endfor %} | ||
|
||
|
||
redis: | ||
nodes: | ||
{% for node_type, values in node_types.items() %} | ||
{{node_type}}: | ||
{% for hostname, ip in values.items() %} | ||
{{hostname}}: | ||
ip: {{ip}} | ||
{% endfor %} | ||
{% endfor %} |
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
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
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
2 changes: 1 addition & 1 deletion
2
salt/influxdb/templates/dashboard-security_onion_performance.json
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.