R5.html

Report generated on 31-Jul-2023 at 17:12:19 by pytest-html v2.0.1

Environment

Packages {'pytest': '6.2.2', 'pluggy': '0.13.1'}
Platform Linux-5.19.0-46-generic-x86_64-with-glibc2.35
Plugins {'metadata': '2.0.4', 'html': '2.0.1', 'testinfra': '5.0.0'}
Python 3.9.17

Summary

299 tests ran in 3463.83 seconds.

296 passed, 2 skipped, 1 failed, 1 errors, 2 expected failures, 0 unexpected passes
Tests Failed Success XFail Error
test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py 0 26 0 0
test_vulnerability_detector/test_feeds/test_cpe_indexing.py 0 18 0 0
test_vulnerability_detector/test_feeds/test_download_feeds.py 1 23 1 0
test_vulnerability_detector/test_feeds/test_duplicate_feeds.py 0 12 0 0
test_vulnerability_detector/test_feeds/test_import_invalid_feed_type.py 0 8 1 0
test_vulnerability_detector/test_feeds/test_msu_inventory.py 0 1 0 0
test_vulnerability_detector/test_feeds/test_validate_feed_content.py 0 45 0 1
test_vulnerability_detector/test_general_settings/test_enabled.py 0 2 0 0
test_vulnerability_detector/test_general_settings/test_interval.py 0 4 0 0
test_vulnerability_detector/test_general_settings/test_min_full_scan_interval.py 0 1 0 0
test_vulnerability_detector/test_general_settings/test_retry_interval.py 0 2 0 0
test_vulnerability_detector/test_general_settings/test_run_on_start.py 0 2 0 0
test_vulnerability_detector/test_providers/test_enabled.py 0 50 0 0
test_vulnerability_detector/test_providers/test_missing_os.py 0 9 0 0
test_vulnerability_detector/test_providers/test_multiple_provider_feeds.py 0 3 0 0
test_vulnerability_detector/test_providers/test_os.py 0 25 0 0
test_vulnerability_detector/test_providers/test_update_from_year.py 0 7 0 0
test_vulnerability_detector/test_providers/test_update_interval.py 0 8 0 0
test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py 0 14 0 0
test_vulnerability_detector/test_scan_results/test_scan_provider_and_nvd_vulnerabilities.py 0 6 0 0
test_vulnerability_detector/test_scan_results/test_scan_provider_vulnerabilities.py 0 6 0 0
test_vulnerability_detector/test_scan_results/test_scan_vulnerabilities_triaged_null.py 0 1 0 0
test_vulnerability_detector/test_scan_results/test_scan_vulnerability_removal.py 0 8 0 0
test_vulnerability_detector/test_scan_types/test_baseline_scan_type.py 0 2 0 0
test_vulnerability_detector/test_scan_types/test_full_scan_type.py 0 4 0 0
test_vulnerability_detector/test_scan_types/test_partial_scan_type.py 0 4 0 0
test_vulnerability_detector/test_vulnerability_inventory/test_vulnerability_inventory_baseline_scan.py 0 1 0 0
test_vulnerability_detector/test_vulnerability_inventory/test_vulnerability_inventory_full_scan.py 0 2 0 0
test_vulnerability_detector/test_vulnerability_inventory/test_vulnerability_inventory_partial_scan.py 0 2 0 0

Results

Result Time Test Description Duration Markers Links Tier
Error 2023-07-31 19:49:43.958633 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[Red Hat Enterprise Linux0]::setup description: Check if the downloaded XML feeds have the expected format and are XML parseable. 0.31 2
metadata = {'decompressed_file': '/tmp/rhel5.xml', 'description': 'Red Hat Enterprise Linux provider', 'expected_format': 'application/x-bzip2', 'extension': 'bz2', ...}

@pytest.fixture
def manage_file(metadata):
"""Download and clean test files.

Args:
metadata (dict): Feed information which comes from metadata test case.
"""
# Download the file
file.download_file(source_url=metadata['url'], dest_path=metadata['path'])

# Decompress files
if 'application/gzip' in metadata['expected_format']:
file.decompress_gzip(gzip_file_path=metadata['path'], dest_file_path=metadata['decompressed_file'])
elif 'application/x-bzip2' in metadata['expected_format']:
> file.decompress_bz2(bz2_file_path=metadata['path'], dest_file_path=metadata['decompressed_file'])

test_vulnerability_detector/test_feeds/test_validate_feed_content.py:122:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.9/dist-packages/wazuh_testing-4.6.0-py3.9.egg/wazuh_testing/tools/file.py:369: in decompress_bz2
dest.write(bz2.decompress(source.read()))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

data = b'<!doctype html>\n<html class="no-js" lang="en">\n <head>\n <meta charset="utf-8">\n <meta http-equi...class="img-fluid" alt="Red Hat Summit"></a>\n </div>\n </div>\n </div>\n</footer>\n\n\n </body>\n</html>\n'

def decompress(data):
"""Decompress a block of data.

For incremental decompression, use a BZ2Decompressor object instead.
"""
results = []
while data:
decomp = BZ2Decompressor()
try:
> res = decomp.decompress(data)
E OSError: Invalid data stream

/usr/lib/python3.9/bz2.py:347: OSError
Failed 2023-07-31 19:33:19.927356 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[RHEL5] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 151.17 2

Test function details

Extended Summary

test_phases:
- Set a custom Wazuh configuration.
- Restart wazuh-modulesd.
- Check in log that the database provider has been updated successfully.
- Check that the timestamp of the feed metadata does not exceed the established threshold limit.
wazuh_min_version: 4.4.0
tier: 2
parameters:
- configuration:
type: dict
brief: Wazuh configuration data. Needed for set_wazuh_configuration fixture.
- metadata:
type: dict
brief: Wazuh configuration metadata
- set_wazuh_configuration_vdt:
type: fixture
brief: Set the wazuh configuration according to the configuration data.
- truncate_monitored_files:
type: fixture
brief: Truncate all the log files and json alerts files before and after the test execution.
- clean_cve_tables_func:
type: fixture
brief: Clean all the CVE tables before and after running the test.
- restart_modulesd_function:
type: fixture
brief: Restart the wazuh-modulesd daemon.
assertions:
- Check that it starts the feed download.
- Check that the feed is downloaded successfully.
- Check that the feed update date does not exceed a set limit.
input_description:
- The `configuration_download_feeds.yaml` file provides the module configuration for this test.
- The `cases_download_feeds` file provides the test cases.
expected_output:
- r'Starting .* database update'
- r'The update of the .* feed finished successfully'

Parameters

configuration = {'metadata': {'description': 'Red Hat Enterprise Linux provider', 'download_timeout': 150, 'name': 'RHEL5', 'provider_...led': {'value': 'yes'}}], 'section': 'wodle'}, {'elements': [{'disabled': {'value': 'yes'}}], 'section': 'auth'}, ...]}
metadata = {'description': 'Red Hat Enterprise Linux provider', 'download_timeout': 150, 'name': 'RHEL5', 'provider_json_name': 'JSON Red Hat Enterprise Linux', ...}, set_wazuh_configuration_vdt = None
truncate_monitored_files = None, clean_cve_tables_func = None, restart_modulesd_function = None

@pytest.mark.tier(level=2)
@pytest.mark.parametrize('configuration, metadata', zip(configurations, configuration_metadata), ids=case_ids)
def test_download_feeds(configuration, metadata, set_wazuh_configuration_vdt, truncate_monitored_files,
clean_cve_tables_func, restart_modulesd_function):
'''
description: Check if modulesd downloads successfully the feeds from different providers and os, and check that
the feed update date does not exceed a set limit.

test_phases:
- Set a custom Wazuh configuration.
- Restart wazuh-modulesd.
- Check in log that the database provider has been updated successfully.
- Check that the timestamp of the feed metadata does not exceed the established threshold limit.

wazuh_min_version: 4.4.0

tier: 2

parameters:
- configuration:
type: dict
brief: Wazuh configuration data. Needed for set_wazuh_configuration fixture.
- metadata:
type: dict
brief: Wazuh configuration metadata
- set_wazuh_configuration_vdt:
type: fixture
brief: Set the wazuh configuration according to the configuration data.
- truncate_monitored_files:
type: fixture
brief: Truncate all the log files and json alerts files before and after the test execution.
- clean_cve_tables_func:
type: fixture
brief: Clean all the CVE tables before and after running the test.
- restart_modulesd_function:
type: fixture
brief: Restart the wazuh-modulesd daemon.

assertions:
- Check that it starts the feed download.
- Check that the feed is downloaded successfully.
- Check that the feed update date does not exceed a set limit.

input_description:
- The `configuration_download_feeds.yaml` file provides the module configuration for this test.
- The `cases_download_feeds` file provides the test cases.

expected_output:
- r'Starting .* database update'
- r'The update of the .* feed finished successfully'
'''
if metadata['provider_os'] == 'BIONIC':
pytest.xfail(reason='Ubuntu Bionic feed parsing error - Wazuh/Wazuh Issue #13556')

# Check that the feed update has started
evm.check_provider_database_update_start_log(metadata['provider_name'])
# Check that the feed has been updated successfully
> evm.check_provider_database_update_finish_log(provider_name=metadata['provider_name'],
timeout=metadata['download_timeout'])

test_vulnerability_detector/test_feeds/test_download_feeds.py:142:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.9/dist-packages/wazuh_testing-4.6.0-py3.9.egg/wazuh_testing/modules/vulnerability_detector/event_monitor.py:144: in check_provider_database_update_finish_log
check_vuln_detector_event(file_monitor=log_monitor, timeout=timeout,
/usr/local/lib/python3.9/dist-packages/wazuh_testing-4.6.0-py3.9.egg/wazuh_testing/modules/vulnerability_detector/event_monitor.py:54: in check_vuln_detector_event
file_monitor.start(timeout=timeout, update_position=update_position, accum_results=accum_results,
/usr/local/lib/python3.9/dist-packages/wazuh_testing-4.6.0-py3.9.egg/wazuh_testing/tools/monitoring.py:202: in start
self._result = monitor.start(timeout=timeout, callback=callback, accum_results=accum_results,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <wazuh_testing.tools.monitoring.QueueMonitor object at 0x7f5db66f6640>, timeout = 150, callback = <function make_vuln_callback.<locals>.<lambda> at 0x7f5db672df70>, accum_results = 1
update_position = True, timeout_extra = 0, error_message = 'Could not find Red Hat Enterprise Linux 5 feed finished log'

def start(self, timeout=-1, callback=_callback_default, accum_results=1, update_position=True, timeout_extra=0,
error_message=''):
"""Start the queue monitoring until the stop method is called."""
if not self._continue:
self._continue = True
self._abort = False
result = None

while self._continue:
if self._abort:
self.stop()
if error_message:
logger.error(error_message)
logger.error(f"Results accumulated: "
f"{len(result) if isinstance(result, list) else 0}")
logger.error(f"Results expected: {accum_results}")
> raise TimeoutError(error_message)
E TimeoutError: Could not find Red Hat Enterprise Linux 5 feed finished log

/usr/local/lib/python3.9/dist-packages/wazuh_testing-4.6.0-py3.9.egg/wazuh_testing/tools/monitoring.py:470: TimeoutError
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:30:48 wazuh-modulesd[253625] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:30:48 wazuh-modulesd[253625] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:30:48 wazuh-modulesd[253625] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:30:48 wazuh-modulesd[253625] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:30:48 wazuh-modulesd[253625] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (5) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
------------------------------Captured stderr call------------------------------
2023-07-31 16:33:19,792 - wazuh_testing - ERROR - Could not find Red Hat Enterprise Linux 5 feed finished log 2023-07-31 16:33:19,792 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:33:19,792 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Red Hat Enterprise Linux 5 feed finished log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
XFailed 2023-07-31 19:34:45.055675 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[BIONIC] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 0.00 2
configuration = {'metadata': {'description': 'Canonical provider', 'download_timeout': 120, 'name': 'BIONIC', 'provider_name': 'Ubuntu...led': {'value': 'yes'}}], 'section': 'wodle'}, {'elements': [{'disabled': {'value': 'yes'}}], 'section': 'auth'}, ...]}
metadata = {'description': 'Canonical provider', 'download_timeout': 120, 'name': 'BIONIC', 'provider_name': 'Ubuntu Bionic', ...}, set_wazuh_configuration_vdt = None, truncate_monitored_files = None
clean_cve_tables_func = None, restart_modulesd_function = None

@pytest.mark.tier(level=2)
@pytest.mark.parametrize('configuration, metadata', zip(configurations, configuration_metadata), ids=case_ids)
def test_download_feeds(configuration, metadata, set_wazuh_configuration_vdt, truncate_monitored_files,
clean_cve_tables_func, restart_modulesd_function):
'''
description: Check if modulesd downloads successfully the feeds from different providers and os, and check that
the feed update date does not exceed a set limit.

test_phases:
- Set a custom Wazuh configuration.
- Restart wazuh-modulesd.
- Check in log that the database provider has been updated successfully.
- Check that the timestamp of the feed metadata does not exceed the established threshold limit.

wazuh_min_version: 4.4.0

tier: 2

parameters:
- configuration:
type: dict
brief: Wazuh configuration data. Needed for set_wazuh_configuration fixture.
- metadata:
type: dict
brief: Wazuh configuration metadata
- set_wazuh_configuration_vdt:
type: fixture
brief: Set the wazuh configuration according to the configuration data.
- truncate_monitored_files:
type: fixture
brief: Truncate all the log files and json alerts files before and after the test execution.
- clean_cve_tables_func:
type: fixture
brief: Clean all the CVE tables before and after running the test.
- restart_modulesd_function:
type: fixture
brief: Restart the wazuh-modulesd daemon.

assertions:
- Check that it starts the feed download.
- Check that the feed is downloaded successfully.
- Check that the feed update date does not exceed a set limit.

input_description:
- The `configuration_download_feeds.yaml` file provides the module configuration for this test.
- The `cases_download_feeds` file provides the test cases.

expected_output:
- r'Starting .* database update'
- r'The update of the .* feed finished successfully'
'''
if metadata['provider_os'] == 'BIONIC':
> pytest.xfail(reason='Ubuntu Bionic feed parsing error - Wazuh/Wazuh Issue #13556')
E _pytest.outcomes.XFailed: Ubuntu Bionic feed parsing error - Wazuh/Wazuh Issue #13556

test_vulnerability_detector/test_feeds/test_download_feeds.py:137: XFailed
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:34:45 wazuh-modulesd[255394] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:34:45 wazuh-modulesd[255394] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:34:45 wazuh-modulesd[255394] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:34:45 wazuh-modulesd[255394] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:34:45 wazuh-modulesd[255394] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (bionic) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
XFailed 2023-07-31 19:48:09.329166 test_vulnerability_detector/test_feeds/test_import_invalid_feed_type.py::test_import_invalid_feed_type[NVD - MP3] description: Check the vulnerability detector behavior when importing unexpected file types as feeds. 0.00 server 2
configuration = {'sections': [{'elements': [{'enabled': {'value': 'yes'}}, {'run_on_start': {'value': 'yes'}}, {'provider': {'attribut...check'}, {'attributes': [{'name': 'syscollector'}], 'elements': [{'disabled': {'value': 'yes'}}], 'section': 'wodle'}]}
metadata = {'custom_feed_url': 'https://s3.amazonaws.com/ci.wazuh.com/qa/testing_files/dummy_files/dummy.mp3', 'description': 'Ch...and parsing of JPG file as invalid feed in the NVD', 'name': 'NVD - MP3', 'provider_feed_names': ['nvd provider'], ...}
set_wazuh_configuration_vdt = None, truncate_monitored_files = None, clean_cve_tables_func = None, restart_modulesd_function = None

@pytest.mark.tier(level=2)
@pytest.mark.parametrize('configuration, metadata', zip(configurations, configuration_metadata), ids=case_ids)
def test_import_invalid_feed_type(configuration, metadata, set_wazuh_configuration_vdt, truncate_monitored_files,
clean_cve_tables_func, restart_modulesd_function):
'''
description: Check the vulnerability detector behavior when importing unexpected file types as feeds.

test_phases:
- Set a custom Wazuh configuration, with custom URL feeds which refer to files of unexpected type.
- Check the error when updating the provider data.
- Check the error when updating the CVE database.
- Check that no junk data has been inserted into the database.
- Check that wazuh-modulesd is running (it has not crashed after parsing unexpected file types).

wazuh_min_version: 4.4.0

tier: 2

parameters:
- configuration:
type: dict
brief: Configuration loaded from `configuration_template`.
- metadata:
type: dict
brief: Test case metadata.
- set_wazuh_configuration_vdt:
type: fixture
brief: Set wazuh configuration.
- truncate_monitored_files:
type: fixture
brief: Truncate all the log files and json alerts files before and after the test execution.
- clean_cve_tables_func:
type: fixture
brief: Clean all CVE tables.
- restart_modulesd_function:
type: fixture
brief: Restart wazuh-modulesd daemon before starting a test, and stop it after finishing.

assertions:
- Check the error when updating the provider database.
- Check the error when updating the CVE database.
- Check that no junk data has been inserted into the database.
- Check that wazuh-modulesd is running (it has not crashed after parsing unexpected file types).

input_description:
- The `configuration_import_invalid_feed_type.yaml` file provides the module configuration for this test.
- The `cases_import_invalid_feed_type` file provides the test cases.

expected_output:
- r"Failed when updating '{provider_feed_name}' database"
- r"ERROR: .* CVE database could not be updated."
'''
if metadata['target'] == 'nvd':
> pytest.xfail(reason='no error reported when importing invalid NVD feed. '
'https://github.com/wazuh/wazuh/issues/5210')
E _pytest.outcomes.XFailed: no error reported when importing invalid NVD feed. https://github.com/wazuh/wazuh/issues/5210

test_vulnerability_detector/test_feeds/test_import_invalid_feed_type.py:145: XFailed
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:48:09 wazuh-modulesd[262710] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:48:09 wazuh-modulesd[262710] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:48:09 wazuh-modulesd[262710] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:48:09 wazuh-modulesd[262710] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:48:09 wazuh-modulesd[262710] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: 'none' | Multi url: 'https://s3.amazonaws.com/ci.wazuh.com/qa/testing_files/dummy_files/dummy.mp3' | Update since: 2010 | Timeout: 300s
Skipped 2023-07-31 20:03:16.267848 test_vulnerability_detector/test_scan_results/test_scan_provider_and_nvd_vulnerabilities.py::test_scan_provider_and_nvd_vulnerabilities[Canonical] description: Check if the vulnerability alerts are reported from NVD and OVAL feed sources. 0.00 server 1
('/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/test_scan_provider_and_nvd_vulnerabilities.py', 146, 'Skipped: OVAL does not have any vulnerability yet, it is not possible to scan the Ubuntu 22 agent.')
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:03:16 wazuh-modulesd[285367] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:03:16 wazuh-modulesd[285367] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:03:16 wazuh-modulesd[285367] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:03:16 wazuh-modulesd[285367] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:03:16 wazuh-modulesd[285367] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (jammy) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/canonical/custom_canonical_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:03:16 wazuh-modulesd[285367] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Skipped 2023-07-31 20:04:39.350675 test_vulnerability_detector/test_scan_results/test_scan_provider_vulnerabilities.py::test_scan_provider_vulnerabilities[Canonical] description: Check if the vulnerability alerts are reported making vulnerabilities found only by OVAL and not NVD. 0.00 server 1
('/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/test_scan_provider_vulnerabilities.py', 145, 'Skipped: OVAL does not have any vulnerability yet, it is not possible to scan the Ubuntu 22 agent.')
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:04:39 wazuh-modulesd[287256] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:04:39 wazuh-modulesd[287256] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:04:39 wazuh-modulesd[287256] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:04:39 wazuh-modulesd[287256] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:04:39 wazuh-modulesd[287256] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (jammy) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/canonical/custom_canonical_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:04:39 wazuh-modulesd[287256] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_alternative_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:14:45.309982 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_wrong_tags[Wrong source vendor fields] description: Check for invalid tags in the cpe_helper.json file. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:14:44 wazuh-modulesd[244743] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:14:44 wazuh-modulesd[244743] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:14:44 wazuh-modulesd[244743] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:14:44 wazuh-modulesd[244743] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:14:44 wazuh-modulesd[244743] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:14:44 wazuh-modulesd[244743] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:14:54.047687 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_wrong_tags[Wrong translation product fields] description: Check for invalid tags in the cpe_helper.json file. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:14:53 wazuh-modulesd[244898] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:14:53 wazuh-modulesd[244898] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:14:53 wazuh-modulesd[244898] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:14:53 wazuh-modulesd[244898] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:14:53 wazuh-modulesd[244898] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:14:53 wazuh-modulesd[244898] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:15:10.075433 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_wrong_tags[Wrong version field] description: Check for invalid tags in the cpe_helper.json file. 7.02 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:15:03 wazuh-modulesd[245043] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:15:03 wazuh-modulesd[245043] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:15:03 wazuh-modulesd[245043] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:15:03 wazuh-modulesd[245043] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:15:03 wazuh-modulesd[245043] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:15:03 wazuh-modulesd[245043] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:15:19.133894 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_wrong_tags[Wrong format_version fields] description: Check for invalid tags in the cpe_helper.json file. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:15:18 wazuh-modulesd[245203] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:15:18 wazuh-modulesd[245203] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:15:18 wazuh-modulesd[245203] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:15:18 wazuh-modulesd[245203] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:15:18 wazuh-modulesd[245203] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:15:18 wazuh-modulesd[245203] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:15:28.127818 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_wrong_tags[Wrong update_date fields] description: Check for invalid tags in the cpe_helper.json file. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:15:27 wazuh-modulesd[245345] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:15:27 wazuh-modulesd[245345] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:15:27 wazuh-modulesd[245345] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:15:27 wazuh-modulesd[245345] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:15:27 wazuh-modulesd[245345] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:15:27 wazuh-modulesd[245345] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:17:16.304388 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_wrong_tags[Wrong target field] description: Check for invalid tags in the cpe_helper.json file. 100.13 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:15:36 wazuh-modulesd[245477] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:15:36 wazuh-modulesd[245477] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:15:36 wazuh-modulesd[245477] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:15:36 wazuh-modulesd[245477] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:15:36 wazuh-modulesd[245477] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:15:36 wazuh-modulesd[245477] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
------------------------------Captured stderr call------------------------------
2023-07-31 16:15:56,184 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-0.* from the agent '001' was indexed 2023-07-31 16:15:56,184 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:15:56,184 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:16:16,209 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-1.* from the agent '001' was indexed 2023-07-31 16:16:16,209 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:16:16,210 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:16:36,234 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-2.* from the agent '001' was indexed 2023-07-31 16:16:36,234 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:16:36,234 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:16:56,258 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-3.* from the agent '001' was indexed 2023-07-31 16:16:56,259 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:16:56,259 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:17:16,285 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-4.* from the agent '001' was indexed 2023-07-31 16:17:16,285 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:17:16,285 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-0.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-1.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-2.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-3.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-4.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:17:28.512926 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_wrong_values[Wrong version value] description: Check for invalid values in the cpe_helper.json file. 5.03 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:17:23 wazuh-modulesd[246285] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:17:23 wazuh-modulesd[246285] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:17:23 wazuh-modulesd[246285] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:17:23 wazuh-modulesd[246285] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:17:23 wazuh-modulesd[246285] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:17:23 wazuh-modulesd[246285] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:17:42.779571 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_wrong_values[Wrong update_date value] description: Check for invalid values in the cpe_helper.json file. 5.51 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:17:37 wazuh-modulesd[246454] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:17:37 wazuh-modulesd[246454] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:17:37 wazuh-modulesd[246454] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:17:37 wazuh-modulesd[246454] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:17:37 wazuh-modulesd[246454] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:17:37 wazuh-modulesd[246454] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:17:56.242305 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_wrong_values[Wrong target value] description: Check for invalid values in the cpe_helper.json file. 5.01 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:17:51 wazuh-modulesd[246607] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:17:51 wazuh-modulesd[246607] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:17:51 wazuh-modulesd[246607] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:17:51 wazuh-modulesd[246607] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:17:51 wazuh-modulesd[246607] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:17:51 wazuh-modulesd[246607] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:18:05.305820 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_wrong_values[Wrong format_version value] description: Check for invalid values in the cpe_helper.json file. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:18:04 wazuh-modulesd[246789] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:18:04 wazuh-modulesd[246789] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:18:04 wazuh-modulesd[246789] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:18:04 wazuh-modulesd[246789] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:18:04 wazuh-modulesd[246789] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:18:04 wazuh-modulesd[246789] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:19:53.979812 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_wrong_values[Wrong source vendor value] description: Check for invalid values in the cpe_helper.json file. 100.63 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:18:13 wazuh-modulesd[246919] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:18:13 wazuh-modulesd[246919] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:18:13 wazuh-modulesd[246919] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:18:13 wazuh-modulesd[246919] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:18:13 wazuh-modulesd[246919] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:18:13 wazuh-modulesd[246919] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
------------------------------Captured stderr call------------------------------
2023-07-31 16:18:33,360 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-0.* from the agent '001' was indexed 2023-07-31 16:18:33,360 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:18:33,375 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:18:53,891 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-1.* from the agent '001' was indexed 2023-07-31 16:18:53,891 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:18:53,892 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:19:13,909 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-2.* from the agent '001' was indexed 2023-07-31 16:19:13,909 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:19:13,909 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:19:33,937 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-3.* from the agent '001' was indexed 2023-07-31 16:19:33,938 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:19:33,938 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:19:53,961 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-4.* from the agent '001' was indexed 2023-07-31 16:19:53,961 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:19:53,961 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-0.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-1.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-2.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-3.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-4.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:21:42.465176 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_wrong_values[Wrong source product value] description: Check for invalid values in the cpe_helper.json file. 100.12 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:20:02 wazuh-modulesd[247521] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:20:02 wazuh-modulesd[247521] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:20:02 wazuh-modulesd[247521] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:20:02 wazuh-modulesd[247521] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:20:02 wazuh-modulesd[247521] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:20:02 wazuh-modulesd[247521] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
------------------------------Captured stderr call------------------------------
2023-07-31 16:20:22,352 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-0.* from the agent '001' was indexed 2023-07-31 16:20:22,352 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:20:22,352 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:20:42,380 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-1.* from the agent '001' was indexed 2023-07-31 16:20:42,380 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:20:42,380 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:21:02,396 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-2.* from the agent '001' was indexed 2023-07-31 16:21:02,397 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:21:02,397 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:21:22,421 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-3.* from the agent '001' was indexed 2023-07-31 16:21:22,421 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:21:22,421 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:21:42,447 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-4.* from the agent '001' was indexed 2023-07-31 16:21:42,447 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:21:42,447 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-0.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-1.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-2.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-3.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-4.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:21:51.744036 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_wrong_values[Wrong action value] description: Check for invalid values in the cpe_helper.json file. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:21:50 wazuh-modulesd[248177] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:21:50 wazuh-modulesd[248177] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:21:50 wazuh-modulesd[248177] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:21:50 wazuh-modulesd[248177] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:21:50 wazuh-modulesd[248177] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:21:50 wazuh-modulesd[248177] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:22:05.525149 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_missing_field[Missing version field] description: Check for log when there is a missing field in the cpe_helper.json file. 6.01 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:21:59 wazuh-modulesd[248306] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:21:59 wazuh-modulesd[248306] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:21:59 wazuh-modulesd[248306] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:21:59 wazuh-modulesd[248306] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:21:59 wazuh-modulesd[248306] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:21:59 wazuh-modulesd[248306] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:22:17.734718 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_missing_field[Missing format_version field] description: Check for log when there is a missing field in the cpe_helper.json file. 4.01 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:22:13 wazuh-modulesd[248461] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:22:13 wazuh-modulesd[248461] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:22:13 wazuh-modulesd[248461] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:22:13 wazuh-modulesd[248461] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:22:13 wazuh-modulesd[248461] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:22:13 wazuh-modulesd[248461] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:22:30.230900 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_missing_field[Missing update_date field] description: Check for log when there is a missing field in the cpe_helper.json file. 4.01 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:22:26 wazuh-modulesd[248609] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:22:26 wazuh-modulesd[248609] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:22:26 wazuh-modulesd[248609] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:22:26 wazuh-modulesd[248609] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:22:26 wazuh-modulesd[248609] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:22:26 wazuh-modulesd[248609] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:24:19.038698 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_missing_field[Missing target field] description: Check for log when there is a missing field in the cpe_helper.json file. 100.11 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:22:38 wazuh-modulesd[248750] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:22:38 wazuh-modulesd[248750] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:22:38 wazuh-modulesd[248750] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:22:38 wazuh-modulesd[248750] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:22:38 wazuh-modulesd[248750] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:22:38 wazuh-modulesd[248750] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
------------------------------Captured stderr call------------------------------
2023-07-31 16:22:58,931 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-0.* from the agent '001' was indexed 2023-07-31 16:22:58,931 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:22:58,931 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:23:18,952 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-1.* from the agent '001' was indexed 2023-07-31 16:23:18,952 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:23:18,952 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:23:38,975 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-2.* from the agent '001' was indexed 2023-07-31 16:23:38,975 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:23:38,975 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:23:58,997 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-3.* from the agent '001' was indexed 2023-07-31 16:23:58,997 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:23:58,998 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:24:19,019 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-4.* from the agent '001' was indexed 2023-07-31 16:24:19,019 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:24:19,019 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-0.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-1.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-2.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-3.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-4.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:26:07.401255 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_missing_field[Missing action field] description: Check for log when there is a missing field in the cpe_helper.json file. 100.12 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:24:27 wazuh-modulesd[249313] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:24:27 wazuh-modulesd[249313] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:24:27 wazuh-modulesd[249313] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:24:27 wazuh-modulesd[249313] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:24:27 wazuh-modulesd[249313] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:24:27 wazuh-modulesd[249313] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
------------------------------Captured stderr call------------------------------
2023-07-31 16:24:47,286 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-0.* from the agent '001' was indexed 2023-07-31 16:24:47,287 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:24:47,287 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:25:07,317 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-1.* from the agent '001' was indexed 2023-07-31 16:25:07,317 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:25:07,318 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:25:27,334 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-2.* from the agent '001' was indexed 2023-07-31 16:25:27,334 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:25:27,334 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:25:47,357 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-3.* from the agent '001' was indexed 2023-07-31 16:25:47,357 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:25:47,358 - wazuh_testing - ERROR - Results expected: 1 2023-07-31 16:26:07,383 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-4.* from the agent '001' was indexed 2023-07-31 16:26:07,383 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:26:07,383 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-0.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-1.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-2.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-3.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1 ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: The CPE .*a:wazuh-mocking:custom-package-4.* from the agent '001' was indexed ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:26:20.644635 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_missing_field[Missing vendor field] description: Check for log when there is a missing field in the cpe_helper.json file. 4.51 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:26:16 wazuh-modulesd[249938] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:26:16 wazuh-modulesd[249938] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:26:16 wazuh-modulesd[249938] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:26:16 wazuh-modulesd[249938] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:26:16 wazuh-modulesd[249938] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:26:16 wazuh-modulesd[249938] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:26:34.708579 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_missing_field[Missing product field] description: Check for log when there is a missing field in the cpe_helper.json file. 4.51 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:26:30 wazuh-modulesd[250111] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:26:30 wazuh-modulesd[250111] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:26:30 wazuh-modulesd[250111] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:26:30 wazuh-modulesd[250111] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:26:30 wazuh-modulesd[250111] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:26:30 wazuh-modulesd[250111] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:26:48.348765 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_empty_fields[Missing vendor field] description: Check if the packages are indexed in the database by checking the respective log in the ossec.log file,. and if the alert of the vulnerable package comes out when some tag are empty. 5.01 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:26:43 wazuh-modulesd[250274] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:26:43 wazuh-modulesd[250274] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:26:43 wazuh-modulesd[250274] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:26:43 wazuh-modulesd[250274] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:26:43 wazuh-modulesd[250274] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:26:43 wazuh-modulesd[250274] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:27:02.364557 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_empty_fields[Missing vendor and version fields] description: Check if the packages are indexed in the database by checking the respective log in the ossec.log file,. and if the alert of the vulnerable package comes out when some tag are empty. 5.51 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:26:56 wazuh-modulesd[250423] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:26:56 wazuh-modulesd[250423] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:26:56 wazuh-modulesd[250423] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:26:56 wazuh-modulesd[250423] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:26:56 wazuh-modulesd[250423] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:26:56 wazuh-modulesd[250423] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:27:16.366928 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_empty_fields[Missing set_version_if_product_matches action field] description: Check if the packages are indexed in the database by checking the respective log in the ossec.log file,. and if the alert of the vulnerable package comes out when some tag are empty. 5.51 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:27:10 wazuh-modulesd[250575] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:27:10 wazuh-modulesd[250575] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:27:10 wazuh-modulesd[250575] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:27:10 wazuh-modulesd[250575] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:27:10 wazuh-modulesd[250575] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:27:10 wazuh-modulesd[250575] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:27:30.317053 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_empty_fields[Replace_vendor instead of set_version_if_product_matches action fields] description: Check if the packages are indexed in the database by checking the respective log in the ossec.log file,. and if the alert of the vulnerable package comes out when some tag are empty. 5.51 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:27:24 wazuh-modulesd[250750] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:27:24 wazuh-modulesd[250750] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:27:24 wazuh-modulesd[250750] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:27:24 wazuh-modulesd[250750] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:27:24 wazuh-modulesd[250750] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:27:24 wazuh-modulesd[250750] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:27:45.621115 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_empty_fields[Missing all source fields] description: Check if the packages are indexed in the database by checking the respective log in the ossec.log file,. and if the alert of the vulnerable package comes out when some tag are empty. 5.51 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:27:40 wazuh-modulesd[250928] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:27:40 wazuh-modulesd[250928] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:27:40 wazuh-modulesd[250928] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:27:40 wazuh-modulesd[250928] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:27:40 wazuh-modulesd[250928] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:27:40 wazuh-modulesd[250928] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:27:58.312683 test_vulnerability_detector/test_cpe_helper/test_cpe_helper.py::test_cpe_indexing_empty_vendor_version[Missing all the source fields and version translation field] description: Check that when vendor and version tags are empty, and the action tag is not the correct to. extract the version field, the package cannot be indexed. 4.01 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:27:54 wazuh-modulesd[251088] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:27:54 wazuh-modulesd[251088] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:27:54 wazuh-modulesd[251088] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:27:54 wazuh-modulesd[251088] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:27:54 wazuh-modulesd[251088] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:27:54 wazuh-modulesd[251088] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_cpe_helper/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:28:09.070030 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_packages[WINDOWS] description: Check that the CPE helper info related to the packages data is indexed. 2.01 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:28:07 wazuh-modulesd[251257] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:28:07 wazuh-modulesd[251257] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:28:07 wazuh-modulesd[251257] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:28:07 wazuh-modulesd[251257] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:28:07 wazuh-modulesd[251257] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:28:18.327828 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_XP] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:28:17 wazuh-modulesd[251392] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:28:17 wazuh-modulesd[251392] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:28:17 wazuh-modulesd[251392] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:28:17 wazuh-modulesd[251392] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:28:17 wazuh-modulesd[251392] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:28:17 wazuh-modulesd[251392] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:28:27.555227 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_VISTA] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:28:26 wazuh-modulesd[251521] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:28:26 wazuh-modulesd[251521] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:28:26 wazuh-modulesd[251521] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:28:26 wazuh-modulesd[251521] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:28:26 wazuh-modulesd[251521] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:28:26 wazuh-modulesd[251521] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:28:36.815750 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_7] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:28:35 wazuh-modulesd[251653] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:28:35 wazuh-modulesd[251653] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:28:35 wazuh-modulesd[251653] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:28:35 wazuh-modulesd[251653] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:28:35 wazuh-modulesd[251653] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:28:35 wazuh-modulesd[251653] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:28:46.028832 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_8] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:28:45 wazuh-modulesd[251785] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:28:45 wazuh-modulesd[251785] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:28:45 wazuh-modulesd[251785] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:28:45 wazuh-modulesd[251785] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:28:45 wazuh-modulesd[251785] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:28:45 wazuh-modulesd[251785] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:28:55.009172 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_8_1] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:28:53 wazuh-modulesd[251914] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:28:53 wazuh-modulesd[251914] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:28:53 wazuh-modulesd[251914] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:28:53 wazuh-modulesd[251914] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:28:53 wazuh-modulesd[251914] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:28:53 wazuh-modulesd[251914] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:29:03.993004 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_10] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:29:02 wazuh-modulesd[252046] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:29:02 wazuh-modulesd[252046] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:29:02 wazuh-modulesd[252046] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:29:02 wazuh-modulesd[252046] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:29:02 wazuh-modulesd[252046] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:29:02 wazuh-modulesd[252046] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:29:13.252580 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_11] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:29:12 wazuh-modulesd[252188] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:29:12 wazuh-modulesd[252188] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:29:12 wazuh-modulesd[252188] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:29:12 wazuh-modulesd[252188] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:29:12 wazuh-modulesd[252188] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:29:12 wazuh-modulesd[252188] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:29:23.568759 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_SERVER_2003] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:29:22 wazuh-modulesd[252335] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:29:22 wazuh-modulesd[252335] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:29:22 wazuh-modulesd[252335] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:29:22 wazuh-modulesd[252335] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:29:22 wazuh-modulesd[252335] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:29:22 wazuh-modulesd[252335] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:29:32.338649 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_SERVER_2003_R2] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:29:31 wazuh-modulesd[252467] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:29:31 wazuh-modulesd[252467] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:29:31 wazuh-modulesd[252467] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:29:31 wazuh-modulesd[252467] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:29:31 wazuh-modulesd[252467] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:29:31 wazuh-modulesd[252467] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:29:41.282683 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_SERVER_2008] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:29:40 wazuh-modulesd[252595] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:29:40 wazuh-modulesd[252595] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:29:40 wazuh-modulesd[252595] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:29:40 wazuh-modulesd[252595] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:29:40 wazuh-modulesd[252595] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:29:40 wazuh-modulesd[252595] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:29:50.491425 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_SERVER_2008_R2] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:29:49 wazuh-modulesd[252722] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:29:49 wazuh-modulesd[252722] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:29:49 wazuh-modulesd[252722] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:29:49 wazuh-modulesd[252722] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:29:49 wazuh-modulesd[252722] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:29:49 wazuh-modulesd[252722] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:29:59.778768 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_SERVER_2012] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:29:58 wazuh-modulesd[252874] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:29:58 wazuh-modulesd[252874] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:29:58 wazuh-modulesd[252874] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:29:58 wazuh-modulesd[252874] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:29:58 wazuh-modulesd[252874] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:29:58 wazuh-modulesd[252874] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:30:08.855987 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_SERVER_2012_R2] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:30:07 wazuh-modulesd[253003] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:30:07 wazuh-modulesd[253003] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:30:07 wazuh-modulesd[253003] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:30:07 wazuh-modulesd[253003] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:30:07 wazuh-modulesd[253003] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:30:07 wazuh-modulesd[253003] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:30:17.814589 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_SERVER_2016] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:30:16 wazuh-modulesd[253131] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:30:16 wazuh-modulesd[253131] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:30:16 wazuh-modulesd[253131] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:30:16 wazuh-modulesd[253131] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:30:16 wazuh-modulesd[253131] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:30:16 wazuh-modulesd[253131] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:30:27.039192 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_SERVER_2019] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:30:26 wazuh-modulesd[253262] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:30:26 wazuh-modulesd[253262] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:30:26 wazuh-modulesd[253262] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:30:26 wazuh-modulesd[253262] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:30:26 wazuh-modulesd[253262] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:30:26 wazuh-modulesd[253262] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:30:36.318369 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_SERVER_2022_1] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:30:35 wazuh-modulesd[253389] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:30:35 wazuh-modulesd[253389] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:30:35 wazuh-modulesd[253389] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:30:35 wazuh-modulesd[253389] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:30:35 wazuh-modulesd[253389] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:30:35 wazuh-modulesd[253389] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:30:45.456823 test_vulnerability_detector/test_feeds/test_cpe_indexing.py::test_cpe_indexing_system[WINDOWS_SERVER_2022_2] description: Check that the CPE helper info related to the system data is indexed. Tested for each Windows version. 1.00 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:30:44 wazuh-modulesd[253532] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:30:44 wazuh-modulesd[253532] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:30:44 wazuh-modulesd[253532] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:30:44 wazuh-modulesd[253532] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:30:44 wazuh-modulesd[253532] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 16:30:44 wazuh-modulesd[253532] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:33:37.359046 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[RHEL6] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 13.28 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:33:24 wazuh-modulesd[254469] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:33:24 wazuh-modulesd[254469] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:33:24 wazuh-modulesd[254469] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:33:24 wazuh-modulesd[254469] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:33:24 wazuh-modulesd[254469] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (6) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:33:58.858877 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[RHEL7] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 17.06 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:33:41 wazuh-modulesd[254675] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:33:41 wazuh-modulesd[254675] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:33:41 wazuh-modulesd[254675] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:33:41 wazuh-modulesd[254675] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:33:41 wazuh-modulesd[254675] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (7) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:34:15.875128 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[RHEL8] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 13.48 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:34:02 wazuh-modulesd[254888] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:34:02 wazuh-modulesd[254888] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:34:02 wazuh-modulesd[254888] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:34:02 wazuh-modulesd[254888] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:34:02 wazuh-modulesd[254888] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:34:28.948870 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[TRUSTY] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 9.51 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:34:19 wazuh-modulesd[255088] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:34:19 wazuh-modulesd[255088] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:34:19 wazuh-modulesd[255088] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:34:19 wazuh-modulesd[255088] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:34:19 wazuh-modulesd[255088] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (trusty) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:34:41.624127 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[XENIAL] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 9.27 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:34:32 wazuh-modulesd[255235] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:34:32 wazuh-modulesd[255235] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:34:32 wazuh-modulesd[255235] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:34:32 wazuh-modulesd[255235] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:34:32 wazuh-modulesd[255235] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (xenial) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:34:58.625231 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[FOCAL] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 10.35 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:34:48 wazuh-modulesd[255483] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:34:48 wazuh-modulesd[255483] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:34:48 wazuh-modulesd[255483] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:34:48 wazuh-modulesd[255483] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:34:48 wazuh-modulesd[255483] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (focal) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:35:09.992884 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[JAMMY] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 8.01 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:35:01 wazuh-modulesd[255661] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:35:01 wazuh-modulesd[255661] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:35:01 wazuh-modulesd[255661] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:35:01 wazuh-modulesd[255661] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:35:01 wazuh-modulesd[255661] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (jammy) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:35:26.685362 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[BUSTER] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 13.35 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:35:13 wazuh-modulesd[255798] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:35:13 wazuh-modulesd[255798] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:35:13 wazuh-modulesd[255798] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:35:13 wazuh-modulesd[255798] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:35:13 wazuh-modulesd[255798] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added debian (buster) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:35:42.383796 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[BULLSEYE] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 12.35 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:35:30 wazuh-modulesd[255960] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:35:30 wazuh-modulesd[255960] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:35:30 wazuh-modulesd[255960] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:35:30 wazuh-modulesd[255960] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:35:30 wazuh-modulesd[255960] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added debian (bullseye) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:35:50.080181 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[ARCH] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 4.34 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:35:45 wazuh-modulesd[256117] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:35:45 wazuh-modulesd[256117] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:35:45 wazuh-modulesd[256117] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:35:45 wazuh-modulesd[256117] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:35:45 wazuh-modulesd[256117] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'arch' provider at 'vulnerability-detector' 2023/07/31 16:35:45 wazuh-modulesd[256117] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added arch feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s
Passed 2023-07-31 19:35:55.658907 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[ALAS] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 2.34 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:35:53 wazuh-modulesd[256242] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:35:53 wazuh-modulesd[256242] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:35:53 wazuh-modulesd[256242] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:35:53 wazuh-modulesd[256242] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:35:53 wazuh-modulesd[256242] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:36:01.307053 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[ALAS-2] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 2.34 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:35:58 wazuh-modulesd[256358] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:35:58 wazuh-modulesd[256358] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:35:58 wazuh-modulesd[256358] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:35:58 wazuh-modulesd[256358] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:35:58 wazuh-modulesd[256358] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux-2) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:36:06.934519 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[ALAS-2022] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 2.34 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:36:04 wazuh-modulesd[256488] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:36:04 wazuh-modulesd[256488] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:36:04 wazuh-modulesd[256488] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:36:04 wazuh-modulesd[256488] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:36:04 wazuh-modulesd[256488] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux-2022) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:41:32.398845 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[NVD] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 322.20 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:36:10 wazuh-modulesd[256606] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:36:10 wazuh-modulesd[256606] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:36:10 wazuh-modulesd[256606] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:36:10 wazuh-modulesd[256606] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:36:10 wazuh-modulesd[256606] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'nvd' provider at 'vulnerability-detector' 2023/07/31 16:36:10 wazuh-modulesd[256606] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: 'none' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:41:44.144746 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[MSU] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 5.34 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:41:38 wazuh-modulesd[258288] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:41:38 wazuh-modulesd[258288] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:41:38 wazuh-modulesd[258288] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:41:38 wazuh-modulesd[258288] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:41:38 wazuh-modulesd[258288] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'msu' provider at 'vulnerability-detector' 2023/07/31 16:41:38 wazuh-modulesd[258288] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s
Passed 2023-07-31 19:41:59.344217 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[SUSE Linux Enterprise Server 11] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 10.51 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:41:48 wazuh-modulesd[258467] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:41:48 wazuh-modulesd[258467] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:41:48 wazuh-modulesd[258467] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:41:48 wazuh-modulesd[258467] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:41:48 wazuh-modulesd[258467] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (11-server) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:42:28.139385 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[SUSE Linux Enterprise Server 12] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 25.03 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:42:03 wazuh-modulesd[258604] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:42:03 wazuh-modulesd[258604] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:42:03 wazuh-modulesd[258604] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:42:03 wazuh-modulesd[258604] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:42:03 wazuh-modulesd[258604] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (12-server) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:43:13.836367 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[SUSE Linux Enterprise Server 15] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 41.04 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:42:32 wazuh-modulesd[258803] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:42:32 wazuh-modulesd[258803] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:42:32 wazuh-modulesd[258803] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:42:32 wazuh-modulesd[258803] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:42:32 wazuh-modulesd[258803] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (15-server) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:43:21.151320 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[SUSE Linux Enterprise Desktop 11] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 2.00 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:43:19 wazuh-modulesd[259105] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:43:19 wazuh-modulesd[259105] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:43:19 wazuh-modulesd[259105] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:43:19 wazuh-modulesd[259105] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:43:19 wazuh-modulesd[259105] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (11-desktop) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:43:30.461037 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[SUSE Linux Enterprise Desktop 12] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 6.01 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:43:24 wazuh-modulesd[259202] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:43:24 wazuh-modulesd[259202] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:43:24 wazuh-modulesd[259202] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:43:24 wazuh-modulesd[259202] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:43:24 wazuh-modulesd[259202] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (12-desktop) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:43:58.037085 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[SUSE Linux Enterprise Desktop 15] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 24.02 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:43:34 wazuh-modulesd[259319] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:43:34 wazuh-modulesd[259319] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:43:34 wazuh-modulesd[259319] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:43:34 wazuh-modulesd[259319] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:43:34 wazuh-modulesd[259319] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (15-desktop) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:44:09.740923 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[AlmaLinux 8] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 7.01 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:44:02 wazuh-modulesd[259526] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:44:02 wazuh-modulesd[259526] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:44:02 wazuh-modulesd[259526] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:44:02 wazuh-modulesd[259526] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:44:02 wazuh-modulesd[259526] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (8) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:44:15.357042 test_vulnerability_detector/test_feeds/test_download_feeds.py::test_download_feeds[AlmaLinux 9] description: Check if modulesd downloads successfully the feeds from different providers and os, and check that. the feed update date does not exceed a set limit. 2.34 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:44:13 wazuh-modulesd[259663] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:44:13 wazuh-modulesd[259663] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:44:13 wazuh-modulesd[259663] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:44:13 wazuh-modulesd[259663] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:44:13 wazuh-modulesd[259663] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (9) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:44:31.617176 test_vulnerability_detector/test_feeds/test_duplicate_feeds.py::test_duplicate_feeds[RedHat] description: Check that the vulnerabilities are not repeated in the database when they are indexed from the feeds. 13.05 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:44:18 wazuh-modulesd[259776] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:44:18 wazuh-modulesd[259776] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:44:18 wazuh-modulesd[259776] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:44:18 wazuh-modulesd[259776] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:44:18 wazuh-modulesd[259776] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 10s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 16:44:18 wazuh-modulesd[259776] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 10s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s
Passed 2023-07-31 19:44:47.395347 test_vulnerability_detector/test_feeds/test_duplicate_feeds.py::test_duplicate_feeds[Debian] description: Check that the vulnerabilities are not repeated in the database when they are indexed from the feeds. 12.59 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:44:34 wazuh-modulesd[259955] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:44:34 wazuh-modulesd[259955] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:44:34 wazuh-modulesd[259955] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:44:34 wazuh-modulesd[259955] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:44:34 wazuh-modulesd[259955] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added debian (Buster) feed. Interval: 10s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/debian/custom_debian_oval_feed.xml' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:45:02.931472 test_vulnerability_detector/test_feeds/test_duplicate_feeds.py::test_duplicate_feeds[Ubuntu Trusty] description: Check that the vulnerabilities are not repeated in the database when they are indexed from the feeds. 12.35 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:44:50 wazuh-modulesd[260130] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:44:50 wazuh-modulesd[260130] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:44:50 wazuh-modulesd[260130] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:44:50 wazuh-modulesd[260130] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:44:50 wazuh-modulesd[260130] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (trusty) feed. Interval: 10s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/canonical/custom_canonical_oval_feed.xml' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:45:18.421541 test_vulnerability_detector/test_feeds/test_duplicate_feeds.py::test_duplicate_feeds[Ubuntu Xenial] description: Check that the vulnerabilities are not repeated in the database when they are indexed from the feeds. 12.31 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:45:06 wazuh-modulesd[260313] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:45:06 wazuh-modulesd[260313] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:45:06 wazuh-modulesd[260313] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:45:06 wazuh-modulesd[260313] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:45:06 wazuh-modulesd[260313] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (xenial) feed. Interval: 10s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/canonical/custom_canonical_oval_feed.xml' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:45:35.661170 test_vulnerability_detector/test_feeds/test_duplicate_feeds.py::test_duplicate_feeds[Ubuntu Bionic] description: Check that the vulnerabilities are not repeated in the database when they are indexed from the feeds. 13.05 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:45:22 wazuh-modulesd[260527] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:45:22 wazuh-modulesd[260527] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:45:22 wazuh-modulesd[260527] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:45:22 wazuh-modulesd[260527] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:45:22 wazuh-modulesd[260527] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (bionic) feed. Interval: 10s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/canonical/custom_canonical_oval_feed.xml' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:45:51.441559 test_vulnerability_detector/test_feeds/test_duplicate_feeds.py::test_duplicate_feeds[Ubuntu Focal] description: Check that the vulnerabilities are not repeated in the database when they are indexed from the feeds. 12.59 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:45:38 wazuh-modulesd[260719] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:45:38 wazuh-modulesd[260719] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:45:38 wazuh-modulesd[260719] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:45:38 wazuh-modulesd[260719] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:45:38 wazuh-modulesd[260719] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (focal) feed. Interval: 10s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/canonical/custom_canonical_oval_feed.xml' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:46:07.666072 test_vulnerability_detector/test_feeds/test_duplicate_feeds.py::test_duplicate_feeds[Ubuntu Jammy] description: Check that the vulnerabilities are not repeated in the database when they are indexed from the feeds. 13.01 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:45:54 wazuh-modulesd[260890] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:45:54 wazuh-modulesd[260890] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:45:54 wazuh-modulesd[260890] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:45:54 wazuh-modulesd[260890] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:45:54 wazuh-modulesd[260890] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (jammy) feed. Interval: 10s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/canonical/custom_canonical_oval_feed.xml' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:46:23.456148 test_vulnerability_detector/test_feeds/test_duplicate_feeds.py::test_duplicate_feeds[ALAS] description: Check that the vulnerabilities are not repeated in the database when they are indexed from the feeds. 12.59 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:46:10 wazuh-modulesd[261075] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:46:10 wazuh-modulesd[261075] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:46:10 wazuh-modulesd[261075] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:46:10 wazuh-modulesd[261075] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:46:10 wazuh-modulesd[261075] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux) feed. Interval: 10s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/alas/custom_alas_feed.json' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:46:39.026408 test_vulnerability_detector/test_feeds/test_duplicate_feeds.py::test_duplicate_feeds[Arch] description: Check that the vulnerabilities are not repeated in the database when they are indexed from the feeds. 12.39 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:46:26 wazuh-modulesd[261258] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:46:26 wazuh-modulesd[261258] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:46:26 wazuh-modulesd[261258] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:46:26 wazuh-modulesd[261258] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:46:26 wazuh-modulesd[261258] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'arch' provider at 'vulnerability-detector' 2023/07/31 16:46:26 wazuh-modulesd[261258] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added arch feed. Interval: 10s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/arch/custom_archlinux_feed.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s
Passed 2023-07-31 19:46:54.630575 test_vulnerability_detector/test_feeds/test_duplicate_feeds.py::test_duplicate_feeds[MSU] description: Check that the vulnerabilities are not repeated in the database when they are indexed from the feeds. 12.43 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:46:42 wazuh-modulesd[261438] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:46:42 wazuh-modulesd[261438] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:46:42 wazuh-modulesd[261438] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:46:42 wazuh-modulesd[261438] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:46:42 wazuh-modulesd[261438] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'msu' provider at 'vulnerability-detector' 2023/07/31 16:46:42 wazuh-modulesd[261438] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 10s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/msu/custom_msu.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s
Passed 2023-07-31 19:47:10.211405 test_vulnerability_detector/test_feeds/test_duplicate_feeds.py::test_duplicate_feeds[SUSE] description: Check that the vulnerabilities are not repeated in the database when they are indexed from the feeds. 12.39 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:46:57 wazuh-modulesd[261622] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:46:57 wazuh-modulesd[261622] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:46:57 wazuh-modulesd[261622] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:46:57 wazuh-modulesd[261622] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:46:57 wazuh-modulesd[261622] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (15-desktop) feed. Interval: 10s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/suse/custom_suse_oval_feed.xml' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:47:26.460562 test_vulnerability_detector/test_feeds/test_duplicate_feeds.py::test_duplicate_feeds[AlmaLinux] description: Check that the vulnerabilities are not repeated in the database when they are indexed from the feeds. 13.05 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:47:13 wazuh-modulesd[261795] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:47:13 wazuh-modulesd[261795] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:47:13 wazuh-modulesd[261795] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:47:13 wazuh-modulesd[261795] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:47:13 wazuh-modulesd[261795] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (8) feed. Interval: 10s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_feeds/../data/feeds/almalinux/custom_alsa8_oval_feed.xml' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:47:32.992916 test_vulnerability_detector/test_feeds/test_import_invalid_feed_type.py::test_import_invalid_feed_type[RHEL - PDF] description: Check the vulnerability detector behavior when importing unexpected file types as feeds. 3.36 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:47:29 wazuh-modulesd[261967] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:47:29 wazuh-modulesd[261967] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:47:29 wazuh-modulesd[261967] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:47:29 wazuh-modulesd[261967] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:47:29 wazuh-modulesd[261967] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: 'none' | Url: 'https://s3.amazonaws.com/ci.wazuh.com/qa/testing_files/dummy_files/dummy.pdf' | Timeout: 300s 2023/07/31 16:47:29 wazuh-modulesd[261967] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: 'none' | Multi url: 'https://s3.amazonaws.com/ci.wazuh.com/qa/testing_files/dummy_files/dummy.pdf' | Update since: 1999 | Timeout: 300s
Passed 2023-07-31 19:47:39.234871 test_vulnerability_detector/test_feeds/test_import_invalid_feed_type.py::test_import_invalid_feed_type[Debian - JPG] description: Check the vulnerability detector behavior when importing unexpected file types as feeds. 3.05 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:47:36 wazuh-modulesd[262090] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:47:36 wazuh-modulesd[262090] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:47:36 wazuh-modulesd[262090] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:47:36 wazuh-modulesd[262090] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:47:36 wazuh-modulesd[262090] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added debian (bullseye) feed. Interval: 3600s | Path: 'none' | Url: 'https://s3.amazonaws.com/ci.wazuh.com/qa/testing_files/dummy_files/dummy.jpg' | Timeout: 300s
Passed 2023-07-31 19:47:46.480889 test_vulnerability_detector/test_feeds/test_import_invalid_feed_type.py::test_import_invalid_feed_type[Canonical - MP3] description: Check the vulnerability detector behavior when importing unexpected file types as feeds. 4.07 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:47:42 wazuh-modulesd[262207] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:47:42 wazuh-modulesd[262207] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:47:42 wazuh-modulesd[262207] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:47:42 wazuh-modulesd[262207] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:47:42 wazuh-modulesd[262207] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (jammy) feed. Interval: 3600s | Path: 'none' | Url: 'https://s3.amazonaws.com/ci.wazuh.com/qa/testing_files/dummy_files/dummy.mp3' | Timeout: 300s
Passed 2023-07-31 19:47:52.706319 test_vulnerability_detector/test_feeds/test_import_invalid_feed_type.py::test_import_invalid_feed_type[ALAS - DOC] description: Check the vulnerability detector behavior when importing unexpected file types as feeds. 3.05 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:47:49 wazuh-modulesd[262328] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:47:49 wazuh-modulesd[262328] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:47:49 wazuh-modulesd[262328] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:47:49 wazuh-modulesd[262328] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:47:49 wazuh-modulesd[262328] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux-2) feed. Interval: 3600s | Path: 'none' | Url: 'https://s3.amazonaws.com/ci.wazuh.com/qa/testing_files/dummy_files/dummy.doc' | Timeout: 300s
Passed 2023-07-31 19:47:59.944555 test_vulnerability_detector/test_feeds/test_import_invalid_feed_type.py::test_import_invalid_feed_type[Arch - AVI] description: Check the vulnerability detector behavior when importing unexpected file types as feeds. 4.06 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:47:55 wazuh-modulesd[262445] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:47:55 wazuh-modulesd[262445] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:47:55 wazuh-modulesd[262445] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:47:55 wazuh-modulesd[262445] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:47:55 wazuh-modulesd[262445] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added arch feed. Interval: 3600s | Multi path: 'none' | Multi url: 'https://s3.amazonaws.com/ci.wazuh.com/qa/testing_files/dummy_files/dummy.avi' | Update since: 0 | Timeout: 300s
Passed 2023-07-31 19:48:06.171127 test_vulnerability_detector/test_feeds/test_import_invalid_feed_type.py::test_import_invalid_feed_type[MSU - JPG] description: Check the vulnerability detector behavior when importing unexpected file types as feeds. 3.05 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:48:03 wazuh-modulesd[262592] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:48:03 wazuh-modulesd[262592] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:48:03 wazuh-modulesd[262592] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:48:03 wazuh-modulesd[262592] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:48:03 wazuh-modulesd[262592] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'https://s3.amazonaws.com/ci.wazuh.com/qa/testing_files/dummy_files/dummy.jpg' | Update since: 0 | Timeout: 300s
Passed 2023-07-31 19:48:14.886958 test_vulnerability_detector/test_feeds/test_import_invalid_feed_type.py::test_import_invalid_feed_type[SUSE - JPG] description: Check the vulnerability detector behavior when importing unexpected file types as feeds. 2.35 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:48:12 wazuh-modulesd[262820] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:48:12 wazuh-modulesd[262820] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:48:12 wazuh-modulesd[262820] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:48:12 wazuh-modulesd[262820] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:48:12 wazuh-modulesd[262820] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (15-desktop) feed. Interval: 3600s | Path: 'none' | Url: 'https://s3.amazonaws.com/ci.wazuh.com/qa/testing_files/dummy_files/dummy.jpg' | Timeout: 300s
Passed 2023-07-31 19:48:21.102601 test_vulnerability_detector/test_feeds/test_import_invalid_feed_type.py::test_import_invalid_feed_type[AlmaLinux - JPG] description: Check the vulnerability detector behavior when importing unexpected file types as feeds. 3.06 server 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:48:18 wazuh-modulesd[262937] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:48:18 wazuh-modulesd[262937] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:48:18 wazuh-modulesd[262937] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:48:18 wazuh-modulesd[262937] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:48:18 wazuh-modulesd[262937] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (8) feed. Interval: 3600s | Path: 'none' | Url: 'https://s3.amazonaws.com/ci.wazuh.com/qa/testing_files/dummy_files/dummy.jpg' | Timeout: 300s
Passed 2023-07-31 19:48:34.973973 test_vulnerability_detector/test_feeds/test_msu_inventory.py::test_msu_catalog_patches[check_patches_with_no_cve_present] description: Check that patch information is added to the feed from the catalog for patches not directly related. to a Vulnerability. 10.71 2
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:48:24 wazuh-modulesd[263054] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:48:24 wazuh-modulesd[263054] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:48:24 wazuh-modulesd[263054] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:48:24 wazuh-modulesd[263054] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:48:24 wazuh-modulesd[263054] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'msu' provider at 'vulnerability-detector' 2023/07/31 16:48:24 wazuh-modulesd[263054] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s
Passed 2023-07-31 19:48:38.530899 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[Red Hat Enterprise Linux] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.00 2
No log output captured.
Passed 2023-07-31 19:48:39.330865 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[Debian] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.35 2
No log output captured.
Passed 2023-07-31 19:48:41.241260 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[Arch Linux] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.00 2
No log output captured.
Passed 2023-07-31 19:48:41.383365 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[Amazon Linux] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.01 2
No log output captured.
Passed 2023-07-31 19:48:42.310584 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[MSU] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.37 2
No log output captured.
Passed 2023-07-31 19:48:44.372963 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2002] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.21 2
No log output captured.
Passed 2023-07-31 19:48:45.899086 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2003] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.05 2
No log output captured.
Passed 2023-07-31 19:48:47.458260 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2004] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.08 2
No log output captured.
Passed 2023-07-31 19:48:49.241925 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2005] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.19 2
No log output captured.
Passed 2023-07-31 19:48:51.373937 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2006] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.29 2
No log output captured.
Passed 2023-07-31 19:48:53.445965 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2007] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.30 2
No log output captured.
Passed 2023-07-31 19:48:55.638951 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2008] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.39 2
No log output captured.
Passed 2023-07-31 19:48:57.790862 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2009] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.33 2
No log output captured.
Passed 2023-07-31 19:49:01.521954 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2010] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.40 2
No log output captured.
Passed 2023-07-31 19:49:03.591771 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2011] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.29 2
No log output captured.
Passed 2023-07-31 19:49:05.759125 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2012] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.38 2
No log output captured.
Passed 2023-07-31 19:49:08.155397 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2013] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.48 2
No log output captured.
Passed 2023-07-31 19:49:10.566754 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2014] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.47 2
No log output captured.
Passed 2023-07-31 19:49:12.869974 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2015] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.46 2
No log output captured.
Passed 2023-07-31 19:49:16.075791 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2016] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.61 2
No log output captured.
Passed 2023-07-31 19:49:19.070234 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2017] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.87 2
No log output captured.
Passed 2023-07-31 19:49:22.222533 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2018] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 1.02 2
No log output captured.
Passed 2023-07-31 19:49:25.552894 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2019] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 1.13 2
No log output captured.
Passed 2023-07-31 19:49:31.000696 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2020] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 1.58 2
No log output captured.
Passed 2023-07-31 19:49:35.374022 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2021] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 1.78 2
No log output captured.
Passed 2023-07-31 19:49:40.934765 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2022] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 1.71 2
No log output captured.
Passed 2023-07-31 19:49:43.632349 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_json_feed_content[NVD-2023] description: Check if the downloaded JSON feeds have the expected format and are JSON parseable. 0.71 2
No log output captured.
Passed 2023-07-31 19:49:46.479611 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[Red Hat Enterprise Linux1] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 1.45 2
No log output captured.
Passed 2023-07-31 19:49:49.041315 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[Red Hat Enterprise Linux2] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 1.41 2
No log output captured.
Passed 2023-07-31 19:49:51.462071 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[Red Hat Enterprise Linux3] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 1.38 2
No log output captured.
Passed 2023-07-31 19:49:55.367016 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[Canonical Jammy] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 0.83 2
No log output captured.
Passed 2023-07-31 19:50:00.167442 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[Canonical Focal] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 1.28 2
No log output captured.
Passed 2023-07-31 19:50:05.402612 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[Canonical Bionic] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 1.56 2
No log output captured.
Passed 2023-07-31 19:50:10.219407 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[Canonical Xenial] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 1.32 2
No log output captured.
Passed 2023-07-31 19:50:15.031319 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[Canonical Trusty] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 1.28 2
No log output captured.
Passed 2023-07-31 19:50:18.568172 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[Debian0] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 1.16 2
No log output captured.
Passed 2023-07-31 19:50:21.902811 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[Debian1] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 1.17 2
No log output captured.
Passed 2023-07-31 19:50:22.101215 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[SUSE Linux Enterprise Desktop 11] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 0.18 2
No log output captured.
Passed 2023-07-31 19:50:23.118084 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[SUSE Linux Enterprise Desktop 12] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 0.96 2
No log output captured.
Passed 2023-07-31 19:50:27.051129 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[SUSE Linux Enterprise Desktop 15] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 3.65 2
No log output captured.
Passed 2023-07-31 19:50:28.655435 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[SUSE Linux Enterprise Server 11] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 1.49 2
No log output captured.
Passed 2023-07-31 19:50:32.579785 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[SUSE Linux Enterprise Server 12] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 3.64 2
No log output captured.
Passed 2023-07-31 19:50:38.811914 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[SUSE Linux Enterprise Server 15] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 5.74 2
No log output captured.
Passed 2023-07-31 19:50:41.560199 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[AlmaLinux 8] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 0.26 2
No log output captured.
Passed 2023-07-31 19:50:41.913871 test_vulnerability_detector/test_feeds/test_validate_feed_content.py::test_validate_xml_feed_content[AlmaLinux 9] description: Check if the downloaded XML feeds have the expected format and are XML parseable. 0.05 2
No log output captured.
Passed 2023-07-31 19:50:51.969341 test_vulnerability_detector/test_general_settings/test_enabled.py::test_enabled[enabled] description: Check that vulnerability detector is started when is set enabled yes. 10.01 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:50:41 wazuh-modulesd[263833] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:50:41 wazuh-modulesd[263833] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:50:41 wazuh-modulesd[263833] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:50:41 wazuh-modulesd[263833] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:50:51,967 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: DEBUG: Module disabled. Exiting... 2023-07-31 16:50:51,967 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:50:51,967 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: DEBUG: Module disabled. Exiting... ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:50:52.529445 test_vulnerability_detector/test_general_settings/test_enabled.py::test_disabled[disabled] description: Check that vulnerability detector is not started when is set enabled no. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:50:52 wazuh-modulesd[263905] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:50:52 wazuh-modulesd[263905] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:50:52 wazuh-modulesd[263905] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:50:52 wazuh-modulesd[263905] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
Passed 2023-07-31 19:50:54.668650 test_vulnerability_detector/test_general_settings/test_interval.py::test_interval_scan[5s] description: Check that the time specified in the interval is correct at the time of sleeping the scan thread. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:50:53 wazuh-modulesd[263966] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:50:53 wazuh-modulesd[263966] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:50:53 wazuh-modulesd[263966] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:50:53 wazuh-modulesd[263966] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
Passed 2023-07-31 19:50:55.736960 test_vulnerability_detector/test_general_settings/test_interval.py::test_interval_scan[5m] description: Check that the time specified in the interval is correct at the time of sleeping the scan thread. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:50:54 wazuh-modulesd[263998] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:50:54 wazuh-modulesd[263998] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:50:54 wazuh-modulesd[263998] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:50:54 wazuh-modulesd[263998] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
Passed 2023-07-31 19:50:56.830340 test_vulnerability_detector/test_general_settings/test_interval.py::test_interval_scan[5h] description: Check that the time specified in the interval is correct at the time of sleeping the scan thread. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:50:55 wazuh-modulesd[264030] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:50:55 wazuh-modulesd[264030] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:50:55 wazuh-modulesd[264030] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:50:55 wazuh-modulesd[264030] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
Passed 2023-07-31 19:50:57.898404 test_vulnerability_detector/test_general_settings/test_interval.py::test_interval_scan[5d] description: Check that the time specified in the interval is correct at the time of sleeping the scan thread. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:50:56 wazuh-modulesd[264062] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:50:56 wazuh-modulesd[264062] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:50:56 wazuh-modulesd[264062] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:50:56 wazuh-modulesd[264062] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
Passed 2023-07-31 19:51:28.190483 test_vulnerability_detector/test_general_settings/test_min_full_scan_interval.py::test_min_full_scan_interval[5 seconds] description: Check that the full scan is started after passing the min_full_scan_interval time. 21.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:51:07 wazuh-modulesd[264223] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:51:07 wazuh-modulesd[264223] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:51:07 wazuh-modulesd[264223] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:51:07 wazuh-modulesd[264223] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:51:07 wazuh-modulesd[264223] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_general_settings/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 16:51:07 wazuh-modulesd[264223] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_general_settings/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 16:51:07 wazuh-modulesd[264223] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 10s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_general_settings/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:51:42.582083 test_vulnerability_detector/test_general_settings/test_retry_interval.py::test_retry_interval[5s] description: Check if the `retry_interval ` option is working correctly. To do this,. it checks the `ossec.log` file for the message indicating that Vulnerability Detector will sleep before. attempting to scan the pending agents (forcing the retry interval action). After this, the DBs are. synchronized and the scan (log) is checked to ensure that it is performed normally. 6.04 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:51:36 wazuh-modulesd[264490] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:51:36 wazuh-modulesd[264490] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:51:36 wazuh-modulesd[264490] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:51:36 wazuh-modulesd[264490] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:51:36 wazuh-modulesd[264490] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_general_settings/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 16:51:36 wazuh-modulesd[264490] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_general_settings/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 16:51:36 wazuh-modulesd[264490] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_general_settings/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:52:11.647600 test_vulnerability_detector/test_general_settings/test_retry_interval.py::test_retry_interval_max_retries[5s] description: Check if after exceeding the maximum number of retries for a scan (`retry_interval`) the. corresponding message is displayed indicating that the software could not be obtained for the agent. and that it will be retried at the next scan (waiting for its time interval). 21.07 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:51:50 wazuh-modulesd[264671] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:51:50 wazuh-modulesd[264671] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:51:50 wazuh-modulesd[264671] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:51:50 wazuh-modulesd[264671] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:51:50 wazuh-modulesd[264671] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_general_settings/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 16:51:50 wazuh-modulesd[264671] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_general_settings/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 16:51:50 wazuh-modulesd[264671] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_general_settings/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:52:15.889349 test_vulnerability_detector/test_general_settings/test_run_on_start.py::test_run_on_start_enabled[enabled] description: Check that when run_on_start is enabled, the vulnerability scan starts (indicated in the log). 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:14 wazuh-modulesd[265172] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:14 wazuh-modulesd[265172] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:14 wazuh-modulesd[265172] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:14 wazuh-modulesd[265172] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:14 wazuh-modulesd[265172] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_general_settings/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 19:52:29.083710 test_vulnerability_detector/test_general_settings/test_run_on_start.py::test_run_on_start_disabled[disabled] description: Check that when run_on_start is disabled, the vulnerability scan does not start (log does not appear). 10.01 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:19 wazuh-modulesd[265464] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:19 wazuh-modulesd[265464] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:19 wazuh-modulesd[265464] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:19 wazuh-modulesd[265464] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:19 wazuh-modulesd[265464] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_general_settings/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
------------------------------Captured stderr call------------------------------
2023-07-31 16:52:29,074 - wazuh_testing - ERROR - Could not find this event in /var/ossec/logs/ossec.log: Starting vulnerability scan 2023-07-31 16:52:29,074 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:52:29,074 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find this event in /var/ossec/logs/ossec.log: Starting vulnerability scan ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:52:32.188309 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[Amazon Linux 1] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:31 wazuh-modulesd[265612] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:31 wazuh-modulesd[265612] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:31 wazuh-modulesd[265612] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:31 wazuh-modulesd[265612] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:31 wazuh-modulesd[265612] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:32.748003 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[Amazon Linux 2] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 0.50 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:32 wazuh-modulesd[265645] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:32 wazuh-modulesd[265645] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:32 wazuh-modulesd[265645] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:32 wazuh-modulesd[265645] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:32 wazuh-modulesd[265645] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux-2) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:33.807370 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[Amazon Linux 2022] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:32 wazuh-modulesd[265674] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:32 wazuh-modulesd[265674] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:32 wazuh-modulesd[265674] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:32 wazuh-modulesd[265674] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:32 wazuh-modulesd[265674] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux-2022) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:34.868201 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[Ubuntu Focal] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:33 wazuh-modulesd[265709] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:33 wazuh-modulesd[265709] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:33 wazuh-modulesd[265709] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:33 wazuh-modulesd[265709] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:33 wazuh-modulesd[265709] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (focal) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:35.928662 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[Ubuntu Bionic] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:34 wazuh-modulesd[265741] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:34 wazuh-modulesd[265741] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:34 wazuh-modulesd[265741] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:34 wazuh-modulesd[265741] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:34 wazuh-modulesd[265741] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (bionic) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:36.996397 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[Ubuntu Xenial] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:35 wazuh-modulesd[265780] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:35 wazuh-modulesd[265780] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:35 wazuh-modulesd[265780] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:35 wazuh-modulesd[265780] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:35 wazuh-modulesd[265780] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (xenial) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:38.056935 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[Ubuntu Trusty] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:37 wazuh-modulesd[265812] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:37 wazuh-modulesd[265812] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:37 wazuh-modulesd[265812] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:37 wazuh-modulesd[265812] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:37 wazuh-modulesd[265812] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (trusty) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:39.114511 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[Ubuntu Jammy] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:38 wazuh-modulesd[265844] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:38 wazuh-modulesd[265844] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:38 wazuh-modulesd[265844] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:38 wazuh-modulesd[265844] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:38 wazuh-modulesd[265844] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (jammy) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:40.172382 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[RHEL 8] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:39 wazuh-modulesd[265877] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:39 wazuh-modulesd[265877] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:39 wazuh-modulesd[265877] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:39 wazuh-modulesd[265877] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:39 wazuh-modulesd[265877] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:41.229560 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[RHEL 7] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:40 wazuh-modulesd[265909] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:40 wazuh-modulesd[265909] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:40 wazuh-modulesd[265909] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:40 wazuh-modulesd[265909] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:40 wazuh-modulesd[265909] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (7) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:42.312491 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[RHEL 6] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:41 wazuh-modulesd[265941] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:41 wazuh-modulesd[265941] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:41 wazuh-modulesd[265941] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:41 wazuh-modulesd[265941] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:41 wazuh-modulesd[265941] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (6) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:43.394733 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[RHEL 5] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:42 wazuh-modulesd[265974] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:42 wazuh-modulesd[265974] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:42 wazuh-modulesd[265974] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:42 wazuh-modulesd[265974] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:42 wazuh-modulesd[265974] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (5) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:44.451844 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[Debian Bullseye] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:43 wazuh-modulesd[266007] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:43 wazuh-modulesd[266007] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:43 wazuh-modulesd[266007] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:43 wazuh-modulesd[266007] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:43 wazuh-modulesd[266007] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added debian (bullseye) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:45.511324 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[Debian Buster] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:44 wazuh-modulesd[266039] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:44 wazuh-modulesd[266039] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:44 wazuh-modulesd[266039] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:44 wazuh-modulesd[266039] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:44 wazuh-modulesd[266039] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added debian (buster) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:46.573890 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[Arch Linux] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:45 wazuh-modulesd[266071] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:45 wazuh-modulesd[266071] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:45 wazuh-modulesd[266071] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:45 wazuh-modulesd[266071] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:45 wazuh-modulesd[266071] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'arch' provider at 'vulnerability-detector' 2023/07/31 16:52:45 wazuh-modulesd[266071] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added arch feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s
Passed 2023-07-31 19:52:47.634978 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[NVD] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:46 wazuh-modulesd[266103] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:46 wazuh-modulesd[266103] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:46 wazuh-modulesd[266103] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:46 wazuh-modulesd[266103] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:46 wazuh-modulesd[266103] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'nvd' provider at 'vulnerability-detector' 2023/07/31 16:52:46 wazuh-modulesd[266103] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: 'none' | Multi url: 'none' | Update since: 2023 | Timeout: 300s
Passed 2023-07-31 19:52:48.692581 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[MSU] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:47 wazuh-modulesd[266137] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:47 wazuh-modulesd[266137] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:47 wazuh-modulesd[266137] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:47 wazuh-modulesd[266137] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:47 wazuh-modulesd[266137] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'msu' provider at 'vulnerability-detector' 2023/07/31 16:52:47 wazuh-modulesd[266137] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s
Passed 2023-07-31 19:52:49.765287 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[SUSE Linux Enterprise Server 11] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:48 wazuh-modulesd[266171] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:48 wazuh-modulesd[266171] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:48 wazuh-modulesd[266171] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:48 wazuh-modulesd[266171] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:48 wazuh-modulesd[266171] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (11-server) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:50.823907 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[SUSE Linux Enterprise Server 12] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:49 wazuh-modulesd[266202] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:49 wazuh-modulesd[266202] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:49 wazuh-modulesd[266202] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:49 wazuh-modulesd[266202] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:49 wazuh-modulesd[266202] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (12-server) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:51.882600 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[SUSE Linux Enterprise Server 15] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:50 wazuh-modulesd[266233] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:50 wazuh-modulesd[266233] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:50 wazuh-modulesd[266233] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:50 wazuh-modulesd[266233] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:50 wazuh-modulesd[266233] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (15-server) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:52.940070 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[SUSE Linux Enterprise Desktop 11] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:51 wazuh-modulesd[266264] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:51 wazuh-modulesd[266264] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:51 wazuh-modulesd[266264] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:51 wazuh-modulesd[266264] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:51 wazuh-modulesd[266264] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (11-desktop) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:54.001111 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[SUSE Linux Enterprise Desktop 12] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:52 wazuh-modulesd[266299] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:52 wazuh-modulesd[266299] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:52 wazuh-modulesd[266299] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:52 wazuh-modulesd[266299] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:52 wazuh-modulesd[266299] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (12-desktop) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:55.059144 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[SUSE Linux Enterprise Desktop 15] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:54 wazuh-modulesd[266330] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:54 wazuh-modulesd[266330] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:54 wazuh-modulesd[266330] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:54 wazuh-modulesd[266330] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:54 wazuh-modulesd[266330] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (15-desktop) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:56.117130 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[ALMALINUX 8] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:55 wazuh-modulesd[266361] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:55 wazuh-modulesd[266361] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:55 wazuh-modulesd[266361] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:55 wazuh-modulesd[266361] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:55 wazuh-modulesd[266361] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (8) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:52:57.174039 test_vulnerability_detector/test_providers/test_enabled.py::test_enabled[ALMALINUX 9] description: Check if modulesd downloads the feeds from different providers when enabled is set to yes. 1.00 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:56 wazuh-modulesd[266393] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:56 wazuh-modulesd[266393] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:56 wazuh-modulesd[266393] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:56 wazuh-modulesd[266393] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:52:56 wazuh-modulesd[266393] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (9) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:53:02.235677 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[Amazon Linux 1] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:52:57 wazuh-modulesd[266451] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:52:57 wazuh-modulesd[266451] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:52:57 wazuh-modulesd[266451] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:52:57 wazuh-modulesd[266451] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:53:02,233 - wazuh_testing - ERROR - Could not find Amazon Linux 1 update starting log 2023-07-31 16:53:02,233 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:53:02,233 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Amazon Linux 1 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:53:07.296348 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[Amazon Linux 2] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:53:02 wazuh-modulesd[266498] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:53:02 wazuh-modulesd[266498] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:53:02 wazuh-modulesd[266498] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:53:02 wazuh-modulesd[266498] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:53:07,295 - wazuh_testing - ERROR - Could not find Amazon Linux 2 update starting log 2023-07-31 16:53:07,295 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:53:07,295 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Amazon Linux 2 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:53:12.356996 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[Amazon Linux 2022] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:53:07 wazuh-modulesd[266546] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:53:07 wazuh-modulesd[266546] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:53:07 wazuh-modulesd[266546] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:53:07 wazuh-modulesd[266546] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:53:12,353 - wazuh_testing - ERROR - Could not find Amazon Linux 2022 update starting log 2023-07-31 16:53:12,354 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:53:12,354 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Amazon Linux 2022 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:53:17.501026 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[Ubuntu Focal] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:53:12 wazuh-modulesd[268061] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:53:12 wazuh-modulesd[268061] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:53:12 wazuh-modulesd[268061] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:53:12 wazuh-modulesd[268061] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:53:17,499 - wazuh_testing - ERROR - Could not find Ubuntu Focal update starting log 2023-07-31 16:53:17,499 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:53:17,499 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Ubuntu Focal update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:53:22.566608 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[Ubuntu Bionic] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:53:17 wazuh-modulesd[268112] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:53:17 wazuh-modulesd[268112] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:53:17 wazuh-modulesd[268112] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:53:17 wazuh-modulesd[268112] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:53:22,564 - wazuh_testing - ERROR - Could not find Ubuntu Bionic update starting log 2023-07-31 16:53:22,564 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:53:22,564 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Ubuntu Bionic update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:53:27.631542 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[Ubuntu Xenial] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:53:22 wazuh-modulesd[268277] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:53:22 wazuh-modulesd[268277] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:53:22 wazuh-modulesd[268277] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:53:22 wazuh-modulesd[268277] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:53:27,629 - wazuh_testing - ERROR - Could not find Ubuntu Xenial update starting log 2023-07-31 16:53:27,630 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:53:27,630 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Ubuntu Xenial update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:53:32.691875 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[Ubuntu Trusty] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:53:27 wazuh-modulesd[268324] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:53:27 wazuh-modulesd[268324] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:53:27 wazuh-modulesd[268324] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:53:27 wazuh-modulesd[268324] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:53:32,690 - wazuh_testing - ERROR - Could not find Ubuntu Trusty update starting log 2023-07-31 16:53:32,690 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:53:32,690 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Ubuntu Trusty update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:53:37.754436 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[Ubuntu Jammy] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:53:32 wazuh-modulesd[268371] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:53:32 wazuh-modulesd[268371] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:53:32 wazuh-modulesd[268371] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:53:32 wazuh-modulesd[268371] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:53:37,752 - wazuh_testing - ERROR - Could not find Ubuntu Jammy update starting log 2023-07-31 16:53:37,752 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:53:37,753 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Ubuntu Jammy update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:53:42.817164 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[RHEL 8] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:53:37 wazuh-modulesd[268423] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:53:37 wazuh-modulesd[268423] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:53:37 wazuh-modulesd[268423] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:53:37 wazuh-modulesd[268423] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:53:42,814 - wazuh_testing - ERROR - Could not find Red Hat Enterprise Linux 8 update starting log 2023-07-31 16:53:42,814 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:53:42,814 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Red Hat Enterprise Linux 8 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:53:47.878631 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[RHEL 7] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:53:42 wazuh-modulesd[268473] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:53:42 wazuh-modulesd[268473] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:53:42 wazuh-modulesd[268473] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:53:42 wazuh-modulesd[268473] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:53:47,876 - wazuh_testing - ERROR - Could not find Red Hat Enterprise Linux 7 update starting log 2023-07-31 16:53:47,877 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:53:47,877 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Red Hat Enterprise Linux 7 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:53:52.939740 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[RHEL 6] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:53:47 wazuh-modulesd[268538] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:53:47 wazuh-modulesd[268538] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:53:47 wazuh-modulesd[268538] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:53:47 wazuh-modulesd[268538] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:53:52,937 - wazuh_testing - ERROR - Could not find Red Hat Enterprise Linux 6 update starting log 2023-07-31 16:53:52,937 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:53:52,937 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Red Hat Enterprise Linux 6 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:53:58.004298 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[RHEL 5] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:53:52 wazuh-modulesd[268658] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:53:52 wazuh-modulesd[268658] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:53:52 wazuh-modulesd[268658] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:53:52 wazuh-modulesd[268658] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:53:58,003 - wazuh_testing - ERROR - Could not find Red Hat Enterprise Linux 5 update starting log 2023-07-31 16:53:58,003 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:53:58,003 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Red Hat Enterprise Linux 5 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:54:03.068426 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[Debian Bullseye] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:53:58 wazuh-modulesd[268763] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:53:58 wazuh-modulesd[268763] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:53:58 wazuh-modulesd[268763] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:53:58 wazuh-modulesd[268763] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:54:03,066 - wazuh_testing - ERROR - Could not find Debian Bullseye update starting log 2023-07-31 16:54:03,066 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:54:03,066 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Debian Bullseye update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:54:08.135781 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[Debian Buster] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:54:03 wazuh-modulesd[268832] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:54:03 wazuh-modulesd[268832] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:54:03 wazuh-modulesd[268832] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:54:03 wazuh-modulesd[268832] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:54:08,134 - wazuh_testing - ERROR - Could not find Debian Buster update starting log 2023-07-31 16:54:08,134 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:54:08,134 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Debian Buster update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:54:13.197935 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[Arch Linux] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:54:08 wazuh-modulesd[268895] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:54:08 wazuh-modulesd[268895] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:54:08 wazuh-modulesd[268895] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:54:08 wazuh-modulesd[268895] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:54:13,196 - wazuh_testing - ERROR - Could not find Arch Linux update starting log 2023-07-31 16:54:13,196 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:54:13,196 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Arch Linux update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:54:18.269780 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[NVD] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:54:13 wazuh-modulesd[268942] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:54:13 wazuh-modulesd[268942] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:54:13 wazuh-modulesd[268942] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:54:13 wazuh-modulesd[268942] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:54:18,268 - wazuh_testing - ERROR - Could not find National Vulnerability Database update starting log 2023-07-31 16:54:18,268 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:54:18,268 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find National Vulnerability Database update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:54:23.335221 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[MSU] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:54:18 wazuh-modulesd[268989] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:54:18 wazuh-modulesd[268989] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:54:18 wazuh-modulesd[268989] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:54:18 wazuh-modulesd[268989] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:54:23,334 - wazuh_testing - ERROR - Could not find Microsoft Security Update update starting log 2023-07-31 16:54:23,334 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:54:23,334 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find Microsoft Security Update update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:54:28.407707 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[SUSE Linux Enterprise Server 11] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:54:23 wazuh-modulesd[269036] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:54:23 wazuh-modulesd[269036] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:54:23 wazuh-modulesd[269036] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:54:23 wazuh-modulesd[269036] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:54:28,406 - wazuh_testing - ERROR - Could not find SUSE Linux Enterprise Server 11 update starting log 2023-07-31 16:54:28,406 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:54:28,406 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find SUSE Linux Enterprise Server 11 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:54:33.480664 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[SUSE Linux Enterprise Server 12] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:54:28 wazuh-modulesd[269084] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:54:28 wazuh-modulesd[269084] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:54:28 wazuh-modulesd[269084] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:54:28 wazuh-modulesd[269084] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:54:33,478 - wazuh_testing - ERROR - Could not find SUSE Linux Enterprise Server 12 update starting log 2023-07-31 16:54:33,479 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:54:33,479 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find SUSE Linux Enterprise Server 12 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:54:38.613538 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[SUSE Linux Enterprise Server 15] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:54:33 wazuh-modulesd[269990] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:54:33 wazuh-modulesd[269990] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:54:33 wazuh-modulesd[269990] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:54:33 wazuh-modulesd[269990] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:54:38,611 - wazuh_testing - ERROR - Could not find SUSE Linux Enterprise Server 15 update starting log 2023-07-31 16:54:38,612 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:54:38,612 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find SUSE Linux Enterprise Server 15 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:54:43.688720 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[SUSE Linux Enterprise Desktop 11] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:54:38 wazuh-modulesd[270049] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:54:38 wazuh-modulesd[270049] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:54:38 wazuh-modulesd[270049] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:54:38 wazuh-modulesd[270049] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:54:43,687 - wazuh_testing - ERROR - Could not find SUSE Linux Enterprise Desktop 11 update starting log 2023-07-31 16:54:43,687 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:54:43,687 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find SUSE Linux Enterprise Desktop 11 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:54:48.764171 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[SUSE Linux Enterprise Desktop 12] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:54:43 wazuh-modulesd[270143] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:54:43 wazuh-modulesd[270143] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:54:43 wazuh-modulesd[270143] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:54:43 wazuh-modulesd[270143] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:54:48,762 - wazuh_testing - ERROR - Could not find SUSE Linux Enterprise Desktop 12 update starting log 2023-07-31 16:54:48,762 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:54:48,762 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find SUSE Linux Enterprise Desktop 12 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:54:53.825517 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[SUSE Linux Enterprise Desktop 15] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.01 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:54:48 wazuh-modulesd[270202] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:54:48 wazuh-modulesd[270202] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:54:48 wazuh-modulesd[270202] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:54:48 wazuh-modulesd[270202] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:54:53,823 - wazuh_testing - ERROR - Could not find SUSE Linux Enterprise Desktop 15 update starting log 2023-07-31 16:54:53,824 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:54:53,824 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find SUSE Linux Enterprise Desktop 15 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:54:59.400077 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[ALMALINUX 8] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.51 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:54:53 wazuh-modulesd[270251] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:54:53 wazuh-modulesd[270251] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:54:53 wazuh-modulesd[270251] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:54:53 wazuh-modulesd[270251] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:54:58,897 - wazuh_testing - ERROR - Could not find AlmaLinux 8 update starting log 2023-07-31 16:54:58,898 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:54:58,912 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find AlmaLinux 8 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:55:04.971397 test_vulnerability_detector/test_providers/test_enabled.py::test_disabled[ALMALINUX 9] description: Check if modulesd does not download the feeds from different providers when enabled is set to no. 5.51 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:54:59 wazuh-modulesd[270302] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:54:59 wazuh-modulesd[270302] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:54:59 wazuh-modulesd[270302] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:54:59 wazuh-modulesd[270302] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf
------------------------------Captured stderr call------------------------------
2023-07-31 16:55:04,469 - wazuh_testing - ERROR - Could not find AlmaLinux 9 update starting log 2023-07-31 16:55:04,469 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 16:55:04,469 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find AlmaLinux 9 update starting log ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 19:55:09.368683 test_vulnerability_detector/test_providers/test_missing_os.py::test_providers_missing_os[Amazon Linux] description: Check if modulesd starts downloading the feeds without specifying the os version. To do this, it checks. if errors occur when the <os> tag is omitted in the configuration in providers that should have it and,. on the other hand, if the update of the feeds starts normally in providers that do not require this. tag. 3.25 server 0
------------------------------Captured stderr call------------------------------
Job for wazuh-manager.service failed because the control process exited with error code. See "systemctl status wazuh-manager.service" and "journalctl -xeu wazuh-manager.service" for details.
Passed 2023-07-31 19:55:12.632026 test_vulnerability_detector/test_providers/test_missing_os.py::test_providers_missing_os[Canonical] description: Check if modulesd starts downloading the feeds without specifying the os version. To do this, it checks. if errors occur when the <os> tag is omitted in the configuration in providers that should have it and,. on the other hand, if the update of the feeds starts normally in providers that do not require this. tag. 1.08 server 0
------------------------------Captured stderr call------------------------------
Job for wazuh-manager.service failed because the control process exited with error code. See "systemctl status wazuh-manager.service" and "journalctl -xeu wazuh-manager.service" for details.
Passed 2023-07-31 19:55:16.809190 test_vulnerability_detector/test_providers/test_missing_os.py::test_providers_missing_os[Debian] description: Check if modulesd starts downloading the feeds without specifying the os version. To do this, it checks. if errors occur when the <os> tag is omitted in the configuration in providers that should have it and,. on the other hand, if the update of the feeds starts normally in providers that do not require this. tag. 1.07 server 0
------------------------------Captured stderr call------------------------------
Job for wazuh-manager.service failed because the control process exited with error code. See "systemctl status wazuh-manager.service" and "journalctl -xeu wazuh-manager.service" for details.
Passed 2023-07-31 19:55:31.360774 test_vulnerability_detector/test_providers/test_missing_os.py::test_providers_missing_os[Red Hat Enterprise Linux] description: Check if modulesd starts downloading the feeds without specifying the os version. To do this, it checks. if errors occur when the <os> tag is omitted in the configuration in providers that should have it and,. on the other hand, if the update of the feeds starts normally in providers that do not require this. tag. 11.43 server 0
No log output captured.
Passed 2023-07-31 19:55:50.290254 test_vulnerability_detector/test_providers/test_missing_os.py::test_providers_missing_os[National Vulnerability Database] description: Check if modulesd starts downloading the feeds without specifying the os version. To do this, it checks. if errors occur when the <os> tag is omitted in the configuration in providers that should have it and,. on the other hand, if the update of the feeds starts normally in providers that do not require this. tag. 14.07 server 0
No log output captured.
Passed 2023-07-31 19:56:08.247757 test_vulnerability_detector/test_providers/test_missing_os.py::test_providers_missing_os[Microsoft Security Update] description: Check if modulesd starts downloading the feeds without specifying the os version. To do this, it checks. if errors occur when the <os> tag is omitted in the configuration in providers that should have it and,. on the other hand, if the update of the feeds starts normally in providers that do not require this. tag. 14.94 server 0
No log output captured.
Passed 2023-07-31 19:56:24.761104 test_vulnerability_detector/test_providers/test_missing_os.py::test_providers_missing_os[Arch Linux] description: Check if modulesd starts downloading the feeds without specifying the os version. To do this, it checks. if errors occur when the <os> tag is omitted in the configuration in providers that should have it and,. on the other hand, if the update of the feeds starts normally in providers that do not require this. tag. 13.03 server 0
No log output captured.
Passed 2023-07-31 19:56:30.577815 test_vulnerability_detector/test_providers/test_missing_os.py::test_providers_missing_os[SUSE Linux Enterprise] description: Check if modulesd starts downloading the feeds without specifying the os version. To do this, it checks. if errors occur when the <os> tag is omitted in the configuration in providers that should have it and,. on the other hand, if the update of the feeds starts normally in providers that do not require this. tag. 2.81 server 0
------------------------------Captured stderr call------------------------------
Job for wazuh-manager.service failed because the control process exited with error code. See "systemctl status wazuh-manager.service" and "journalctl -xeu wazuh-manager.service" for details.
Passed 2023-07-31 19:56:33.848036 test_vulnerability_detector/test_providers/test_missing_os.py::test_providers_missing_os[ALMALINUX] description: Check if modulesd starts downloading the feeds without specifying the os version. To do this, it checks. if errors occur when the <os> tag is omitted in the configuration in providers that should have it and,. on the other hand, if the update of the feeds starts normally in providers that do not require this. tag. 1.09 server 0
------------------------------Captured stderr call------------------------------
Job for wazuh-manager.service failed because the control process exited with error code. See "systemctl status wazuh-manager.service" and "journalctl -xeu wazuh-manager.service" for details.
Passed 2023-07-31 19:56:53.749111 test_vulnerability_detector/test_providers/test_multiple_provider_feeds.py::test_check_log_multiple_provider_feeds[RedHat 8] description: Check if the <path> and <os path=...> options work properly according to the configuration. and check there are no conflicts when reading the feeds and inserting them in the database. 4.93 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:56:48 wazuh-modulesd[275502] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:56:48 wazuh-modulesd[275502] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:56:48 wazuh-modulesd[275502] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:56:48 wazuh-modulesd[275502] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:56:48 wazuh-modulesd[275502] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_providers/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 16:56:48 wazuh-modulesd[275502] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_providers/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s
Passed 2023-07-31 19:57:01.017253 test_vulnerability_detector/test_providers/test_multiple_provider_feeds.py::test_check_log_multiple_provider_feeds[Debian Buster] description: Check if the <path> and <os path=...> options work properly according to the configuration. and check there are no conflicts when reading the feeds and inserting them in the database. 4.06 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:56:56 wazuh-modulesd[275926] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:56:56 wazuh-modulesd[275926] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:56:56 wazuh-modulesd[275926] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:56:56 wazuh-modulesd[275926] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:56:56 wazuh-modulesd[275926] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added debian (bullseye) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_providers/../data/feeds/debian/custom_debian_oval_feed.xml' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:57:08.318551 test_vulnerability_detector/test_providers/test_multiple_provider_feeds.py::test_check_log_multiple_provider_feeds[ALMALINUX] description: Check if the <path> and <os path=...> options work properly according to the configuration. and check there are no conflicts when reading the feeds and inserting them in the database. 4.09 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:57:04 wazuh-modulesd[276303] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:57:04 wazuh-modulesd[276303] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:57:04 wazuh-modulesd[276303] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:57:04 wazuh-modulesd[276303] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:57:04 wazuh-modulesd[276303] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_providers/../data/feeds/almalinux/custom_alsa8_oval_feed.xml' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:57:12.546808 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Amazon Linux 1] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:57:11 wazuh-modulesd[276664] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:57:11 wazuh-modulesd[276664] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:57:11 wazuh-modulesd[276664] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:57:11 wazuh-modulesd[276664] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:57:11 wazuh-modulesd[276664] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:57:16.882224 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Amazon Linux 2] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:57:15 wazuh-modulesd[276890] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:57:15 wazuh-modulesd[276890] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:57:15 wazuh-modulesd[276890] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:57:15 wazuh-modulesd[276890] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:57:15 wazuh-modulesd[276890] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux-2) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:57:20.702158 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Amazon Linux 2022] description: Check if modulesd downloads the feeds for each os. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:57:20 wazuh-modulesd[277120] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:57:20 wazuh-modulesd[277120] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:57:20 wazuh-modulesd[277120] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:57:20 wazuh-modulesd[277120] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:57:20 wazuh-modulesd[277120] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux-2022) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:57:24.283996 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Ubuntu Trusty] description: Check if modulesd downloads the feeds for each os. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:57:23 wazuh-modulesd[277320] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:57:23 wazuh-modulesd[277320] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:57:23 wazuh-modulesd[277320] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:57:23 wazuh-modulesd[277320] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:57:23 wazuh-modulesd[277320] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (trusty) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:57:27.839473 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Ubuntu Xenial] description: Check if modulesd downloads the feeds for each os. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:57:27 wazuh-modulesd[277523] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:57:27 wazuh-modulesd[277523] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:57:27 wazuh-modulesd[277523] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:57:27 wazuh-modulesd[277523] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:57:27 wazuh-modulesd[277523] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (xenial) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:57:31.380067 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Ubuntu Bionic] description: Check if modulesd downloads the feeds for each os. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:57:30 wazuh-modulesd[277694] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:57:30 wazuh-modulesd[277694] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:57:30 wazuh-modulesd[277694] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:57:30 wazuh-modulesd[277694] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:57:30 wazuh-modulesd[277694] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (bionic) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:57:35.286615 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Ubuntu Focal] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:57:34 wazuh-modulesd[277889] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:57:34 wazuh-modulesd[277889] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:57:34 wazuh-modulesd[277889] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:57:34 wazuh-modulesd[277889] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:57:34 wazuh-modulesd[277889] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (focal) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:57:39.534599 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Ubuntu Jammy] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:57:38 wazuh-modulesd[278113] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:57:38 wazuh-modulesd[278113] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:57:38 wazuh-modulesd[278113] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:57:38 wazuh-modulesd[278113] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:57:38 wazuh-modulesd[278113] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (jammy) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:57:43.767268 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Debian Buster] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:57:42 wazuh-modulesd[278332] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:57:42 wazuh-modulesd[278332] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:57:42 wazuh-modulesd[278332] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:57:42 wazuh-modulesd[278332] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:57:42 wazuh-modulesd[278332] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added debian (buster) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:57:47.510837 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Debian Bullseye] description: Check if modulesd downloads the feeds for each os. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:57:47 wazuh-modulesd[278557] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:57:47 wazuh-modulesd[278557] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:57:47 wazuh-modulesd[278557] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:57:47 wazuh-modulesd[278557] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:57:47 wazuh-modulesd[278557] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added debian (bullseye) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:57:51.554624 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Red Hat Enterprise Linux 5] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:57:50 wazuh-modulesd[278752] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:57:50 wazuh-modulesd[278752] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:57:50 wazuh-modulesd[278752] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:57:50 wazuh-modulesd[278752] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:57:50 wazuh-modulesd[278752] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (5) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:57:55.245006 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Red Hat Enterprise Linux 6] description: Check if modulesd downloads the feeds for each os. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:57:54 wazuh-modulesd[278971] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:57:54 wazuh-modulesd[278971] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:57:54 wazuh-modulesd[278971] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:57:54 wazuh-modulesd[278971] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:57:54 wazuh-modulesd[278971] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (6) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:57:59.297319 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Red Hat Enterprise Linux 7] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:57:58 wazuh-modulesd[279208] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:57:58 wazuh-modulesd[279208] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:57:58 wazuh-modulesd[279208] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:57:58 wazuh-modulesd[279208] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:57:58 wazuh-modulesd[279208] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (7) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:58:02.999593 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Red Hat Enterprise Linux 8] description: Check if modulesd downloads the feeds for each os. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:02 wazuh-modulesd[279423] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:02 wazuh-modulesd[279423] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:02 wazuh-modulesd[279423] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:02 wazuh-modulesd[279423] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:02 wazuh-modulesd[279423] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:58:07.057297 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Arch Linux] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:06 wazuh-modulesd[279605] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:06 wazuh-modulesd[279605] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:06 wazuh-modulesd[279605] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:06 wazuh-modulesd[279605] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:06 wazuh-modulesd[279605] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'arch' provider at 'vulnerability-detector' 2023/07/31 16:58:06 wazuh-modulesd[279605] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added arch feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s
Passed 2023-07-31 19:58:11.298581 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[National Vulnerability Database] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:10 wazuh-modulesd[279802] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:10 wazuh-modulesd[279802] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:10 wazuh-modulesd[279802] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:10 wazuh-modulesd[279802] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:10 wazuh-modulesd[279802] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'nvd' provider at 'vulnerability-detector' 2023/07/31 16:58:10 wazuh-modulesd[279802] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: 'none' | Multi url: 'none' | Update since: 2023 | Timeout: 300s
Passed 2023-07-31 19:58:15.499476 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[Microsoft Security Update] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:14 wazuh-modulesd[280023] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:14 wazuh-modulesd[280023] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:14 wazuh-modulesd[280023] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:14 wazuh-modulesd[280023] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:14 wazuh-modulesd[280023] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'msu' provider at 'vulnerability-detector' 2023/07/31 16:58:14 wazuh-modulesd[280023] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s
Passed 2023-07-31 19:58:19.700767 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[SUSE Linux Enterprise Desktop 11] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:18 wazuh-modulesd[280246] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:18 wazuh-modulesd[280246] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:18 wazuh-modulesd[280246] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:18 wazuh-modulesd[280246] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:18 wazuh-modulesd[280246] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (11-desktop) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:58:23.452019 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[SUSE Linux Enterprise Desktop 12] description: Check if modulesd downloads the feeds for each os. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:22 wazuh-modulesd[280438] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:22 wazuh-modulesd[280438] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:22 wazuh-modulesd[280438] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:22 wazuh-modulesd[280438] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:22 wazuh-modulesd[280438] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (12-desktop) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:58:27.494392 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[SUSE Linux Enterprise Desktop 15] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:26 wazuh-modulesd[280628] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:26 wazuh-modulesd[280628] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:26 wazuh-modulesd[280628] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:26 wazuh-modulesd[280628] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:26 wazuh-modulesd[280628] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (15-desktop) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:58:31.695703 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[SUSE Linux Enterprise Server 11] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:30 wazuh-modulesd[281012] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:30 wazuh-modulesd[281012] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:30 wazuh-modulesd[281012] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:30 wazuh-modulesd[281012] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:30 wazuh-modulesd[281012] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (11-server) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:58:35.907299 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[SUSE Linux Enterprise Server 12] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:34 wazuh-modulesd[281104] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:34 wazuh-modulesd[281104] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:34 wazuh-modulesd[281104] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:34 wazuh-modulesd[281104] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:34 wazuh-modulesd[281104] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (12-server) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:58:40.150063 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[SUSE Linux Enterprise Server 15] description: Check if modulesd downloads the feeds for each os. 1.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:39 wazuh-modulesd[281200] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:39 wazuh-modulesd[281200] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:39 wazuh-modulesd[281200] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:39 wazuh-modulesd[281200] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:39 wazuh-modulesd[281200] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (15-server) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:58:43.865632 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[ALMALINUX 8] description: Check if modulesd downloads the feeds for each os. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:43 wazuh-modulesd[281294] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:43 wazuh-modulesd[281294] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:43 wazuh-modulesd[281294] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:43 wazuh-modulesd[281294] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:43 wazuh-modulesd[281294] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (8) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:58:47.410198 test_vulnerability_detector/test_providers/test_os.py::test_providers_os[ALMALINUX 9] description: Check if modulesd downloads the feeds for each os. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:46 wazuh-modulesd[281383] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:46 wazuh-modulesd[281383] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:46 wazuh-modulesd[281383] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:46 wazuh-modulesd[281383] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:46 wazuh-modulesd[281383] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (9) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:58:50.954573 test_vulnerability_detector/test_providers/test_update_from_year.py::test_update_from_year[RedHat] description: Check if vulnerability detector download feeds from the correct year based on `update_from_year`. option. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:50 wazuh-modulesd[281485] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:50 wazuh-modulesd[281485] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:50 wazuh-modulesd[281485] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:50 wazuh-modulesd[281485] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:50 wazuh-modulesd[281485] wmodules-vuln-detector.c:1015 at wm_vuldet_read_provider_content(): INFO: 'update_from_year' option at module 'vulnerability-detector' is deprecated. Use 'os' instead. 2023/07/31 16:58:50 wazuh-modulesd[281485] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:58:54.512973 test_vulnerability_detector/test_providers/test_update_from_year.py::test_update_from_year[Canonical] description: Check if vulnerability detector download feeds from the correct year based on `update_from_year`. option. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:54 wazuh-modulesd[281578] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:54 wazuh-modulesd[281578] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:54 wazuh-modulesd[281578] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:54 wazuh-modulesd[281578] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:54 wazuh-modulesd[281578] wmodules-vuln-detector.c:1029 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'update_from_year' for 'canonical' provider at 'vulnerability-detector' 2023/07/31 16:58:54 wazuh-modulesd[281578] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (20) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:58:58.062083 test_vulnerability_detector/test_providers/test_update_from_year.py::test_update_from_year[Debian] description: Check if vulnerability detector download feeds from the correct year based on `update_from_year`. option. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:58:57 wazuh-modulesd[281667] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:58:57 wazuh-modulesd[281667] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:58:57 wazuh-modulesd[281667] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:58:57 wazuh-modulesd[281667] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:58:57 wazuh-modulesd[281667] wmodules-vuln-detector.c:1029 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'update_from_year' for 'debian' provider at 'vulnerability-detector' 2023/07/31 16:58:57 wazuh-modulesd[281667] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added debian (10) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:59:01.599588 test_vulnerability_detector/test_providers/test_update_from_year.py::test_update_from_year[NVD] description: Check if vulnerability detector download feeds from the correct year based on `update_from_year`. option. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:59:01 wazuh-modulesd[281760] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:59:01 wazuh-modulesd[281760] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:59:01 wazuh-modulesd[281760] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:59:01 wazuh-modulesd[281760] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:59:01 wazuh-modulesd[281760] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'nvd' provider at 'vulnerability-detector' 2023/07/31 16:59:01 wazuh-modulesd[281760] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: 'none' | Multi url: 'none' | Update since: 2023 | Timeout: 300s
Passed 2023-07-31 19:59:04.930718 test_vulnerability_detector/test_providers/test_update_from_year.py::test_update_from_year[MSU] description: Check if vulnerability detector download feeds from the correct year based on `update_from_year`. option. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:59:04 wazuh-modulesd[281853] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:59:04 wazuh-modulesd[281853] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:59:04 wazuh-modulesd[281853] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:59:04 wazuh-modulesd[281853] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:59:04 wazuh-modulesd[281853] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'msu' provider at 'vulnerability-detector' 2023/07/31 16:59:04 wazuh-modulesd[281853] wmodules-vuln-detector.c:1018 at wm_vuldet_read_provider_content(): WARNING: 'update_from_year' option cannot be used for 'msu' provider. 2023/07/31 16:59:04 wazuh-modulesd[281853] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added msu feed. Interval: 3600s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s
Passed 2023-07-31 19:59:08.471671 test_vulnerability_detector/test_providers/test_update_from_year.py::test_update_from_year[SUSE] description: Check if vulnerability detector download feeds from the correct year based on `update_from_year`. option. 0.50 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:59:07 wazuh-modulesd[281945] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:59:07 wazuh-modulesd[281945] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:59:07 wazuh-modulesd[281945] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:59:07 wazuh-modulesd[281945] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:59:07 wazuh-modulesd[281945] wmodules-vuln-detector.c:1029 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'update_from_year' for 'suse' provider at 'vulnerability-detector' 2023/07/31 16:59:07 wazuh-modulesd[281945] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (15-desktop) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:59:11.546354 test_vulnerability_detector/test_providers/test_update_from_year.py::test_update_from_year[ALMALINUX] description: Check if vulnerability detector download feeds from the correct year based on `update_from_year`. option. 0.00 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:59:11 wazuh-modulesd[282036] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:59:11 wazuh-modulesd[282036] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:59:11 wazuh-modulesd[282036] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:59:11 wazuh-modulesd[282036] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:59:11 wazuh-modulesd[282036] wmodules-vuln-detector.c:1029 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'update_from_year' for 'almalinux' provider at 'vulnerability-detector' 2023/07/31 16:59:11 wazuh-modulesd[282036] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (8) feed. Interval: 3600s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:59:20.760424 test_vulnerability_detector/test_providers/test_update_interval.py::test_update_interval[Amazon Linux 2022] description: Check if the provider feed starts updating the database after the interval time set in. <interval_update> tag. 6.01 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:59:14 wazuh-modulesd[282125] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:59:14 wazuh-modulesd[282125] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:59:14 wazuh-modulesd[282125] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:59:14 wazuh-modulesd[282125] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:59:14 wazuh-modulesd[282125] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux-2022) feed. Interval: 5s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:59:29.540985 test_vulnerability_detector/test_providers/test_update_interval.py::test_update_interval[RedHat] description: Check if the provider feed starts updating the database after the interval time set in. <interval_update> tag. 5.51 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:59:24 wazuh-modulesd[282243] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:59:24 wazuh-modulesd[282243] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:59:24 wazuh-modulesd[282243] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:59:24 wazuh-modulesd[282243] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:59:24 wazuh-modulesd[282243] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 5s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:59:39.072070 test_vulnerability_detector/test_providers/test_update_interval.py::test_update_interval[Ubuntu Jammy] description: Check if the provider feed starts updating the database after the interval time set in. <interval_update> tag. 5.51 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:59:33 wazuh-modulesd[282382] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:59:33 wazuh-modulesd[282382] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:59:33 wazuh-modulesd[282382] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:59:33 wazuh-modulesd[282382] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:59:33 wazuh-modulesd[282382] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added canonical (jammy) feed. Interval: 5s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:59:47.579408 test_vulnerability_detector/test_providers/test_update_interval.py::test_update_interval[Debian] description: Check if the provider feed starts updating the database after the interval time set in. <interval_update> tag. 5.51 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:59:42 wazuh-modulesd[282497] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:59:42 wazuh-modulesd[282497] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:59:42 wazuh-modulesd[282497] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:59:42 wazuh-modulesd[282497] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:59:42 wazuh-modulesd[282497] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added debian (buster) feed. Interval: 5s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 19:59:57.644982 test_vulnerability_detector/test_providers/test_update_interval.py::test_update_interval[NVD] description: Check if the provider feed starts updating the database after the interval time set in. <interval_update> tag. 6.01 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 16:59:51 wazuh-modulesd[282622] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 16:59:51 wazuh-modulesd[282622] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 16:59:51 wazuh-modulesd[282622] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 16:59:51 wazuh-modulesd[282622] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 16:59:51 wazuh-modulesd[282622] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'nvd' provider at 'vulnerability-detector' 2023/07/31 16:59:51 wazuh-modulesd[282622] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 5s | Multi path: 'none' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:00:06.380890 test_vulnerability_detector/test_providers/test_update_interval.py::test_update_interval[Arch_Linux] description: Check if the provider feed starts updating the database after the interval time set in. <interval_update> tag. 5.51 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:00:00 wazuh-modulesd[282736] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:00:00 wazuh-modulesd[282736] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:00:00 wazuh-modulesd[282736] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:00:00 wazuh-modulesd[282736] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:00:00 wazuh-modulesd[282736] wmodules-vuln-detector.c:1078 at wm_vuldet_read_provider_content(): WARNING: Invalid option 'os' for 'arch' provider at 'vulnerability-detector' 2023/07/31 17:00:00 wazuh-modulesd[282736] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added arch feed. Interval: 5s | Multi path: 'none' | Multi url: 'none' | Update since: 0 | Timeout: 300s
Passed 2023-07-31 20:00:15.430076 test_vulnerability_detector/test_providers/test_update_interval.py::test_update_interval[SUSE] description: Check if the provider feed starts updating the database after the interval time set in. <interval_update> tag. 6.01 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:00:09 wazuh-modulesd[282849] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:00:09 wazuh-modulesd[282849] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:00:09 wazuh-modulesd[282849] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:00:09 wazuh-modulesd[282849] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:00:09 wazuh-modulesd[282849] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (15-server) feed. Interval: 5s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 20:00:24.589242 test_vulnerability_detector/test_providers/test_update_interval.py::test_update_interval[ALMALINUX] description: Check if the provider feed starts updating the database after the interval time set in. <interval_update> tag. 6.01 server 0
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:00:18 wazuh-modulesd[282979] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:00:18 wazuh-modulesd[282979] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:00:18 wazuh-modulesd[282979] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:00:18 wazuh-modulesd[282979] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:00:18 wazuh-modulesd[282979] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (8) feed. Interval: 5s | Path: 'none' | Url: 'none' | Timeout: 300s
Passed 2023-07-31 20:00:37.866747 test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py::test_scan_nvd_vulnerabilities[WINDOWS] description: Check if the corresponding vulnerability alerts and logs are generated after scanning with an NVD feed. and custom vulnerable packages, using only the NVD feed.This is tested for macOS and Windows system. 5.02 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:00:32 wazuh-modulesd[283127] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:00:32 wazuh-modulesd[283127] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:00:32 wazuh-modulesd[283127] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:00:32 wazuh-modulesd[283127] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:00:32 wazuh-modulesd[283127] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:00:50.773076 test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py::test_scan_nvd_vulnerabilities[MACOS] description: Check if the corresponding vulnerability alerts and logs are generated after scanning with an NVD feed. and custom vulnerable packages, using only the NVD feed.This is tested for macOS and Windows system. 5.02 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:00:45 wazuh-modulesd[283279] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:00:45 wazuh-modulesd[283279] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:00:45 wazuh-modulesd[283279] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:00:45 wazuh-modulesd[283279] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:00:45 wazuh-modulesd[283279] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:00:59.640945 test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py::test_no_agent_data[RHEL] description: Check that a Warning message is displayed when attempting to perform a vulnerability scan using only. the NVD feed for Linux systems. 1.00 server
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:00:58 wazuh-modulesd[283431] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:00:58 wazuh-modulesd[283431] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:00:58 wazuh-modulesd[283431] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:00:58 wazuh-modulesd[283431] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:00:58 wazuh-modulesd[283431] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:01:08.931652 test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py::test_no_agent_data[UBUNTU] description: Check that a Warning message is displayed when attempting to perform a vulnerability scan using only. the NVD feed for Linux systems. 1.00 server
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:01:07 wazuh-modulesd[283562] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:01:07 wazuh-modulesd[283562] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:01:07 wazuh-modulesd[283562] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:01:07 wazuh-modulesd[283562] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:01:07 wazuh-modulesd[283562] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:01:18.217949 test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py::test_no_agent_data[DEBIAN] description: Check that a Warning message is displayed when attempting to perform a vulnerability scan using only. the NVD feed for Linux systems. 1.00 server
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:01:17 wazuh-modulesd[283693] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:01:17 wazuh-modulesd[283693] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:01:17 wazuh-modulesd[283693] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:01:17 wazuh-modulesd[283693] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:01:17 wazuh-modulesd[283693] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:01:27.520335 test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py::test_no_agent_data[ARCH] description: Check that a Warning message is displayed when attempting to perform a vulnerability scan using only. the NVD feed for Linux systems. 1.00 server
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:01:26 wazuh-modulesd[283821] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:01:26 wazuh-modulesd[283821] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:01:26 wazuh-modulesd[283821] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:01:26 wazuh-modulesd[283821] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:01:26 wazuh-modulesd[283821] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:01:36.850754 test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py::test_no_agent_data[ALAS] description: Check that a Warning message is displayed when attempting to perform a vulnerability scan using only. the NVD feed for Linux systems. 1.00 server
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:01:35 wazuh-modulesd[283948] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:01:35 wazuh-modulesd[283948] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:01:35 wazuh-modulesd[283948] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:01:35 wazuh-modulesd[283948] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:01:35 wazuh-modulesd[283948] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:01:45.795131 test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py::test_no_agent_data[SLED11] description: Check that a Warning message is displayed when attempting to perform a vulnerability scan using only. the NVD feed for Linux systems. 1.00 server
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:01:44 wazuh-modulesd[284086] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:01:44 wazuh-modulesd[284086] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:01:44 wazuh-modulesd[284086] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:01:44 wazuh-modulesd[284086] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:01:44 wazuh-modulesd[284086] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:01:55.106585 test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py::test_no_agent_data[SLED12] description: Check that a Warning message is displayed when attempting to perform a vulnerability scan using only. the NVD feed for Linux systems. 1.00 server
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:01:54 wazuh-modulesd[284220] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:01:54 wazuh-modulesd[284220] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:01:54 wazuh-modulesd[284220] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:01:54 wazuh-modulesd[284220] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:01:54 wazuh-modulesd[284220] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:02:05.359888 test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py::test_no_agent_data[SLED15] description: Check that a Warning message is displayed when attempting to perform a vulnerability scan using only. the NVD feed for Linux systems. 1.00 server
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:02:04 wazuh-modulesd[284363] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:02:04 wazuh-modulesd[284363] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:02:04 wazuh-modulesd[284363] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:02:04 wazuh-modulesd[284363] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:02:04 wazuh-modulesd[284363] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:02:14.665354 test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py::test_no_agent_data[SLES11] description: Check that a Warning message is displayed when attempting to perform a vulnerability scan using only. the NVD feed for Linux systems. 1.00 server
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:02:13 wazuh-modulesd[284491] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:02:13 wazuh-modulesd[284491] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:02:13 wazuh-modulesd[284491] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:02:13 wazuh-modulesd[284491] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:02:13 wazuh-modulesd[284491] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:02:23.937063 test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py::test_no_agent_data[SLES12] description: Check that a Warning message is displayed when attempting to perform a vulnerability scan using only. the NVD feed for Linux systems. 1.00 server
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:02:22 wazuh-modulesd[284620] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:02:22 wazuh-modulesd[284620] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:02:22 wazuh-modulesd[284620] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:02:22 wazuh-modulesd[284620] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:02:22 wazuh-modulesd[284620] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:02:33.241880 test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py::test_no_agent_data[SLES15] description: Check that a Warning message is displayed when attempting to perform a vulnerability scan using only. the NVD feed for Linux systems. 1.00 server
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:02:32 wazuh-modulesd[284767] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:02:32 wazuh-modulesd[284767] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:02:32 wazuh-modulesd[284767] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:02:32 wazuh-modulesd[284767] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:02:32 wazuh-modulesd[284767] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:02:42.032829 test_vulnerability_detector/test_scan_results/test_scan_nvd_vulnerabilities.py::test_no_agent_data[ALMALINUX] description: Check that a Warning message is displayed when attempting to perform a vulnerability scan using only. the NVD feed for Linux systems. 0.50 server
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:02:41 wazuh-modulesd[284894] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:02:41 wazuh-modulesd[284894] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:02:41 wazuh-modulesd[284894] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:02:41 wazuh-modulesd[284894] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:02:41 wazuh-modulesd[284894] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:02:55.799917 test_vulnerability_detector/test_scan_results/test_scan_provider_and_nvd_vulnerabilities.py::test_scan_provider_and_nvd_vulnerabilities[RHEL] description: Check if the vulnerability alerts are reported from NVD and OVAL feed sources. 4.51 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:02:51 wazuh-modulesd[285048] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:02:51 wazuh-modulesd[285048] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:02:51 wazuh-modulesd[285048] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:02:51 wazuh-modulesd[285048] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:02:51 wazuh-modulesd[285048] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:02:51 wazuh-modulesd[285048] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:02:51 wazuh-modulesd[285048] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:03:08.006629 test_vulnerability_detector/test_scan_results/test_scan_provider_and_nvd_vulnerabilities.py::test_scan_provider_and_nvd_vulnerabilities[Debian] description: Check if the vulnerability alerts are reported from NVD and OVAL feed sources. 4.02 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:03:03 wazuh-modulesd[285218] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:03:03 wazuh-modulesd[285218] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:03:03 wazuh-modulesd[285218] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:03:03 wazuh-modulesd[285218] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:03:03 wazuh-modulesd[285218] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added debian (bullseye) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/debian/custom_debian_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:03:03 wazuh-modulesd[285218] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:03:29.083833 test_vulnerability_detector/test_scan_results/test_scan_provider_and_nvd_vulnerabilities.py::test_scan_provider_and_nvd_vulnerabilities[ALAS] description: Check if the vulnerability alerts are reported from NVD and OVAL feed sources. 4.51 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:03:24 wazuh-modulesd[285489] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:03:24 wazuh-modulesd[285489] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:03:24 wazuh-modulesd[285489] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:03:24 wazuh-modulesd[285489] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:03:24 wazuh-modulesd[285489] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux-2022) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/alas/custom_alas_2022_feed.json' | Url: 'none' | Timeout: 300s 2023/07/31 17:03:24 wazuh-modulesd[285489] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:03:40.843547 test_vulnerability_detector/test_scan_results/test_scan_provider_and_nvd_vulnerabilities.py::test_scan_provider_and_nvd_vulnerabilities[Arch] description: Check if the vulnerability alerts are reported from NVD and OVAL feed sources. 3.51 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:03:37 wazuh-modulesd[285645] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:03:37 wazuh-modulesd[285645] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:03:37 wazuh-modulesd[285645] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:03:37 wazuh-modulesd[285645] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:03:37 wazuh-modulesd[285645] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added arch feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/arch/custom_archlinux_feed.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 17:03:37 wazuh-modulesd[285645] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:03:52.295811 test_vulnerability_detector/test_scan_results/test_scan_provider_and_nvd_vulnerabilities.py::test_scan_provider_and_nvd_vulnerabilities[SUSE] description: Check if the vulnerability alerts are reported from NVD and OVAL feed sources. 3.16 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:03:49 wazuh-modulesd[285837] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:03:49 wazuh-modulesd[285837] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:03:49 wazuh-modulesd[285837] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:03:49 wazuh-modulesd[285837] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:03:49 wazuh-modulesd[285837] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (15-server) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/suse/custom_suse_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:03:49 wazuh-modulesd[285837] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:04:04.764699 test_vulnerability_detector/test_scan_results/test_scan_provider_and_nvd_vulnerabilities.py::test_scan_provider_and_nvd_vulnerabilities[ALMALINUX] description: Check if the vulnerability alerts are reported from NVD and OVAL feed sources. 3.09 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:04:01 wazuh-modulesd[286393] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:04:01 wazuh-modulesd[286393] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:04:01 wazuh-modulesd[286393] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:04:01 wazuh-modulesd[286393] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:04:01 wazuh-modulesd[286393] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/almalinux/custom_alsa8_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:04:01 wazuh-modulesd[286393] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:04:18.645363 test_vulnerability_detector/test_scan_results/test_scan_provider_vulnerabilities.py::test_scan_provider_vulnerabilities[RHEL] description: Check if the vulnerability alerts are reported making vulnerabilities found only by OVAL and not NVD. 4.52 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:04:14 wazuh-modulesd[286953] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:04:14 wazuh-modulesd[286953] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:04:14 wazuh-modulesd[286953] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:04:14 wazuh-modulesd[286953] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:04:14 wazuh-modulesd[286953] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:04:14 wazuh-modulesd[286953] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:04:14 wazuh-modulesd[286953] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_alternative_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:04:31.113876 test_vulnerability_detector/test_scan_results/test_scan_provider_vulnerabilities.py::test_scan_provider_vulnerabilities[Debian] description: Check if the vulnerability alerts are reported making vulnerabilities found only by OVAL and not NVD. 4.51 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:04:26 wazuh-modulesd[287103] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:04:26 wazuh-modulesd[287103] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:04:26 wazuh-modulesd[287103] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:04:26 wazuh-modulesd[287103] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:04:26 wazuh-modulesd[287103] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added debian (bullseye) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/debian/custom_debian_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:04:26 wazuh-modulesd[287103] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_alternative_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:04:52.658825 test_vulnerability_detector/test_scan_results/test_scan_provider_vulnerabilities.py::test_scan_provider_vulnerabilities[ALAS] description: Check if the vulnerability alerts are reported making vulnerabilities found only by OVAL and not NVD. 5.01 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:04:47 wazuh-modulesd[287378] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:04:47 wazuh-modulesd[287378] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:04:47 wazuh-modulesd[287378] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:04:47 wazuh-modulesd[287378] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:04:47 wazuh-modulesd[287378] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux-2022) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/alas/custom_alas_2022_feed.json' | Url: 'none' | Timeout: 300s 2023/07/31 17:04:47 wazuh-modulesd[287378] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_alternative_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:05:05.454528 test_vulnerability_detector/test_scan_results/test_scan_provider_vulnerabilities.py::test_scan_provider_vulnerabilities[Arch] description: Check if the vulnerability alerts are reported making vulnerabilities found only by OVAL and not NVD. 4.51 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:05:00 wazuh-modulesd[287529] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:05:00 wazuh-modulesd[287529] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:05:00 wazuh-modulesd[287529] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:05:00 wazuh-modulesd[287529] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:05:00 wazuh-modulesd[287529] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added arch feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/arch/custom_archlinux_feed.json' | Multi url: 'none' | Update since: 0 | Timeout: 300s 2023/07/31 17:05:00 wazuh-modulesd[287529] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_alternative_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:05:17.422240 test_vulnerability_detector/test_scan_results/test_scan_provider_vulnerabilities.py::test_scan_provider_vulnerabilities[SUSE] description: Check if the vulnerability alerts are reported making vulnerabilities found only by OVAL and not NVD. 3.66 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:05:13 wazuh-modulesd[287686] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:05:13 wazuh-modulesd[287686] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:05:13 wazuh-modulesd[287686] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:05:13 wazuh-modulesd[287686] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:05:13 wazuh-modulesd[287686] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (15-server) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/suse/custom_suse_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:05:13 wazuh-modulesd[287686] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_alternative_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:05:29.091765 test_vulnerability_detector/test_scan_results/test_scan_provider_vulnerabilities.py::test_scan_provider_vulnerabilities[ALMALINUX] description: Check if the vulnerability alerts are reported making vulnerabilities found only by OVAL and not NVD. 2.61 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:05:26 wazuh-modulesd[288276] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:05:26 wazuh-modulesd[288276] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:05:26 wazuh-modulesd[288276] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:05:26 wazuh-modulesd[288276] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:05:26 wazuh-modulesd[288276] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/almalinux/custom_alsa8_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:05:26 wazuh-modulesd[288276] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_alternative_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:05:44.403101 test_vulnerability_detector/test_scan_results/test_scan_vulnerabilities_triaged_null.py::test_scan_triaged_null_vulnerabilities[RHEL] description: Check if a vulnerable package with triaged NULL, is detected with the partial scan. 6.04 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:05:38 wazuh-modulesd[288849] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:05:38 wazuh-modulesd[288849] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:05:38 wazuh-modulesd[288849] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:05:38 wazuh-modulesd[288849] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:05:38 wazuh-modulesd[288849] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:05:38 wazuh-modulesd[288849] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:05:38 wazuh-modulesd[288849] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:06:09.762579 test_vulnerability_detector/test_scan_results/test_scan_vulnerability_removal.py::test_vulnerability_removal_update_package[Alert vulnerability removal] description: Check that the Vulnerability Detector module generates an alert when a vulnerability is removed from. the inventory when a package is updated to a non-vulnerable version. 17.07 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:05:52 wazuh-modulesd[288996] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:05:52 wazuh-modulesd[288996] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:05:52 wazuh-modulesd[288996] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:05:52 wazuh-modulesd[288996] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:05:52 wazuh-modulesd[288996] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:05:52 wazuh-modulesd[288996] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:05:52 wazuh-modulesd[288996] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 10s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:06:35.655141 test_vulnerability_detector/test_scan_results/test_scan_vulnerability_removal.py::test_vulnerability_removal_update_package[Alert vulnerability removal - ALAS 2022] description: Check that the Vulnerability Detector module generates an alert when a vulnerability is removed from. the inventory when a package is updated to a non-vulnerable version. 17.57 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:06:18 wazuh-modulesd[289234] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:06:18 wazuh-modulesd[289234] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:06:18 wazuh-modulesd[289234] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:06:18 wazuh-modulesd[289234] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:06:18 wazuh-modulesd[289234] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux-2022) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/alas/custom_alas_2022_feed.json' | Url: 'none' | Timeout: 300s 2023/07/31 17:06:18 wazuh-modulesd[289234] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 10s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:06:55.928589 test_vulnerability_detector/test_scan_results/test_scan_vulnerability_removal.py::test_vulnerability_removal_update_package[Alert vulnerability removal - SUSE] description: Check that the Vulnerability Detector module generates an alert when a vulnerability is removed from. the inventory when a package is updated to a non-vulnerable version. 12.07 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:06:43 wazuh-modulesd[289470] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:06:43 wazuh-modulesd[289470] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:06:43 wazuh-modulesd[289470] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:06:43 wazuh-modulesd[289470] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:06:43 wazuh-modulesd[289470] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (15-server) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/suse/custom_suse_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:06:43 wazuh-modulesd[289470] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 10s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:07:21.790021 test_vulnerability_detector/test_scan_results/test_scan_vulnerability_removal.py::test_vulnerability_removal_update_package[Alert vulnerability removal - ALMALINUX] description: Check that the Vulnerability Detector module generates an alert when a vulnerability is removed from. the inventory when a package is updated to a non-vulnerable version. 17.57 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:07:04 wazuh-modulesd[289788] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:07:04 wazuh-modulesd[289788] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:07:04 wazuh-modulesd[289788] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:07:04 wazuh-modulesd[289788] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:07:04 wazuh-modulesd[289788] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/almalinux/custom_alsa8_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:07:04 wazuh-modulesd[289788] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 10s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:07:42.155268 test_vulnerability_detector/test_scan_results/test_scan_vulnerability_removal.py::test_vulnerability_removal_delete_package[Alert vulnerability removal] description: Check that the Vulnerability Detector module generates an alert when a vulnerability is removed from. the inventory. 12.28 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:07:29 wazuh-modulesd[290001] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:07:29 wazuh-modulesd[290001] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:07:29 wazuh-modulesd[290001] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:07:29 wazuh-modulesd[290001] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:07:29 wazuh-modulesd[290001] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:07:29 wazuh-modulesd[290001] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:07:29 wazuh-modulesd[290001] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 10s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:08:07.546506 test_vulnerability_detector/test_scan_results/test_scan_vulnerability_removal.py::test_vulnerability_removal_delete_package[Alert vulnerability removal - ALAS 2022] description: Check that the Vulnerability Detector module generates an alert when a vulnerability is removed from. the inventory. 17.29 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:07:50 wazuh-modulesd[290213] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:07:50 wazuh-modulesd[290213] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:07:50 wazuh-modulesd[290213] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:07:50 wazuh-modulesd[290213] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:07:50 wazuh-modulesd[290213] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added alas (amazon-linux-2022) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/alas/custom_alas_2022_feed.json' | Url: 'none' | Timeout: 300s 2023/07/31 17:07:50 wazuh-modulesd[290213] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 10s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:08:32.108495 test_vulnerability_detector/test_scan_results/test_scan_vulnerability_removal.py::test_vulnerability_removal_delete_package[Alert vulnerability removal - SUSE] description: Check that the Vulnerability Detector module generates an alert when a vulnerability is removed from. the inventory. 16.57 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:08:15 wazuh-modulesd[290462] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:08:15 wazuh-modulesd[290462] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:08:15 wazuh-modulesd[290462] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:08:15 wazuh-modulesd[290462] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:08:15 wazuh-modulesd[290462] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added suse (15-server) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/suse/custom_suse_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:08:15 wazuh-modulesd[290462] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 10s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:08:56.482685 test_vulnerability_detector/test_scan_results/test_scan_vulnerability_removal.py::test_vulnerability_removal_delete_package[Alert vulnerability removal - ALMALINUX] description: Check that the Vulnerability Detector module generates an alert when a vulnerability is removed from. the inventory. 16.33 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:08:40 wazuh-modulesd[290680] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:08:40 wazuh-modulesd[290680] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:08:40 wazuh-modulesd[290680] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:08:40 wazuh-modulesd[290680] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:08:40 wazuh-modulesd[290680] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added almalinux (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/almalinux/custom_alsa8_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:08:40 wazuh-modulesd[290680] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 10s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_results/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:09:05.265469 test_vulnerability_detector/test_scan_types/test_baseline_scan_type.py::test_baseline_scan_start[RHEL] description: Check that the baseline scan starts. 0.50 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:09:04 wazuh-modulesd[290901] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:09:04 wazuh-modulesd[290901] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:09:04 wazuh-modulesd[290901] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:09:04 wazuh-modulesd[290901] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:09:04 wazuh-modulesd[290901] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:09:04 wazuh-modulesd[290901] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:09:04 wazuh-modulesd[290901] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:09:14.586536 test_vulnerability_detector/test_scan_types/test_baseline_scan_type.py::test_baseline_scan_alert[RHEL] description: Check that the baseline scan detects vulnerabilities, and reports them as alerts. 1.00 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:09:13 wazuh-modulesd[291028] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:09:13 wazuh-modulesd[291028] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:09:13 wazuh-modulesd[291028] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:09:13 wazuh-modulesd[291028] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:09:13 wazuh-modulesd[291028] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:09:13 wazuh-modulesd[291028] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:09:13 wazuh-modulesd[291028] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:09:23.825597 test_vulnerability_detector/test_scan_types/test_full_scan_type.py::test_full_scan_start[RHEL] description: Check that the full scan starts. 1.00 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:09:22 wazuh-modulesd[291157] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:09:22 wazuh-modulesd[291157] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:09:22 wazuh-modulesd[291157] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:09:22 wazuh-modulesd[291157] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:09:22 wazuh-modulesd[291157] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:09:22 wazuh-modulesd[291157] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:09:22 wazuh-modulesd[291157] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:09:45.227071 test_vulnerability_detector/test_scan_types/test_full_scan_type.py::test_full_scan_no_alert_after_no_changes[RHEL] description: Check that the full scan does not report previously reported vulnerabilities. 13.07 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:09:32 wazuh-modulesd[291292] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:09:32 wazuh-modulesd[291292] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:09:32 wazuh-modulesd[291292] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:09:32 wazuh-modulesd[291292] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:09:32 wazuh-modulesd[291292] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:09:32 wazuh-modulesd[291292] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:09:32 wazuh-modulesd[291292] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
------------------------------Captured stderr call------------------------------
2023-07-31 17:09:45,216 - wazuh_testing - ERROR - Could not find the report which says that CVE-000 affects the package custom-package-0 2023-07-31 17:09:45,216 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 17:09:45,216 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find the report which says that CVE-000 affects the package custom-package-0 ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 20:09:59.528866 test_vulnerability_detector/test_scan_types/test_full_scan_type.py::test_full_scan_alert_after_changes[RHEL] description: Check that the full scan reports a new vulnerability from the latest scan. 6.05 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:09:53 wazuh-modulesd[291487] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:09:53 wazuh-modulesd[291487] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:09:53 wazuh-modulesd[291487] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:09:53 wazuh-modulesd[291487] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:09:53 wazuh-modulesd[291487] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:09:53 wazuh-modulesd[291487] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:09:53 wazuh-modulesd[291487] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:10:19.921146 test_vulnerability_detector/test_scan_types/test_full_scan_type.py::test_full_scan_remove_vulnerability_alert[RHEL] description: Check that the full scan reports removed vulnerabilities. 12.07 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:10:07 wazuh-modulesd[291651] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:10:07 wazuh-modulesd[291651] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:10:07 wazuh-modulesd[291651] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:10:07 wazuh-modulesd[291651] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:10:07 wazuh-modulesd[291651] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:10:07 wazuh-modulesd[291651] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:10:07 wazuh-modulesd[291651] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:10:28.684025 test_vulnerability_detector/test_scan_types/test_partial_scan_type.py::test_partial_scan_start[RHEL] description: Check that the partial scan starts. 0.50 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:10:28 wazuh-modulesd[291879] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:10:28 wazuh-modulesd[291879] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:10:28 wazuh-modulesd[291879] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:10:28 wazuh-modulesd[291879] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:10:28 wazuh-modulesd[291879] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:10:28 wazuh-modulesd[291879] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:10:28 wazuh-modulesd[291879] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:10:52.438389 test_vulnerability_detector/test_scan_types/test_partial_scan_type.py::test_partial_scan_no_alert_after_no_changes[RHEL] description: Check that the partial scan does not report previously reported vulnerabilities. 15.52 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:10:36 wazuh-modulesd[292002] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:10:36 wazuh-modulesd[292002] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:10:36 wazuh-modulesd[292002] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:10:36 wazuh-modulesd[292002] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:10:36 wazuh-modulesd[292002] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:10:36 wazuh-modulesd[292002] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:10:36 wazuh-modulesd[292002] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
------------------------------Captured stderr call------------------------------
2023-07-31 17:10:52,428 - wazuh_testing - ERROR - Could not find the report which says that CVE-000 affects the package custom-package-0 2023-07-31 17:10:52,428 - wazuh_testing - ERROR - Results accumulated: 0 2023-07-31 17:10:52,428 - wazuh_testing - ERROR - Results expected: 1
-------------------------------Captured log call--------------------------------
ERROR  wazuh_testing:monitoring.py:466 Could not find the report which says that CVE-000 affects the package custom-package-0 ERROR  wazuh_testing:monitoring.py:467 Results accumulated: 0 ERROR  wazuh_testing:monitoring.py:469 Results expected: 1
Passed 2023-07-31 20:11:11.702694 test_vulnerability_detector/test_scan_types/test_partial_scan_type.py::test_partial_scan_alert_after_changes[RHEL] description: Check that the partial scan reports a new vulnerability from the latest scan. 11.02 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:11:00 wazuh-modulesd[292194] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:11:00 wazuh-modulesd[292194] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:11:00 wazuh-modulesd[292194] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:11:00 wazuh-modulesd[292194] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:11:00 wazuh-modulesd[292194] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:11:00 wazuh-modulesd[292194] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:11:00 wazuh-modulesd[292194] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:11:27.000613 test_vulnerability_detector/test_scan_types/test_partial_scan_type.py::test_partial_scan_remove_vulnerability_alert[RHEL] description: Check that the partial scan reports removed vulnerabilities. 7.01 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:11:19 wazuh-modulesd[292370] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:11:19 wazuh-modulesd[292370] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:11:19 wazuh-modulesd[292370] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:11:19 wazuh-modulesd[292370] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:11:19 wazuh-modulesd[292370] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:11:19 wazuh-modulesd[292370] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:11:19 wazuh-modulesd[292370] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_scan_types/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:11:37.439246 test_vulnerability_detector/test_vulnerability_inventory/test_vulnerability_inventory_baseline_scan.py::test_vulnerability_inserted_baseline_scan[RHEL] description: Check that the baseline scan inserts the detected vulnerabilities 2.51 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:11:34 wazuh-modulesd[292519] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:11:34 wazuh-modulesd[292519] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:11:34 wazuh-modulesd[292519] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:11:34 wazuh-modulesd[292519] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:11:34 wazuh-modulesd[292519] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:11:34 wazuh-modulesd[292519] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:11:34 wazuh-modulesd[292519] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:11:48.218096 test_vulnerability_detector/test_vulnerability_inventory/test_vulnerability_inventory_full_scan.py::test_vulnerability_inserted_full_scan[RHEL] description: Check that the full scan inserts the detected vulnerabilities 2.51 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:11:45 wazuh-modulesd[292670] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:11:45 wazuh-modulesd[292670] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:11:45 wazuh-modulesd[292670] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:11:45 wazuh-modulesd[292670] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:11:45 wazuh-modulesd[292670] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:11:45 wazuh-modulesd[292670] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:11:45 wazuh-modulesd[292670] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:11:58.300746 test_vulnerability_detector/test_vulnerability_inventory/test_vulnerability_inventory_full_scan.py::test_vulnerability_removed_full_scan[RHEL] description: Check that the full scan removes the obsolete vulnerabilities from the inventory. 1.00 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:11:57 wazuh-modulesd[292829] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:11:57 wazuh-modulesd[292829] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:11:57 wazuh-modulesd[292829] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:11:57 wazuh-modulesd[292829] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:11:57 wazuh-modulesd[292829] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:11:57 wazuh-modulesd[292829] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:11:57 wazuh-modulesd[292829] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:12:08.906153 test_vulnerability_detector/test_vulnerability_inventory/test_vulnerability_inventory_partial_scan.py::test_vulnerability_inserted_partial_scan[RHEL] description: Check that the partial scan inserts the detected vulnerabilities. 2.51 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:12:06 wazuh-modulesd[292963] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:12:06 wazuh-modulesd[292963] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:12:06 wazuh-modulesd[292963] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:12:06 wazuh-modulesd[292963] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:12:06 wazuh-modulesd[292963] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:12:06 wazuh-modulesd[292963] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:12:06 wazuh-modulesd[292963] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s
Passed 2023-07-31 20:12:17.978668 test_vulnerability_detector/test_vulnerability_inventory/test_vulnerability_inventory_partial_scan.py::test_vulnerability_removed_partial_scan[RHEL] description: Check that the partial scan removes the obsolete vulnerabilities from the inventory. 1.00 server 1
-----------------------------Captured stderr setup------------------------------
2023/07/31 17:12:16 wazuh-modulesd[293104] debug_op.c:70 at _log(): DEBUG: Logging module auto-initialized 2023/07/31 17:12:16 wazuh-modulesd[293104] main.c:77 at main(): DEBUG: Wazuh home directory: /var/ossec 2023/07/31 17:12:16 wazuh-modulesd[293104] wmodules-osquery-monitor.c:78 at wm_osquery_monitor_read(): DEBUG: Logpath read: /var/log/osquery/osqueryd.results.log 2023/07/31 17:12:16 wazuh-modulesd[293104] wmodules-osquery-monitor.c:84 at wm_osquery_monitor_read(): DEBUG: configPath read: /etc/osquery/osquery.conf 2023/07/31 17:12:16 wazuh-modulesd[293104] wmodules-vuln-detector.c:686 at wm_vuldet_read_provider(): DEBUG: Added redhat (8) feed. Interval: 3600s | Path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/redhat/custom_redhat_oval_feed.xml' | Url: 'none' | Timeout: 300s 2023/07/31 17:12:16 wazuh-modulesd[293104] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added jredhat feed. Interval: 3600s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/redhat/custom_redhat_json_feed.json' | Multi url: 'none' | Update since: 1999 | Timeout: 300s 2023/07/31 17:12:16 wazuh-modulesd[293104] wmodules-vuln-detector.c:744 at wm_vuldet_read_provider(): DEBUG: Added nvd feed. Interval: 86400s | Multi path: '/home/mcervilla/Projects/wazuh-qa/tests/integration/test_vulnerability_detector/test_vulnerability_inventory/../data/feeds/nvd/custom_nvd_feed.json' | Multi url: 'none' | Update since: 2010 | Timeout: 300s