-
Notifications
You must be signed in to change notification settings - Fork 685
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
All + Moved all to docker folder. Getting ready to start sharing other ways to deploy helk (terraform & Packer maybe) Compose-files + Basic & Trial Elastic Subscriptions available now and can be automatically managed via the helk_install script ELK Version : 6.3.2 Elasticsearch + Set 4GB for ES_JAVA_OPTS by default allowing the modification of it via docker-compose and calculating half of the host memory if it is not set + Added Entrypoint script and using docker-entrypoint to start ES Logstash + Big Pipeline Update by Nate Guagenti (@neu5ron) ++better cli & file name searching ++”dst_ip_public:true” filter out all rfc1918/non-routable ++Geo ASName ++Identification of 16+ windows IP fields ++Arrayed IPs support ++IPv6&IPv4 differentiation ++removing “-“ values and MORE!!! ++ THANK YOU SO MUCH NATE!!! ++ PR: #93 + Added entrypoint script to push new output_templates straight to Elasticsearch per Nate's recommendation + Starting Logstash now with docker-entrypoint + "event_data" is now taken out of winlogbeat logs to allow integration with nxlog (sauce added by Nate Guagenti (@neu5ron) Kibana + Kibana yml file updated to allow a longer time for timeout Nginx: + it handles communications to Kibana and Jupyterhub via port 443 SSL + certificate and key get created at build time + Nate added several settings to improve the way how nginx operates Jupyterhub + Multiple users and mulitple notebooks open at the same time are possible now + Jupytehub now has 3 users hunter1,hunter2.hunter3 and password patterh is <user>P@ssw0rd! + Every notebook created is also JupyterLab + Updated ES-Hadoop 6.3.2 Kafka Update + 1.1.1 Update Spark Master + Brokers + reduce memory for brokers by default to 512m Resources: + Added new images for Wiki
- Loading branch information
1 parent
c7af8e4
commit 634e24e
Showing
164 changed files
with
5,317 additions
and
1,599 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
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
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
helk-elasticsearch/Dockerfile → docker/helk-elasticsearch/Dockerfile
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,12 +1,12 @@ | ||
# HELK script: HELK Elasticsearch Dockerfile | ||
# HELK build Stage: Alpha | ||
# HELK ELK version: 6.3.1 | ||
# HELK ELK version: 6.3.2 | ||
# Author: Roberto Rodriguez (@Cyb3rWard0g) | ||
# License: GPL-3.0 | ||
|
||
# References: | ||
# https://cyberwardog.blogspot.com/2017/02/setting-up-pentesting-i-mean-threat_98.html | ||
|
||
FROM docker.elastic.co/elasticsearch/elasticsearch:6.3.1 | ||
FROM docker.elastic.co/elasticsearch/elasticsearch:6.3.2 | ||
LABEL maintainer="Roberto Rodriguez @Cyb3rWard0g" | ||
LABEL description="Dockerfile base for the HELK Elasticsearch." |
File renamed without changes.
21 changes: 21 additions & 0 deletions
21
docker/helk-elasticsearch/scripts/elasticsearch-entrypoint.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,21 @@ | ||
#!/bin/bash | ||
|
||
# HELK script: elasticsearch-entrypoint.sh | ||
# HELK script description: sets elasticsearch configs and starts elasticsearch | ||
# HELK build Stage: Alpha | ||
# Author: Roberto Rodriguez (@Cyb3rWard0g) | ||
# License: GPL-3.0 | ||
|
||
# *********** Looking for ES *************** | ||
if [[ ! -z "$ES_JAVA_OPTS" ]]; then | ||
echo "[HELK-DOCKER-INSTALLATION-INFO] Setting ES_JAVA_OPTS to $ES_JAVA_OPTS" | ||
else | ||
# ****** Setup heap size and memory locking ***** | ||
ES_MEMORY=$(awk '/MemAvailable/{printf "%.f", $2/1024/1024/2}' /proc/meminfo) | ||
echo "[HELK-DOCKER-INSTALLATION-INFO] Setting ES_HEAP_SIZE to ${ES_MEMORY}.." | ||
export ES_JAVA_OPTS="-Xms${ES_MEMORY}g -Xmx${ES_MEMORY}g" | ||
fi | ||
|
||
# ********** Starting Elasticsearch ***************** | ||
echo "[HELK-DOCKER-INSTALLATION-INFO] Running docker-entrypoint script.." | ||
/usr/local/bin/docker-entrypoint.sh |
6 changes: 2 additions & 4 deletions
6
helk-elasticsearch/trial/Dockerfile → docker/helk-elasticsearch/trial/Dockerfile
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
File renamed without changes.
Oops, something went wrong.