Malin / wazuh-agent-installer-windows.cmd
0 вподобань
0 форк(-ів)
1 файл(-ів)
Остання активність 2 years ago
| 1 | # from: https://documentation.wazuh.com/current/installation-guide/wazuh-agent/wazuh-agent-package-windows.html |
| 2 | # download installer: https://packages.wazuh.com/4.x/windows/wazuh-agent-4.8.1-1.msi |
| 3 | # run CMD as administrator |
| 4 | # cd to download directory |
| 5 | |
| 6 | wazuh-agent-4.8.1-1.msi /q WAZUH_MANAGER="freak.palmasolutions.net" |
| 7 | |
| 8 | wazuh-agent-4.8.1-1.msi /q WAZUH_MANAGER="192.168.184.204" |
| 9 | |
| 10 | NET START Wazuh |
Malin / install-wazuh-agent-macos.sh
0 вподобань
0 форк(-ів)
1 файл(-ів)
Остання активність 2 years ago
| 1 | # from https://documentation.wazuh.com/current/installation-guide/wazuh-agent/wazuh-agent-package-macos.html |
| 2 | |
| 3 | sudo -s |
| 4 | echo "WAZUH_MANAGER='freak.palmasolutions.net'" > /tmp/wazuh_envs && installer -pkg /Users/malin/Downloads/wazuh-agent-4.8.1-1.intel64.pkg -target / |
| 5 | /Library/Ossec/bin/wazuh-control start |
Malin / remove-wazuh-endpoints.sh
0 вподобань
0 форк(-ів)
1 файл(-ів)
Остання активність 2 years ago
| 1 | # from https://documentation.wazuh.com/current/user-manual/agent/agent-management/remove-agents/remove.html |
| 2 | |
| 3 | for i in $(cat /root/agents.txt); do /var/ossec/bin/manage_agents -r $i; done |