From 116c7bb3d4e9dafc290a92a7c77b3c37b82aedef Mon Sep 17 00:00:00 2001 From: Doug Burks Date: Tue, 23 Jan 2024 10:42:54 -0500 Subject: [PATCH 1/5] Update Dockerfile --- so-zeek/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/so-zeek/Dockerfile b/so-zeek/Dockerfile index 842927dc..937be849 100644 --- a/so-zeek/Dockerfile +++ b/so-zeek/Dockerfile @@ -22,7 +22,7 @@ RUN dnf -y install dnf-plugins-core && dnf config-manager --set-enabled powertoo pip3 install GitPython semantic-version requests && \ dnf -y erase epel-release && dnf clean all && rm -rf /var/cache/dnf -ENV ZEEKVER=6.0.2 +ENV ZEEKVER=6.0.3 ARG BUILD_TYPE=Release RUN mkdir /zeekbuild From c31167d0abb087dbad8e029f97e1146167e797c3 Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Tue, 23 Jan 2024 15:52:57 -0500 Subject: [PATCH 2/5] pin 2.3 curator to alpine 3.18.4, same as 2.3.280 --- so-curator/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/so-curator/Dockerfile b/so-curator/Dockerfile index b0fa49e1..fcccc389 100644 --- a/so-curator/Dockerfile +++ b/so-curator/Dockerfile @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -FROM alpine:3 +FROM alpine:3.18.4 LABEL maintainer "Security Onion Solutions, LLC" From 04072221ef51a7b565797a20ce04f29b9fda0944 Mon Sep 17 00:00:00 2001 From: Doug Burks Date: Thu, 8 Feb 2024 10:01:26 -0500 Subject: [PATCH 3/5] UPGRADE: Suricata 6.0.16 Security-Onion-Solutions/securityonion#12328 --- so-suricata/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/so-suricata/Dockerfile b/so-suricata/Dockerfile index b10a87d5..cd388764 100644 --- a/so-suricata/Dockerfile +++ b/so-suricata/Dockerfile @@ -18,7 +18,7 @@ FROM ghcr.io/security-onion-solutions/centos:7 as builder RUN yum -y install epel-release RUN yum -y install jansson-devel libpcap-devel python3 libpcap-devel openssl-devel zlib-devel jemalloc-devel python3-devel kernel-devel kernel-headers libjansson libgeoip liblua5.1 curl wget make gcc pkg-config libhiredis libevent pcre-devel libpcre libmagic zlib libyaml rustc cargo libyaml-devel libcap-ng-devel file-devel nss-devel nspr-devel python3-yaml luajit-devel luajit -ENV SURIVERSION=6.0.15 +ENV SURIVERSION=6.0.16 RUN mkdir /suricata WORKDIR /suricata From c8d8a8188c8ff709f841cc25d9f08eb0f7102a70 Mon Sep 17 00:00:00 2001 From: Josh Brower Date: Mon, 26 Feb 2024 10:29:42 -0500 Subject: [PATCH 4/5] fix deps --- so-fleet-launcher/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/so-fleet-launcher/Dockerfile b/so-fleet-launcher/Dockerfile index f858138d..3d9473c9 100644 --- a/so-fleet-launcher/Dockerfile +++ b/so-fleet-launcher/Dockerfile @@ -20,7 +20,8 @@ RUN apt-get install -y --no-install-recommends \ rpm \ git -RUN gem install public_suffix -v 4.0.7 && \ +RUN gem install dotenv -v 2.8.1 && \ + gem install public_suffix -v 4.0.7 && \ gem install --no-ri --no-rdoc fpm && \ apt-get -f -y --auto-remove remove build-essential autoconf libtool && \ apt-get clean && \ From 7944c5688fcbd5b0ac45894b2349c19ed2310454 Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Wed, 28 Feb 2024 15:10:01 -0500 Subject: [PATCH 5/5] pin curator deps to match 2.3.280 --- so-curator/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/so-curator/Dockerfile b/so-curator/Dockerfile index fcccc389..94640bea 100644 --- a/so-curator/Dockerfile +++ b/so-curator/Dockerfile @@ -26,7 +26,7 @@ ENV LC_ALL=en_US.UTF-8 USER root RUN apk --no-cache add python3 py-setuptools py-pip gcc libffi py-cffi python3-dev libffi-dev py-openssl musl-dev linux-headers openssl-dev && \ - pip install elasticsearch-curator && \ + pip install urllib3==2.0.7 certifi==2023.7.22 elastic-transport==8.10.0 voluptuous==0.13.1 elasticsearch-curator==8.0.8 && \ apk del gcc python3-dev libffi-dev musl-dev linux-headers openssl-dev RUN addgroup -g ${GID} ${USERNAME} && \