Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ All notable changes to the Wazuh app project will be documented in this file.

### Fixed

- Fixed missing scan settings in Inventory Data [#7811](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7811)
- Fixed the Endpoint summary to correctly display outdated agents without using filters, resolving previous inconsistencies [#7796](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7796)
- Fixed missing provider and queue_size fields in whodata configuration [#7596](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7596)
- Fixed an error that caused PDF report tables to overflow the page width [#7630](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7630)
Expand Down
4 changes: 4 additions & 0 deletions docker/imposter/agents/configuration/wmodules-wmodules.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@
"ports": "yes",
"ports_all": "no",
"processes": "yes",
"groups": "yes",
"users": "yes",
"services": "yes",
"browser_extensions": "yes",
"sync_max_eps": 10
}
},
Expand Down
4 changes: 4 additions & 0 deletions docker/imposter/cluster/configuration/wmodules_wmodules.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@
"ports": "yes",
"ports_all": "no",
"processes": "yes",
"groups": "yes",
"users": "yes",
"services": "yes",
"browser_extensions": "yes",
"sync_max_eps": 10
}
},
Expand Down
4 changes: 4 additions & 0 deletions docker/imposter/manager/configuration/wmodules_wmodules.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@
"ports": "yes",
"ports_all": "no",
"processes": "yes",
"groups": "yes",
"users": "yes",
"services": "yes",
"browser_extensions": "yes",
"sync_max_eps": 10
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ const scanSettings = [
{ field: 'network', label: 'Scan network interfaces' },
{ field: 'ports', label: 'Scan listening network ports' },
{ field: 'ports_all', label: 'Scan all network ports' },
{ field: 'groups', label: 'Scan groups' },
{ field: 'users', label: 'Scan users' },
{ field: 'services', label: 'Scan services' },
{ field: 'browser_extensions', label: 'Scan browser extensions' },
{ field: 'sync_max_eps', label: 'Maximum event reporting throughput' },
];

const helpLinks = [
Expand Down Expand Up @@ -88,8 +93,8 @@ class WzConfigurationInventory extends Component {
)}
{currentConfig && this.wodleConfig && this.wodleConfig.syscollector && (
<WzConfigurationSettingsHeader
title="Main settings"
description="General settings applied to all the scans"
title='Main settings'
description='General settings applied to all the scans'
help={helpLinks}
>
<WzConfigurationSettingsGroup
Expand Down
Loading