Skip to content

Instantly share code, notes, and snippets.

View gitpel's full-sized avatar
🎯
Focusing

Konstantin Gimpel gitpel

🎯
Focusing
View GitHub Profile
@gitpel
gitpel / install-of-eset-esmc-7-webconsole-at-lxc-on-ubuntu-18-04.md
Last active January 13, 2021 20:45
Installation of ESET ERA: ESMC 7 & Web Console at LXC (Linux Container) on Ubuntu 18.04 LTS

Installation of ESET ERA: ESMC 7 & Web Console at LXC (Linux Container) on Ubuntu 18.04 LTS

Tested on LXC container with Ubuntu 18.04 LTS

Read about How to install LXC\LXD on Ubuntu: https://linuxcontainers.org/lxd/getting-started-cli/

On LXC\LXD Host Mashine create a containe with Ubuntu 18.04 with name "eset"

lxc launch images:ubuntu/18.04 eset
@gitpel
gitpel / ESET ERA7.1 Detection Exclusion Import File.md
Created November 19, 2019 16:28
ESET ERA7.1 Detection Exclusion Import File

Example of ESET ERA7.1 Detection Exclusion Import File

More about https://help.eset.com/esmc_admin/71/en-US/create_exclusion.html

# {"product":"endpoint","version":"0000000000.0000000000.0000000000","path":"Settings.ExclusionsManagement.DetectionExclusions","columns":["Id","Path","ThreatName","Description","FileHash"]}
00000000-0000-0000-0000-000000000001,C:\*,,"Example of Path",
00000000-0000-0000-0000-000000000002,,"Detection name","Example of SHA1",4e1243bd22c66e76c2ba9eddc1f91394e57f9f83
@gitpel
gitpel / eset-era-7-autoupdate.sh
Last active November 26, 2019 21:03
Auto Update Script for ESET ERA7 Management + WebConsole
#!/bin/bash
cd /eset
ERA_URL=https://download.eset.com/com/eset/apps/business/era/server/linux/latest/server-linux-x86_64.sh
WEBCONSOL_URL=https://download.eset.com/com/eset/apps/business/era/webconsole/latest/era.war
ERA_CONSOLE_PORT=2223
wget -N "$ERA_URL" 2>&1 | grep "not modified on server" && exit 0