Initial commit - Wazuh to Teams workflow integration

This commit is contained in:
arthur
2026-02-11 10:59:55 +01:00
commit d3f7c958d0
4 changed files with 333 additions and 0 deletions
Executable
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
# Wazuh → Teams wrapper; passes all arguments to the Python script
SCRIPT="/var/ossec/integrations/custom-teams.py"
[ ! -f "$SCRIPT" ] && echo "Error: $SCRIPT not found" && exit 1
[ ! -x "$SCRIPT" ] && echo "Error: $SCRIPT not executable" && exit 1
exec python3 "$SCRIPT" "$@"