# Evidence Collector This project includes modules for collecting evidence regarding Wazuh and VAT. ## Wazuh evidence collector Wazuh evidence collector uses [Wazuh's API](https://documentation.wazuh.com/current/user-manual/api/reference.html) to access information about manager's and agents' system informations and configurations. As an additional measure to ensure correct configuration of [ClamAV](https://www.clamav.net/) (if installed on machine) we also make use of [Elasticsearch's API](https://www.elastic.co/guide/en/elasticsearch/reference/current/search.html) to dirrectly access collected logs - Elastic stack is one of the Wazuh's required components (usually installed on the same machine as Wazuh server, but can be stand alone as well). ## Installation & use 1. Set up your Wazuh development environment 2. Clone this repository 3. Install requirements ``` pip install -r requirements.txt ``` 4. Run test script ``` python3 test.py ``` ### Setting up Wazuh development environment Use [Security Monitoring](https://gitlab.xlab.si/medina/security-monitoring) repository to create and deploy Vagrant box with all required components. ### API User authentication Current implementation has disabled SSL certificate verification & uses simple username/password verification. Production version should change this with cert verification. ### Manual Elasticsearch API testin with cURL Example command for testing the API via CLI: ``` curl --user admin:changeme --insecure -X GET "https://192.168.33.10:9200/wazuh-alerts*/_search?pretty" -H 'Content-Type: application/json' -d' {"query": { "bool": { "must": [{"match": {"predecoder.program_name": "clamd"}}, {"match": {"rule.description": "Clamd restarted"}}, {"match": {"agent.id": "001"}}] } } }' ``` ## Known issues ### Python Elasticsearch library problems with ODFE Latest versions (`7.14.0` & `7.15.0`) of Python Elasticsearch library have problems connecting to Open Distro for Elasticsearch and produce the following error when trying to do so: ``` elasticsearch.exceptions.UnsupportedProductError: The client noticed that the server is not a supported distribution of Elasticsearch ``` To resolve this, downgrade to older package version: ``` pip install 'elasticsearch<7.14.0' ```