diff --git a/public/controllers/agents.js b/public/controllers/agents.js index 1defb9af7..c73fc4546 100644 --- a/public/controllers/agents.js +++ b/public/controllers/agents.js @@ -36,6 +36,7 @@ function ($scope, $location, $q, $rootScope, appState, genericReq, apiReq, Agent general : 7, fim : 8, pm : 4, + vuls : 100, oscap : 13, audit : 15, pci : 3, @@ -49,6 +50,7 @@ function ($scope, $location, $q, $rootScope, appState, genericReq, apiReq, Agent general : { group: '' }, fim : { group: 'syscheck' }, pm : { group: 'rootcheck' }, + vuls : { group: 'vulnerability-detector' }, oscap : { group: 'oscap' }, audit : { group: 'audit' }, pci : { group: 'pci_dss' }, diff --git a/public/controllers/overview.js b/public/controllers/overview.js index 948381507..91043e9d2 100644 --- a/public/controllers/overview.js +++ b/public/controllers/overview.js @@ -32,6 +32,7 @@ app.controller('overviewController', function ($scope, $location, $rootScope, ap general : 15, fim : 17, pm : 5, + vuls : 100, oscap : 14, audit : 16, pci : 6, @@ -44,6 +45,7 @@ app.controller('overviewController', function ($scope, $location, $rootScope, ap general : { group: '' }, fim : { group: 'syscheck' }, pm : { group: 'rootcheck' }, + vuls : { group: 'vulnerability-detector' }, oscap : { group: 'oscap' }, audit : { group: 'audit' }, pci : { group: 'pci_dss' },