├── .env.production ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .vscode └── BeaKer.code-workspace ├── ELK_VERSIONS ├── LICENSE ├── README.md ├── agent └── install-sysmon-beats.ps1 ├── beaker.sh ├── docker-compose.yml ├── docs └── Installation and Release Generation.md ├── elasticsearch ├── elasticsearch.yml ├── export_day.sh ├── export_index.sh ├── import_index.sh ├── reset_elastic_password.sh └── templates │ ├── winlogbeat-7.17.9.template.json │ ├── winlogbeat-8.7.0-powershell.json │ ├── winlogbeat-8.7.0-powershell_operational.json │ ├── winlogbeat-8.7.0-routing.json │ ├── winlogbeat-8.7.0-security.json │ ├── winlogbeat-8.7.0-sysmon.json │ ├── winlogbeat-8.7.0.template.json │ └── winlogbeat-ilm-policy.json ├── images ├── BeaKer_dashboards_list.png ├── BeaKer_dashboards_navigation.png ├── BeaKer_demo.gif ├── BeaKer_demo_bottom.png ├── BeaKer_demo_top.png └── beaker-text.png ├── installer ├── generate_installer.sh ├── helper.sh ├── install_beaker.sh ├── install_beaker.yml ├── install_post.yml └── install_pre.yml └── kibana ├── export_dashboards.sh ├── import_dashboards.sh ├── kibana.yml ├── kibana_dashboards-7.17.0.ndjson └── kibana_dashboards-8.0.0.ndjson /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/.env.production -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/BeaKer.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/.vscode/BeaKer.code-workspace -------------------------------------------------------------------------------- /ELK_VERSIONS: -------------------------------------------------------------------------------- 1 | 7.17.9 2 | 8.7.0 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/README.md -------------------------------------------------------------------------------- /agent/install-sysmon-beats.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/agent/install-sysmon-beats.ps1 -------------------------------------------------------------------------------- /beaker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/beaker.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Installation and Release Generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/docs/Installation and Release Generation.md -------------------------------------------------------------------------------- /elasticsearch/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/elasticsearch/elasticsearch.yml -------------------------------------------------------------------------------- /elasticsearch/export_day.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/elasticsearch/export_day.sh -------------------------------------------------------------------------------- /elasticsearch/export_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/elasticsearch/export_index.sh -------------------------------------------------------------------------------- /elasticsearch/import_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/elasticsearch/import_index.sh -------------------------------------------------------------------------------- /elasticsearch/reset_elastic_password.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/elasticsearch/reset_elastic_password.sh -------------------------------------------------------------------------------- /elasticsearch/templates/winlogbeat-7.17.9.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/elasticsearch/templates/winlogbeat-7.17.9.template.json -------------------------------------------------------------------------------- /elasticsearch/templates/winlogbeat-8.7.0-powershell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/elasticsearch/templates/winlogbeat-8.7.0-powershell.json -------------------------------------------------------------------------------- /elasticsearch/templates/winlogbeat-8.7.0-powershell_operational.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/elasticsearch/templates/winlogbeat-8.7.0-powershell_operational.json -------------------------------------------------------------------------------- /elasticsearch/templates/winlogbeat-8.7.0-routing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/elasticsearch/templates/winlogbeat-8.7.0-routing.json -------------------------------------------------------------------------------- /elasticsearch/templates/winlogbeat-8.7.0-security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/elasticsearch/templates/winlogbeat-8.7.0-security.json -------------------------------------------------------------------------------- /elasticsearch/templates/winlogbeat-8.7.0-sysmon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/elasticsearch/templates/winlogbeat-8.7.0-sysmon.json -------------------------------------------------------------------------------- /elasticsearch/templates/winlogbeat-8.7.0.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/elasticsearch/templates/winlogbeat-8.7.0.template.json -------------------------------------------------------------------------------- /elasticsearch/templates/winlogbeat-ilm-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/elasticsearch/templates/winlogbeat-ilm-policy.json -------------------------------------------------------------------------------- /images/BeaKer_dashboards_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/images/BeaKer_dashboards_list.png -------------------------------------------------------------------------------- /images/BeaKer_dashboards_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/images/BeaKer_dashboards_navigation.png -------------------------------------------------------------------------------- /images/BeaKer_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/images/BeaKer_demo.gif -------------------------------------------------------------------------------- /images/BeaKer_demo_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/images/BeaKer_demo_bottom.png -------------------------------------------------------------------------------- /images/BeaKer_demo_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/images/BeaKer_demo_top.png -------------------------------------------------------------------------------- /images/beaker-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/images/beaker-text.png -------------------------------------------------------------------------------- /installer/generate_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/installer/generate_installer.sh -------------------------------------------------------------------------------- /installer/helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/installer/helper.sh -------------------------------------------------------------------------------- /installer/install_beaker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/installer/install_beaker.sh -------------------------------------------------------------------------------- /installer/install_beaker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/installer/install_beaker.yml -------------------------------------------------------------------------------- /installer/install_post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/installer/install_post.yml -------------------------------------------------------------------------------- /installer/install_pre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/installer/install_pre.yml -------------------------------------------------------------------------------- /kibana/export_dashboards.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/kibana/export_dashboards.sh -------------------------------------------------------------------------------- /kibana/import_dashboards.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/kibana/import_dashboards.sh -------------------------------------------------------------------------------- /kibana/kibana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/kibana/kibana.yml -------------------------------------------------------------------------------- /kibana/kibana_dashboards-7.17.0.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/kibana/kibana_dashboards-7.17.0.ndjson -------------------------------------------------------------------------------- /kibana/kibana_dashboards-8.0.0.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecm/BeaKer/HEAD/kibana/kibana_dashboards-8.0.0.ndjson --------------------------------------------------------------------------------