Skip to content

Commit 94c7dab

Browse files
authored
Merge pull request #12693 from Security-Onion-Solutions/dev
2.3.300
2 parents fbbddc2 + 2f3b928 commit 94c7dab

File tree

5 files changed

+56
-12
lines changed

5 files changed

+56
-12
lines changed

VERIFY_ISO.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
### 2.3.290-20240229 ISO image built on 2024/02/29
1+
### 2.3.300-20240401 ISO image built on 2024/04/01
22

33

44

55
### Download and Verify
66

7-
2.3.290-20240229 ISO image:
8-
https://download.securityonion.net/file/securityonion/securityonion-2.3.290-20240229.iso
7+
2.3.300-20240401 ISO image:
8+
https://download.securityonion.net/file/securityonion/securityonion-2.3.300-20240401.iso
99

10-
MD5: D2A7BBDA25F311B7944A95655CC439CE
11-
SHA1: BAD2A67119C6F73B6472E1A31B9C157A60A074B5
12-
SHA256: FD611421C3B41BA267BA7A57B8FAFB29B0B59435D0A796D686C0D3BDD36AFF7D
10+
MD5: 5CBDA8012D773C5EC362D21C4EA3B7FB
11+
SHA1: 7A34FAA0E11F09F529FF38EC3239211CD87CB1A7
12+
SHA256: 123066DAFBF6F2AA0E1924296CFEFE1213002D7760E8797AB74F1FC1D683C6D7
1313

1414
Signature for ISO image:
15-
https://github.com/Security-Onion-Solutions/securityonion/raw/master/sigs/securityonion-2.3.290-20240229.iso.sig
15+
https://github.com/Security-Onion-Solutions/securityonion/raw/master/sigs/securityonion-2.3.300-20240401.iso.sig
1616

1717
Signing key:
1818
https://raw.githubusercontent.com/Security-Onion-Solutions/securityonion/master/KEYS
@@ -26,22 +26,22 @@ wget https://raw.githubusercontent.com/Security-Onion-Solutions/securityonion/ma
2626

2727
Download the signature file for the ISO:
2828
```
29-
wget https://github.com/Security-Onion-Solutions/securityonion/raw/master/sigs/securityonion-2.3.290-20240229.iso.sig
29+
wget https://github.com/Security-Onion-Solutions/securityonion/raw/master/sigs/securityonion-2.3.300-20240401.iso.sig
3030
```
3131

3232
Download the ISO image:
3333
```
34-
wget https://download.securityonion.net/file/securityonion/securityonion-2.3.290-20240229.iso
34+
wget https://download.securityonion.net/file/securityonion/securityonion-2.3.300-20240401.iso
3535
```
3636

3737
Verify the downloaded ISO image using the signature file:
3838
```
39-
gpg --verify securityonion-2.3.290-20240229.iso.sig securityonion-2.3.290-20240229.iso
39+
gpg --verify securityonion-2.3.300-20240401.iso.sig securityonion-2.3.300-20240401.iso
4040
```
4141

4242
The output should show "Good signature" and the Primary key fingerprint should match what's shown below:
4343
```
44-
gpg: Signature made Wed 28 Feb 2024 04:11:05 PM EST using RSA key ID FE507013
44+
gpg: Signature made Wed 27 Mar 2024 05:09:33 PM EDT using RSA key ID FE507013
4545
gpg: Good signature from "Security Onion Solutions, LLC <[email protected]>"
4646
gpg: WARNING: This key is not certified with a trusted signature!
4747
gpg: There is no indication that the signature belongs to the owner.

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.290
1+
2.3.300

salt/common/tools/sbin/soup

+12
Original file line numberDiff line numberDiff line change
@@ -582,6 +582,7 @@ preupgrade_changes() {
582582
[[ "$INSTALLEDVERSION" == 2.3.260 ]] && up_to_2.3.270
583583
[[ "$INSTALLEDVERSION" == 2.3.270 ]] && up_to_2.3.280
584584
[[ "$INSTALLEDVERSION" == 2.3.280 ]] && up_to_2.3.290
585+
[[ "$INSTALLEDVERSION" == 2.3.290 ]] && up_to_2.3.300
585586

586587
true
587588
}
@@ -616,6 +617,7 @@ postupgrade_changes() {
616617
[[ "$POSTVERSION" == 2.3.260 ]] && post_to_2.3.270
617618
[[ "$POSTVERSION" == 2.3.270 ]] && post_to_2.3.280
618619
[[ "$POSTVERSION" == 2.3.280 ]] && post_to_2.3.290
620+
[[ "$POSTVERSION" == 2.3.290 ]] && post_to_2.3.300
619621

620622
true
621623
}
@@ -791,6 +793,11 @@ post_to_2.3.290() {
791793
POSTVERSION=2.3.290
792794
}
793795

796+
post_to_2.3.300() {
797+
echo "Nothing to do for .300"
798+
POSTVERSION=2.3.300
799+
}
800+
794801
stop_salt_master() {
795802
# kill all salt jobs across the grid because the hang indefinitely if they are queued and salt-master restarts
796803
set +e
@@ -1166,6 +1173,11 @@ up_to_2.3.290() {
11661173
INSTALLEDVERSION=2.3.290
11671174
}
11681175

1176+
up_to_2.3.300() {
1177+
echo "Upgrading to 2.3.300"
1178+
INSTALLEDVERSION=2.3.300
1179+
}
1180+
11691181
verify_upgradespace() {
11701182
CURRENTSPACE=$(df -BG / | grep -v Avail | awk '{print $4}' | sed 's/.$//')
11711183
if [ "$CURRENTSPACE" -lt "10" ]; then

salt/strelka/defaults.yaml

+32
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,43 @@
11
strelka:
22
ignore:
33
- apt_flame2_orchestrator.yar
4+
- apt_apt32.yar
5+
- apt_aa19_024a.yar
6+
- apt_apt15.yar
7+
- apt_barracuda_esg_unc4841_jun23.yar
8+
- apt_bluetermite_emdivi.yar
9+
- apt_danti_svcmondr.yar
10+
- apt_eqgrp.yar
11+
- apt_eqgrp_apr17.yar
12+
- apt_greenbug.yar
13+
- apt_grizzlybear_uscert.yar
14+
- apt_lazarus_jun18.yar
15+
- apt_mal_gopuram_apr23.yar
16+
- apt_moonlightmaze.yar
17+
- apt_oilrig.yar
18+
- apt_oilrig_oct17.yar
19+
- apt_passthehashtoolkit.yar
20+
- apt_poisonivy.yar
21+
- apt_winnti_burning_umbrella.yar
22+
- cn_pentestset_webshells.yar
23+
- crime_emotet.yar
24+
- gen_fake_amsi_dll.yar
25+
- gen_onenote_phish.yar
26+
- apt_laudanum_webshells.yar
27+
- apt_sandworm_cyclops_blink.yar
28+
- cn_pentestset_scripts.yar
29+
- expl_connectwise_screenconnect_vuln_feb24.yar
30+
- mal_fortinet_coathanger_feb24.yar
31+
- thor-hacktools.yar
32+
- thor-webshells.yar
433
- apt_tetris.yar
534
- gen_susp_js_obfuscatorio.yar
635
- gen_webshells.yar
36+
- gen_vcruntime140_dll_sideloading.yar
737
- generic_anomalies.yar
838
- general_cloaking.yar
939
- thor_inverse_matches.yar
40+
- yara-rules_vuln_drivers_strict_renamed.yar
1041
- yara_mixed_ext_vars.yar
1142
- apt_apt27_hyperbro.yar
1243
- apt_turla_gazer.yar
@@ -18,4 +49,5 @@ strelka:
1849
- gen_webshells_ext_vars.yar
1950
- configured_vulns_ext_vars.yar
2051
- expl_outlook_cve_2023_23397.yar
52+
- expl_citrix_netscaler_adc_exploitation_cve_2023_3519.yar
2153
- gen_mal_3cx_compromise_mar23.yar
543 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)