Fix conflicts

This commit is contained in:
Mike Reeves
2021-12-14 10:55:19 -05:00
10 changed files with 48 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
## Security Onion 2.3.90-20211206 ## Security Onion 2.3.90-20211213
Security Onion 2.3.90-20211206 is here! Security Onion 2.3.90-20211213 is here!
## Screenshots ## Screenshots

View File

@@ -1,18 +1,18 @@
### 2.3.90-20211206 ISO image built on 2021/12/06 ### 2.3.90-20211213 ISO image built on 2021/12/13
### Download and Verify ### Download and Verify
2.3.90-20211206 ISO image: 2.3.90-20211213 ISO image:
https://download.securityonion.net/file/securityonion/securityonion-2.3.90-20211206.iso https://download.securityonion.net/file/securityonion/securityonion-2.3.90-20211213.iso
MD5: 8A5FDF731D548E27D123E5B711890AEC MD5: D7E90433B416627347DD54B7C3C07F18
SHA1: B4AF33FE1D64592D46C780AF0C5E7FBD21A22BDE SHA1: 11E212B2237162749F5E3BD959C84D6C4720D213
SHA256: 091DA2D06C82447639D324EE32DBC385AE407078B3A55F4E0704B22DB6B29A7E SHA256: 01DD0AF3CF5BBFD4AF7463F8897935A885E3D9CC8B9B3B5E9A01E0A2EF37ED95
Signature for ISO image: Signature for ISO image:
https://github.com/Security-Onion-Solutions/securityonion/raw/master/sigs/securityonion-2.3.90-20211206.iso.sig https://github.com/Security-Onion-Solutions/securityonion/raw/master/sigs/securityonion-2.3.90-20211213.iso.sig
Signing key: Signing key:
https://raw.githubusercontent.com/Security-Onion-Solutions/securityonion/master/KEYS https://raw.githubusercontent.com/Security-Onion-Solutions/securityonion/master/KEYS
@@ -26,22 +26,22 @@ wget https://raw.githubusercontent.com/Security-Onion-Solutions/securityonion/ma
Download the signature file for the ISO: Download the signature file for the ISO:
``` ```
wget https://github.com/Security-Onion-Solutions/securityonion/raw/master/sigs/securityonion-2.3.90-20211206.iso.sig wget https://github.com/Security-Onion-Solutions/securityonion/raw/master/sigs/securityonion-2.3.90-20211213.iso.sig
``` ```
Download the ISO image: Download the ISO image:
``` ```
wget https://download.securityonion.net/file/securityonion/securityonion-2.3.90-20211206.iso wget https://download.securityonion.net/file/securityonion/securityonion-2.3.90-20211213.iso
``` ```
Verify the downloaded ISO image using the signature file: Verify the downloaded ISO image using the signature file:
``` ```
gpg --verify securityonion-2.3.90-20211206.iso.sig securityonion-2.3.90-20211206.iso gpg --verify securityonion-2.3.90-20211213.iso.sig securityonion-2.3.90-20211213.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 Mon 06 Dec 2021 10:14:29 AM EST using RSA key ID FE507013 gpg: Signature made Mon 13 Dec 2021 11:46:27 AM EST 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

@@ -131,6 +131,13 @@ esrolesdir:
- group: 939 - group: 939
- makedirs: True - makedirs: True
eslibdir:
file.directory:
- name: /opt/so/conf/elasticsearch/lib
- user: 930
- group: 939
- makedirs: True
esingestdynamicconf: esingestdynamicconf:
file.recurse: file.recurse:
- name: /opt/so/conf/elasticsearch/ingest - name: /opt/so/conf/elasticsearch/ingest
@@ -179,6 +186,14 @@ es_template_{{TEMPLATE.split('.')[0] | replace("/","_") }}:
- group: 939 - group: 939
{% endfor %} {% endfor %}
eslibsync:
file.managed:
- name: /opt/so/conf/elasticsearch/lib/log4j-core-2.11.1-patched.jar
- source: salt://elasticsearch/lib/log4j-core-2.11.1-patched.jar
- user: 930
- group: 939
- mode: 644
esroles: esroles:
file.recurse: file.recurse:
- source: salt://elasticsearch/roles/ - source: salt://elasticsearch/roles/
@@ -258,7 +273,7 @@ so-elasticsearch:
{% if TRUECLUSTER is sameas false or (TRUECLUSTER is sameas true and not salt['pillar.get']('nodestab', {})) %} {% if TRUECLUSTER is sameas false or (TRUECLUSTER is sameas true and not salt['pillar.get']('nodestab', {})) %}
- discovery.type=single-node - discovery.type=single-node
{% endif %} {% endif %}
- ES_JAVA_OPTS=-Xms{{ esheap }} -Xmx{{ esheap }} -Des.transport.cname_in_publish_address=true - ES_JAVA_OPTS=-Xms{{ esheap }} -Xmx{{ esheap }} -Des.transport.cname_in_publish_address=true -Dlog4j2.formatMsgNoLookups=true
ulimits: ulimits:
- memlock=-1:-1 - memlock=-1:-1
- nofile=65536:65536 - nofile=65536:65536
@@ -267,6 +282,7 @@ so-elasticsearch:
- 0.0.0.0:9200:9200 - 0.0.0.0:9200:9200
- 0.0.0.0:9300:9300 - 0.0.0.0:9300:9300
- binds: - binds:
- /opt/so/conf/elasticsearch/lib/log4j-core-2.11.1-patched.jar:/usr/share/elasticsearch/lib/log4j-core-2.11.1.jar:ro
- /opt/so/conf/elasticsearch/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml:ro - /opt/so/conf/elasticsearch/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml:ro
- /opt/so/conf/elasticsearch/log4j2.properties:/usr/share/elasticsearch/config/log4j2.properties:ro - /opt/so/conf/elasticsearch/log4j2.properties:/usr/share/elasticsearch/config/log4j2.properties:ro
- /nsm/elasticsearch:/usr/share/elasticsearch/data:rw - /nsm/elasticsearch:/usr/share/elasticsearch/data:rw

Binary file not shown.

View File

@@ -0,0 +1 @@
-Dlog4j2.formatMsgNoLookups=true

View File

@@ -61,6 +61,13 @@ logstash:
- gid: 931 - gid: 931
- home: /opt/so/conf/logstash - home: /opt/so/conf/logstash
lslibdir:
file.directory:
- name: /opt/so/conf/logstash/lib
- user: 931
- group: 939
- makedirs: True
lsetcdir: lsetcdir:
file.directory: file.directory:
- name: /opt/so/conf/logstash/etc - name: /opt/so/conf/logstash/etc
@@ -123,6 +130,14 @@ lsetcsync:
- clean: True - clean: True
- exclude_pat: pipelines* - exclude_pat: pipelines*
lslibsync:
file.managed:
- name: /opt/so/conf/logstash/lib/log4j-core-2.14.0-patched.jar
- source: salt://logstash/lib/log4j-core-2.14.0-patched.jar
- user: 931
- group: 939
- mode: 644
# Create the import directory # Create the import directory
importdir: importdir:
file.directory: file.directory:
@@ -162,6 +177,7 @@ so-logstash:
- {{ BINDING }} - {{ BINDING }}
{% endfor %} {% endfor %}
- binds: - binds:
- /opt/so/conf/logstash/lib/log4j-core-2.14.0-patched.jar:/usr/share/logstash/logstash-core/lib/jars/log4j-core-2.14.0.jar:ro
- /opt/so/conf/elasticsearch/templates/:/templates/:ro - /opt/so/conf/elasticsearch/templates/:/templates/:ro
- /opt/so/conf/logstash/etc/:/usr/share/logstash/config/:ro - /opt/so/conf/logstash/etc/:/usr/share/logstash/config/:ro
- /opt/so/conf/logstash/pipelines:/usr/share/logstash/pipelines:ro - /opt/so/conf/logstash/pipelines:/usr/share/logstash/pipelines:ro

Binary file not shown.

View File

@@ -95,7 +95,7 @@ so-thehive-es:
- /opt/so/conf/thehive/etc/es/log4j2.properties:/usr/share/elasticsearch/config/log4j2.properties:ro - /opt/so/conf/thehive/etc/es/log4j2.properties:/usr/share/elasticsearch/config/log4j2.properties:ro
- /opt/so/log/thehive:/var/log/elasticsearch:rw - /opt/so/log/thehive:/var/log/elasticsearch:rw
- environment: - environment:
- ES_JAVA_OPTS=-Xms512m -Xmx512m - ES_JAVA_OPTS=-Xms512m -Xmx512m -Dlog4j2.formatMsgNoLookups=true
- port_bindings: - port_bindings:
- 0.0.0.0:9400:9400 - 0.0.0.0:9400:9400
- 0.0.0.0:9500:9500 - 0.0.0.0:9500:9500

Binary file not shown.

Binary file not shown.