Merge pull request #14479 from Security-Onion-Solutions/patch/2.4.141

2.4.141
This commit is contained in:
Mike Reeves
2025-03-31 11:21:30 -04:00
committed by GitHub
4 changed files with 25 additions and 12 deletions

View File

@@ -1,17 +1,17 @@
### 2.4.140-20250324 ISO image released on 2025/03/24 ### 2.4.141-20250331 ISO image released on 2025/03/31
### Download and Verify ### Download and Verify
2.4.140-20250324 ISO image: 2.4.141-20250331 ISO image:
https://download.securityonion.net/file/securityonion/securityonion-2.4.140-20250324.iso https://download.securityonion.net/file/securityonion/securityonion-2.4.141-20250331.iso
MD5: 36393200A5CEEC5B58277691DDAFF247 MD5: CAE347BC0437A93DC8F4089973ED0EA7
SHA1: 48655378C732CF47A6B3290F6F07F4F3162BE054 SHA1: 3A6F0C2F3B6E3625E06F67EB251372D7E592CB0E
SHA256: 470E00245EBAD83C045743CFB27885CEC3E1F057D91081906B240A38B6D3759A SHA256: D0426D8E55E01A0FBA15AFE0BB7887CCB724C07FE82DA706CD1592E6001CD12B
Signature for ISO image: Signature for ISO image:
https://github.com/Security-Onion-Solutions/securityonion/raw/2.4/main/sigs/securityonion-2.4.140-20250324.iso.sig https://github.com/Security-Onion-Solutions/securityonion/raw/2.4/main/sigs/securityonion-2.4.141-20250331.iso.sig
Signing key: Signing key:
https://raw.githubusercontent.com/Security-Onion-Solutions/securityonion/2.4/main/KEYS 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: Download the signature file for the ISO:
``` ```
wget https://github.com/Security-Onion-Solutions/securityonion/raw/2.4/main/sigs/securityonion-2.4.140-20250324.iso.sig wget https://github.com/Security-Onion-Solutions/securityonion/raw/2.4/main/sigs/securityonion-2.4.141-20250331.iso.sig
``` ```
Download the ISO image: Download the ISO image:
``` ```
wget https://download.securityonion.net/file/securityonion/securityonion-2.4.140-20250324.iso wget https://download.securityonion.net/file/securityonion/securityonion-2.4.141-20250331.iso
``` ```
Verify the downloaded ISO image using the signature file: Verify the downloaded ISO image using the signature file:
``` ```
gpg --verify securityonion-2.4.140-20250324.iso.sig securityonion-2.4.140-20250324.iso gpg --verify securityonion-2.4.141-20250331.iso.sig securityonion-2.4.141-20250331.iso
``` ```
The output should show "Good signature" and the Primary key fingerprint should match what's shown below: The output should show "Good signature" and the Primary key fingerprint should match what's shown below:
``` ```
gpg: Signature made Sun 23 Mar 2025 08:37:47 PM EDT using RSA key ID FE507013 gpg: Signature made Fri 28 Mar 2025 06:28:11 PM EDT using RSA key ID FE507013
gpg: Good signature from "Security Onion Solutions, LLC <info@securityonionsolutions.com>" gpg: Good signature from "Security Onion Solutions, LLC <info@securityonionsolutions.com>"
gpg: WARNING: This key is not certified with a trusted signature! gpg: WARNING: This key is not certified with a trusted signature!
gpg: There is no indication that the signature belongs to the owner. gpg: There is no indication that the signature belongs to the owner.

View File

@@ -1 +1 @@
2.4.140 2.4.141

View File

@@ -408,6 +408,7 @@ preupgrade_changes() {
[[ "$INSTALLEDVERSION" == 2.4.111 ]] && up_to_2.4.120 [[ "$INSTALLEDVERSION" == 2.4.111 ]] && up_to_2.4.120
[[ "$INSTALLEDVERSION" == 2.4.120 ]] && up_to_2.4.130 [[ "$INSTALLEDVERSION" == 2.4.120 ]] && up_to_2.4.130
[[ "$INSTALLEDVERSION" == 2.4.130 ]] && up_to_2.4.140 [[ "$INSTALLEDVERSION" == 2.4.130 ]] && up_to_2.4.140
[[ "$INSTALLEDVERSION" == 2.4.140 ]] && up_to_2.4.141
true true
} }
@@ -433,6 +434,7 @@ postupgrade_changes() {
[[ "$POSTVERSION" == 2.4.111 ]] && post_to_2.4.120 [[ "$POSTVERSION" == 2.4.111 ]] && post_to_2.4.120
[[ "$POSTVERSION" == 2.4.120 ]] && post_to_2.4.130 [[ "$POSTVERSION" == 2.4.120 ]] && post_to_2.4.130
[[ "$POSTVERSION" == 2.4.130 ]] && post_to_2.4.140 [[ "$POSTVERSION" == 2.4.130 ]] && post_to_2.4.140
[[ "$POSTVERSION" == 2.4.140 ]] && post_to_2.4.141
true true
} }
@@ -560,6 +562,11 @@ post_to_2.4.140() {
POSTVERSION=2.4.140 POSTVERSION=2.4.140
} }
post_to_2.4.141() {
echo "Nothing to apply"
POSTVERSION=2.4.141
}
repo_sync() { repo_sync() {
echo "Sync the local repo." echo "Sync the local repo."
su socore -c '/usr/sbin/so-repo-sync' || fail "Unable to complete so-repo-sync." su socore -c '/usr/sbin/so-repo-sync' || fail "Unable to complete so-repo-sync."
@@ -786,6 +793,12 @@ up_to_2.4.140() {
INSTALLEDVERSION=2.4.140 INSTALLEDVERSION=2.4.140
} }
up_to_2.4.141() {
echo "Nothing to do for 2.4.141"
INSTALLEDVERSION=2.4.141
}
add_hydra_pillars() { add_hydra_pillars() {
mkdir -p /opt/so/saltstack/local/pillar/hydra mkdir -p /opt/so/saltstack/local/pillar/hydra
touch /opt/so/saltstack/local/pillar/hydra/soc_hydra.sls touch /opt/so/saltstack/local/pillar/hydra/soc_hydra.sls

Binary file not shown.