feat: initial commit

This commit is contained in:
nikola
2026-05-19 14:53:37 +02:00
commit f8eba4f09a
21 changed files with 1061 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/usr/bin/env bash
set -euo pipefail
TARGET_IP="${1:-}"
if [[ -z "${TARGET_IP}" ]]; then
echo "Usage: $0 <wazuh-vm-ip>" >&2
exit 1
fi
echo "[1/3] Dashboard HTTPS check"
curl -kI "https://${TARGET_IP}" | head -n 1
echo "[2/3] Enrollment port check"
nc -zv "${TARGET_IP}" 1515
echo "[3/3] Agent events port check"
nc -zv "${TARGET_IP}" 1514