Skip to content

Commit

Permalink
Merge branch 'development' of https://github.com/mmguero-dev/Malcolm
Browse files Browse the repository at this point in the history
  • Loading branch information
mmguero committed Feb 16, 2024
2 parents 98ac2fb + 554210c commit 87ca890
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ While official downloads of the Malcolm installer ISO are not provided, an **uno

| ISO | SHA256 |
|---|---|
| [malcolm-24.02.0.iso](/iso/malcolm-24.02.0.iso) (5.2GiB) | [`xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx`](/iso/malcolm-24.02.0.iso.sha256.txt) |
| [malcolm-24.02.0.iso](/iso/malcolm-24.02.0.iso) (5.1GiB) | [`9d1bd6a7e979e2d80ae17c7a353a95971aeedc621c03e2d8ee5c63b0602666d6`](/iso/malcolm-24.02.0.iso.sha256.txt) |

## Hedgehog Linux

Expand All @@ -26,7 +26,7 @@ While official downloads of the Malcolm installer ISO are not provided, an **uno

| ISO | SHA256 |
|---|---|
| [hedgehog-24.02.0.iso](/iso/hedgehog-24.02.0.iso) (2.4GiB) | [`xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx`](/iso/hedgehog-24.02.0.iso.sha256.txt) |
| [hedgehog-24.02.0.iso](/iso/hedgehog-24.02.0.iso) (2.5GiB) | [`eb505799be029fc0aaa0480612f85df77152d628deed7ee8dba440bc3cfe9fb6`](/iso/hedgehog-24.02.0.iso.sha256.txt) |

### Raspberry Pi 4 Image

Expand Down
11 changes: 6 additions & 5 deletions sensor-raspi/sensor_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -303,15 +303,16 @@ create_user() {

# Set defaults but it is STRONGLY recommended that these be changed before deploying Sensor
local user='sensor'
local group='sensor'
local pass='Hedgehog_Linux'
local root_pass='Hedgehog_Linux_Root'

groupadd "$user"
useradd -m -g sensor -u 1000 -s /bin/bash "$user"
useradd -m -g "$group" -u 1000 -s /bin/bash "$user"
usermod -a -G netdev "$user"

echo -n "${user}:${pass}" | chpasswd --crypt-method YESCRYPT
echo -n "root:${root_pass}" | chpasswd --crypt-method YESCRYPT

}

install_deps() {
Expand Down Expand Up @@ -373,7 +374,7 @@ install_files() {

# Setup MaxMind Geo IP info
mkdir -p /opt/arkime/etc
pushd /opt/arkime >/dev/null 2>&1
pushd /opt/arkime/etc >/dev/null 2>&1
MAXMIND_GEOIP_DB_LICENSE_KEY=""

if [[ -f "$SHARED_DIR/maxmind_license.txt" ]]; then
Expand All @@ -388,8 +389,8 @@ install_files() {
done
fi
fi
curl -s -S -L -o ./etc/ipv4-address-space.csv "https://www.iana.org/assignments/ipv4-address-space/ipv4-address-space.csv"
curl -s -S -L -o ./etc/oui.txt "https://www.wireshark.org/download/automated/data/manuf"
curl -s -S -L -o ./ipv4-address-space.csv "https://www.iana.org/assignments/ipv4-address-space/ipv4-address-space.csv"
curl -s -S -L -o ./oui.txt "https://www.wireshark.org/download/automated/data/manuf"
popd >/dev/null 2>&1

# Prepare Fluentbit and Beats repo GPG keys
Expand Down

0 comments on commit 87ca890

Please sign in to comment.