-
Notifications
You must be signed in to change notification settings - Fork 26
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 #485 from Security-Onion-Solutions/2.4/dev
2.4.30
- Loading branch information
Showing
9 changed files
with
110 additions
and
28 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
18 changes: 18 additions & 0 deletions
18
so-elastic-fleet-package-registry/scripts/supported-integrations.sh
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,18 @@ | ||
#!/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. | ||
|
||
# This script removes unsupported packages from our self-hosted Elastic Package Repo container image. | ||
# It is meant to be used during the image build process. | ||
|
||
cd /packages/package-storage/ | ||
for file in * | ||
do | ||
PATTERN=$(echo $file | cut -d "-" -f 1)- | ||
[[ ! $(grep -x "$PATTERN" /scripts/supported-integrations.txt) ]] && rm "$file" && echo "Deleted: $file..." | ||
done | ||
|
||
exit 0 |
64 changes: 64 additions & 0 deletions
64
so-elastic-fleet-package-registry/scripts/supported-integrations.txt
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,64 @@ | ||
apache- | ||
auditd- | ||
auth0- | ||
aws- | ||
azure- | ||
barracuda- | ||
carbonblack_edr- | ||
checkpoint- | ||
cisco_asa- | ||
cisco_duo- | ||
cisco_meraki- | ||
cisco_umbrella- | ||
cloudflare- | ||
crowdstrike- | ||
darktrace- | ||
elasticsearch- | ||
endpoint- | ||
f5_bigip- | ||
fim- | ||
fireeye- | ||
fleet_server- | ||
fortinet- | ||
fortinet_fortigate- | ||
gcp- | ||
github- | ||
google_workspace- | ||
http_endpoint- | ||
httpjson- | ||
juniper- | ||
juniper_srx- | ||
kafka_log- | ||
lastpass- | ||
log- | ||
m365_defender- | ||
microsoft_defender_endpoint- | ||
microsoft_dhcp- | ||
mimecast- | ||
netflow- | ||
o365- | ||
okta- | ||
osquery_manager- | ||
panw- | ||
pfsense- | ||
pulse_connect_secure- | ||
redis- | ||
sentinel_one- | ||
snyk- | ||
sonicwall_firewall- | ||
sophos- | ||
sophos_central- | ||
symantec_endpoint- | ||
system- | ||
tcp- | ||
tenable_sc- | ||
ti_abusech- | ||
ti_misp- | ||
ti_otx- | ||
ti_recordedfuture- | ||
udp- | ||
vsphere- | ||
windows- | ||
zscaler_zia- | ||
zscaler_zpa- | ||
1password- |
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
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
FROM ghcr.io/security-onion-solutions/telegraf:1.25.1-alpine | ||
FROM ghcr.io/security-onion-solutions/telegraf:1.28.2-alpine | ||
LABEL maintainer "Security Onion Solutions, LLC" | ||
LABEL description="Telegraf running in Docker container for use with Security Onion" | ||
|
||
USER root | ||
|
||
RUN apk add --no-cache redis curl jq | ||
RUN apk add --no-cache redis curl jq bash | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] | ||
CMD ["telegraf"] |
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