2018-06-18 15:50:23 +00:00
|
|
|
<div flex layout="column" layout-align="start stretch" ng-if="tab === 'welcome'" ng-show="!load">
|
2018-06-07 08:32:53 +00:00
|
|
|
|
2018-07-02 14:37:09 +00:00
|
|
|
<!-- Headline -->
|
|
|
|
<div layout="column" layout-padding>
|
2018-07-02 14:45:04 +00:00
|
|
|
<span class="font-size-18"><i class="fa fa-fw fa-tv" aria-hidden="true"></i> Agent overview</span>
|
2018-07-02 14:37:09 +00:00
|
|
|
</div>
|
|
|
|
<!-- End headline -->
|
|
|
|
|
2018-06-27 15:18:52 +00:00
|
|
|
<!-- Agent information section -->
|
2018-07-26 11:31:43 +00:00
|
|
|
<div layout="row" layout-padding class="wz-padding-top-0 wz-padding-bottom-0">
|
|
|
|
<md-card flex class="wz-metric-color wz-md-card wz-no-padding">
|
2018-06-27 15:18:52 +00:00
|
|
|
<md-card-content layout="row" class="wz-padding-metric">
|
|
|
|
<div class="wz-text-truncatable" flex>
|
|
|
|
Name: <span class="wz-text-bold">{{ agent.name }}</span>
|
|
|
|
<md-tooltip ng-if="agent.name.length > 25" md-direction="bottom" class="wz-tooltip">
|
|
|
|
Full name: {{ agent.name }}
|
|
|
|
</md-tooltip>
|
|
|
|
</div>
|
|
|
|
<div class="wz-text-truncatable" flex>
|
|
|
|
IP: <span class="wz-text-bold">{{ agent.ip }}</span>
|
|
|
|
</div>
|
|
|
|
<div class="wz-text-truncatable" flex ng-if="agent.group">
|
|
|
|
Group: <span class="wz-text-bold wz-text-link" ng-click="goGroups(agent)">{{ agent.group }}</span>
|
|
|
|
</div>
|
|
|
|
<div class="wz-text-truncatable" flex ng-if="agent.version">
|
|
|
|
Version: <span class="wz-text-bold">{{ agent.version }}</span>
|
|
|
|
</div>
|
|
|
|
<div class="wz-text-truncatable" flex>
|
|
|
|
OS: <span class="wz-text-bold">{{ agentOS }}</span>
|
|
|
|
<md-tooltip ng-if="agentOS.length > 25" md-direction="bottom" class="wz-tooltip">
|
|
|
|
Full OS name: {{ agentOS }}
|
|
|
|
</md-tooltip>
|
|
|
|
</div>
|
|
|
|
</md-card-content>
|
|
|
|
</md-card>
|
|
|
|
</div>
|
2018-07-26 11:31:43 +00:00
|
|
|
<div layout="row" layout-padding class="wz-padding-top-0 wz-padding-bottom-0">
|
|
|
|
<md-card flex class="wz-metric-color wz-md-card wz-no-padding">
|
2018-06-27 15:18:52 +00:00
|
|
|
<md-card-content layout="row" class="wz-padding-metric">
|
|
|
|
<div class="wz-text-truncatable" flex>Last keep alive:<span class="wz-text-bold"> {{agent.lastKeepAlive || 'Unknown' }}</span></div>
|
|
|
|
<div class="wz-text-truncatable" flex>Registration date:<span class="wz-text-bold"> {{agent.dateAdd}}</span></div>
|
|
|
|
<div class="wz-text-truncatable" flex ng-if="agent.syscheck.inProgress">Last syscheck scan:<span class="wz-text-bold"> Scan in progress</span></div>
|
|
|
|
<div class="wz-text-truncatable" flex ng-if="!agent.syscheck.inProgress">Last syscheck scan:<span class="wz-text-bold"> {{agent.syscheck.end || 'Unknown'}}</span>
|
|
|
|
<md-tooltip ng-if="!agent.syscheck.inProgress && agent.syscheck.start && agent.syscheck.end" md-direction="bottom" class="wz-tooltip">
|
|
|
|
Start time: {{ agent.syscheck.start || 'Unknown'}} <br>
|
|
|
|
End time: {{ agent.syscheck.end || 'Unknown'}} <br>
|
|
|
|
Duration time: {{ agent.syscheck.duration +' minutes' || 'Unknown'}}
|
|
|
|
</md-tooltip>
|
|
|
|
</div>
|
|
|
|
<div class="wz-text-truncatable" flex ng-if="agent.rootcheck.inProgress">Last rootcheck scan:<span class="wz-text-bold"> Scan in progress</span></div>
|
|
|
|
<div class="wz-text-truncatable" flex ng-if="!agent.rootcheck.inProgress">Last rootcheck scan:<span class="wz-text-bold"> {{agent.rootcheck.end || 'Unknown'}}</span>
|
|
|
|
<md-tooltip ng-if="!agent.rootcheck.inProgress && agent.rootcheck.start && agent.rootcheck.end" md-direction="bottom" class="wz-tooltip">
|
|
|
|
Start time: {{ agent.rootcheck.start || 'Unknown'}} <br>
|
|
|
|
End time: {{ agent.rootcheck.end || 'Unknown'}} <br>
|
|
|
|
Duration time: {{ agent.rootcheck.duration +' minutes' || 'Unknown'}}
|
|
|
|
</md-tooltip>
|
|
|
|
</div>
|
|
|
|
</md-card-content>
|
|
|
|
</md-card>
|
|
|
|
</div>
|
|
|
|
<!-- End agent information section -->
|
|
|
|
|
2018-06-07 08:32:53 +00:00
|
|
|
|
2018-07-26 11:31:43 +00:00
|
|
|
<div layout="row" layout-padding>
|
|
|
|
<div class="euiFlexGroup euiFlexGroup--gutterLarge euiFlexGroup--responsive">
|
|
|
|
<div class="euiFlexItem">
|
|
|
|
<div class="euiPanel euiPanel--paddingLarge">
|
2018-08-13 10:15:38 +00:00
|
|
|
<h3 class="euiTitle">Security Information Management</h3>
|
2018-07-26 11:31:43 +00:00
|
|
|
<div class="euiSpacer euiSpacer--m"></div>
|
|
|
|
<div class="euiFlexGrid euiFlexGrid--gutterLarge euiFlexGrid--halves">
|
2018-08-08 09:11:48 +00:00
|
|
|
<wz-welcome-card
|
2018-08-21 15:11:57 +00:00
|
|
|
class="euiFlexItem" logo="'icons/app_dashboard.svg'" title="'Security events'"
|
2018-07-26 11:31:43 +00:00
|
|
|
switch-tab="switchTab('general')" current-tab="'general'"
|
2018-08-13 10:15:38 +00:00
|
|
|
description="TabDescription.general.description"
|
2018-07-26 11:31:43 +00:00
|
|
|
></wz-welcome-card>
|
2018-08-08 09:11:48 +00:00
|
|
|
<wz-welcome-card
|
2018-08-21 15:11:57 +00:00
|
|
|
class="euiFlexItem" logo="'icons/app_logging.svg'" title="'Integrity monitoring'"
|
2018-07-26 11:31:43 +00:00
|
|
|
switch-tab="switchTab('fim')" current-tab="'fim'"
|
2018-07-31 07:25:41 +00:00
|
|
|
description="TabDescription.fim.description"
|
2018-07-26 11:31:43 +00:00
|
|
|
></wz-welcome-card>
|
2018-08-08 09:11:48 +00:00
|
|
|
<wz-welcome-card
|
2018-08-21 15:11:57 +00:00
|
|
|
class="euiFlexItem" logo="'icons/app_devtools.svg'"
|
2018-07-26 11:31:43 +00:00
|
|
|
title="'Configuration'" switch-tab="switchTab('configuration')" current-tab="'configuration'"
|
2018-07-31 07:25:41 +00:00
|
|
|
description="TabDescription.configuration.description"
|
2018-07-26 11:31:43 +00:00
|
|
|
></wz-welcome-card>
|
2018-08-08 09:11:48 +00:00
|
|
|
<wz-welcome-card
|
2018-08-22 10:53:14 +00:00
|
|
|
ng-if="syscollector && syscollector.os && syscollector.hardware" class="euiFlexItem" logo="'icons/app_index_pattern.svg'"
|
2018-08-13 10:15:38 +00:00
|
|
|
title="'Inventory data'" switch-tab="switchTab('syscollector')" current-tab="'syscollector'"
|
2018-07-31 07:25:41 +00:00
|
|
|
description="TabDescription.syscollector.description"
|
2018-07-26 11:31:43 +00:00
|
|
|
></wz-welcome-card>
|
|
|
|
</div>
|
2018-06-07 08:32:53 +00:00
|
|
|
</div>
|
2018-07-26 11:31:43 +00:00
|
|
|
</div>
|
|
|
|
<div class="euiFlexItem">
|
|
|
|
<div class="euiPanel euiPanel--paddingLarge">
|
2018-08-13 10:15:38 +00:00
|
|
|
<h3 class="euiTitle">Auditing and Policy Monitoring</h3>
|
2018-07-26 11:31:43 +00:00
|
|
|
<div class="euiSpacer euiSpacer--m"></div>
|
|
|
|
<div class="euiFlexGrid euiFlexGrid--gutterLarge euiFlexGrid--halves">
|
2018-08-08 09:11:48 +00:00
|
|
|
<wz-welcome-card
|
2018-08-21 15:11:57 +00:00
|
|
|
class="euiFlexItem" logo="'icons/app_advanced_settings.svg'"
|
2018-07-26 11:31:43 +00:00
|
|
|
title="'Policy monitoring'" switch-tab="switchTab('pm')" current-tab="'pm'"
|
2018-07-31 07:25:41 +00:00
|
|
|
description="TabDescription.pm.description"
|
2018-07-26 11:31:43 +00:00
|
|
|
></wz-welcome-card>
|
2018-08-08 09:11:48 +00:00
|
|
|
<wz-welcome-card
|
2018-08-21 15:11:57 +00:00
|
|
|
ng-if="extensions.audit" class="euiFlexItem" logo="'icons/app_monitoring.svg'"
|
2018-08-13 10:15:38 +00:00
|
|
|
title="'System auditing'" switch-tab="switchTab('audit')" current-tab="'audit'"
|
2018-07-31 07:25:41 +00:00
|
|
|
description="TabDescription.audit.description"
|
2018-07-26 11:31:43 +00:00
|
|
|
></wz-welcome-card>
|
2018-08-08 09:11:48 +00:00
|
|
|
<wz-welcome-card
|
2018-08-21 15:11:57 +00:00
|
|
|
ng-if="extensions.oscap" class="euiFlexItem" logo="'icons/app_discover.svg'"
|
2018-08-13 10:15:38 +00:00
|
|
|
title="'OpenSCAP'" switch-tab="switchTab('oscap')" current-tab="'oscap'"
|
2018-07-31 07:25:41 +00:00
|
|
|
description="TabDescription.oscap.description"
|
2018-07-26 11:31:43 +00:00
|
|
|
></wz-welcome-card>
|
2018-08-08 09:11:48 +00:00
|
|
|
<wz-welcome-card
|
2018-08-21 15:11:57 +00:00
|
|
|
ng-if="extensions.ciscat" class="euiFlexItem" logo="'icons/app_management.svg'"
|
2018-07-26 11:31:43 +00:00
|
|
|
title="'CIS-CAT'" switch-tab="switchTab('ciscat')" current-tab="'ciscat'"
|
2018-07-31 07:25:41 +00:00
|
|
|
description="TabDescription.ciscat.description"
|
2018-07-26 11:31:43 +00:00
|
|
|
></wz-welcome-card>
|
|
|
|
</div>
|
2018-06-07 08:32:53 +00:00
|
|
|
</div>
|
2018-07-26 11:31:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-06-07 08:32:53 +00:00
|
|
|
</div>
|
|
|
|
|
2018-07-26 11:31:43 +00:00
|
|
|
<div layout="row" layout-padding>
|
|
|
|
<div class="euiFlexGroup euiFlexGroup--gutterLarge euiFlexGroup--responsive">
|
|
|
|
<div class="euiFlexItem">
|
|
|
|
<div class="euiFlexItem">
|
|
|
|
<div class="euiPanel euiPanel--paddingLarge">
|
2018-08-13 10:15:38 +00:00
|
|
|
<h3 class="euiTitle">Threat Detection and Response</h3>
|
2018-07-26 11:31:43 +00:00
|
|
|
<div class="euiSpacer euiSpacer--m"></div>
|
|
|
|
<div class="euiFlexGrid euiFlexGrid--gutterLarge euiFlexGrid--halves">
|
2018-08-08 09:11:48 +00:00
|
|
|
<wz-welcome-card
|
2018-08-21 15:11:57 +00:00
|
|
|
class="euiFlexItem" logo="'icons/app_security.svg'"
|
2018-07-26 11:31:43 +00:00
|
|
|
title="'Vulnerabilities'" switch-tab="switchTab('vuls')" current-tab="'vuls'"
|
2018-07-31 07:25:41 +00:00
|
|
|
description="TabDescription.vuls.description"
|
2018-07-26 11:31:43 +00:00
|
|
|
></wz-welcome-card>
|
2018-08-08 09:11:48 +00:00
|
|
|
<wz-welcome-card
|
2018-08-21 15:11:57 +00:00
|
|
|
ng-if="extensions.virustotal" class="euiFlexItem" logo="'icons/app_saved_objects.svg'"
|
2018-08-13 10:15:38 +00:00
|
|
|
title="'VirusTotal'" switch-tab="switchTab('virustotal')" current-tab="'virustotal'"
|
2018-07-31 07:25:41 +00:00
|
|
|
description="TabDescription.virustotal.description"
|
2018-07-26 11:31:43 +00:00
|
|
|
></wz-welcome-card>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-06-07 08:32:53 +00:00
|
|
|
</div>
|
2018-07-26 11:31:43 +00:00
|
|
|
</div>
|
|
|
|
<div class="euiFlexItem" ng-if="extensions && (extensions.pci || extensions.gdpr)">
|
|
|
|
<div class="euiFlexItem">
|
|
|
|
<div class="euiPanel euiPanel--paddingLarge">
|
2018-08-13 10:15:38 +00:00
|
|
|
<h3 class="euiTitle">Regulatory Compliance</h3>
|
2018-07-26 11:31:43 +00:00
|
|
|
<div class="euiSpacer euiSpacer--m"></div>
|
|
|
|
<div class="euiFlexGrid euiFlexGrid--gutterLarge euiFlexGrid--halves">
|
2018-08-08 09:11:48 +00:00
|
|
|
<wz-welcome-card
|
2018-08-21 15:11:57 +00:00
|
|
|
ng-if="extensions.pci" class="euiFlexItem" logo="'icons/app_apm.svg'"
|
2018-07-26 11:31:43 +00:00
|
|
|
title="'PCI DSS'" switch-tab="switchTab('pci')" current-tab="'pci'"
|
2018-07-31 07:25:41 +00:00
|
|
|
description="TabDescription.pci.description"
|
2018-07-26 11:31:43 +00:00
|
|
|
></wz-welcome-card>
|
2018-08-08 09:11:48 +00:00
|
|
|
<wz-welcome-card
|
2018-08-21 15:11:57 +00:00
|
|
|
ng-if="extensions.gdpr" class="euiFlexItem" logo="'icons/app_visualize.svg'"
|
2018-07-26 11:31:43 +00:00
|
|
|
title="'GDPR'" switch-tab="switchTab('gdpr')" current-tab="'gdpr'"
|
2018-07-31 07:25:41 +00:00
|
|
|
description="TabDescription.gdpr.description"
|
2018-07-26 11:31:43 +00:00
|
|
|
></wz-welcome-card>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-06-07 08:32:53 +00:00
|
|
|
</div>
|
2018-07-02 14:37:09 +00:00
|
|
|
|
2018-06-07 08:32:53 +00:00
|
|
|
</div>
|