-
Notifications
You must be signed in to change notification settings - Fork 515
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 #11827 from Security-Onion-Solutions/hotfix/2.4.30
Hotfix 2.4.30
- Loading branch information
Showing
8 changed files
with
69 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
### 2.4.30-20231113 ISO image released on 2023/11/13 | ||
### 2.4.30-20231117 ISO image released on 2023/11/20 | ||
|
||
|
||
|
||
### Download and Verify | ||
|
||
2.4.30-20231113 ISO image: | ||
https://download.securityonion.net/file/securityonion/securityonion-2.4.30-20231113.iso | ||
2.4.30-20231117 ISO image: | ||
https://download.securityonion.net/file/securityonion/securityonion-2.4.30-20231117.iso | ||
|
||
MD5: 15EB5A74782E4C2D5663D29E275839F6 | ||
SHA1: BBD4A7D77ADDA94B866F1EFED846A83DDFD34D73 | ||
SHA256: 4509EB8E11DB49C6CD3905C74C5525BDB1F773488002179A846E00DE8E499988 | ||
MD5: DF7E2540AFF2A233A9B0EEC78B37D0EA | ||
SHA1: 93DB33A46C6F9C7D7CB8031C0A4F8738F4F14E89 | ||
SHA256: 48C7BD1C664F545554490B8F191BCD7808C519488DCC85984760400F4F68E2DA | ||
|
||
Signature for ISO image: | ||
https://github.com/Security-Onion-Solutions/securityonion/raw/2.4/main/sigs/securityonion-2.4.30-20231113.iso.sig | ||
https://github.com/Security-Onion-Solutions/securityonion/raw/2.4/main/sigs/securityonion-2.4.30-20231117.iso.sig | ||
|
||
Signing key: | ||
https://raw.githubusercontent.com/Security-Onion-Solutions/securityonion/2.4/main/KEYS | ||
|
@@ -26,22 +26,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.30-20231113.iso.sig | ||
wget https://github.com/Security-Onion-Solutions/securityonion/raw/2.4/main/sigs/securityonion-2.4.30-20231117.iso.sig | ||
``` | ||
|
||
Download the ISO image: | ||
``` | ||
wget https://download.securityonion.net/file/securityonion/securityonion-2.4.30-20231113.iso | ||
wget https://download.securityonion.net/file/securityonion/securityonion-2.4.30-20231117.iso | ||
``` | ||
|
||
Verify the downloaded ISO image using the signature file: | ||
``` | ||
gpg --verify securityonion-2.4.30-20231113.iso.sig securityonion-2.4.30-20231113.iso | ||
gpg --verify securityonion-2.4.30-20231117.iso.sig securityonion-2.4.30-20231117.iso | ||
``` | ||
|
||
The output should show "Good signature" and the Primary key fingerprint should match what's shown below: | ||
``` | ||
gpg: Signature made Mon 13 Nov 2023 09:23:21 AM EST using RSA key ID FE507013 | ||
gpg: Signature made Sun 19 Nov 2023 08:11:53 PM EST 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 @@ | ||
|
||
20231117 |
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,20 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright Security Onion Solutions LLC and/or licensed to Security Onion Solutions LLC under one | ||
# or more contributor license agreements. Licensed under the Elastic License 2.0 as shown at | ||
# https://securityonion.net/license; you may not use this file except in compliance with the | ||
# Elastic License 2.0. | ||
|
||
. /usr/sbin/so-common | ||
|
||
echo "Checking to make sure that Kibana API is up & ready..." | ||
RETURN_CODE=0 | ||
wait_for_web_response "http://localhost:5601/api/fleet/settings" "fleet" 300 "curl -K /opt/so/conf/elasticsearch/curl.config" | ||
RETURN_CODE=$? | ||
if [[ "$RETURN_CODE" != "0" ]]; then | ||
echo "Kibana API not accessible, exiting script..." | ||
exit 1 | ||
fi | ||
|
||
|
||
|
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
Binary file not shown.