#11126 added binary

This commit is contained in:
Daniel Cebrian 2023-10-31 10:04:39 +01:00
parent 200f63b516
commit e6ca7ce476
2 changed files with 4 additions and 4 deletions

View File

@ -164217,7 +164217,7 @@ MODIFY COLUMN `id` INT NOT NULL AUTO_INCREMENT;
-- Insert new Pandora vulscan APP
SET @short_name = 'pandorafms.vulnscan';
SET @name = 'Vulnerability Scanner';
SET @section = 'cloud';
SET @section = 'app';
SET @description = 'Pandora FMS Vulnerability Scanner. Scans the network looking for known software vulnerabilities.';
SET @version = '1.0';
@ -164225,7 +164225,7 @@ INSERT IGNORE INTO tdiscovery_apps (id_app, short_name, name, section, descripti
SELECT @id_app := id_app FROM tdiscovery_apps WHERE short_name = @short_name;
-- Insert into tdiscovery_apps_scripts
INSERT IGNORE INTO tdiscovery_apps_scripts (id_app, macro, value) VALUES (@id_app, '_exec1_', 'pandora_vulnscan.py');
INSERT IGNORE INTO tdiscovery_apps_scripts (id_app, macro, value) VALUES (@id_app, '_exec1_', 'bin/pandora_vulnscan');
-- Insert into tdiscovery_apps_executions
INSERT IGNORE INTO tdiscovery_apps_executions (id_app, execution) VALUES (@id_app, ''_exec1_' '__pandoraServerConf__' '_agentGroups_' -t _numThreads_');

View File

@ -166691,7 +166691,7 @@ INSERT INTO pandora_cve VALUES
-- Insert new Pandora vulscan APP
SET @short_name = 'pandorafms.vulnscan';
SET @name = 'Vulnerability Scanner';
SET @section = 'cloud';
SET @section = 'app';
SET @description = 'Pandora FMS Vulnerability Scanner. Scans the network looking for known software vulnerabilities.';
SET @version = '1.0';
@ -166699,7 +166699,7 @@ INSERT IGNORE INTO tdiscovery_apps (id_app, short_name, name, section, descripti
SELECT @id_app := id_app FROM tdiscovery_apps WHERE short_name = @short_name;
-- Insert into tdiscovery_apps_scripts
INSERT IGNORE INTO tdiscovery_apps_scripts (id_app, macro, value) VALUES (@id_app, '_exec1_', 'pandora_vulnscan.py');
INSERT IGNORE INTO tdiscovery_apps_scripts (id_app, macro, value) VALUES (@id_app, '_exec1_', 'bin/pandora_vulnscan');
-- Insert into tdiscovery_apps_executions
INSERT IGNORE INTO tdiscovery_apps_executions (id_app, execution) VALUES (@id_app, ''_exec1_' '__pandoraServerConf__' '_agentGroups_' -t _numThreads_');