#11326 added tsca table in mr and scheme database

This commit is contained in:
Daniel Cebrian 2023-08-09 15:01:14 +02:00
parent 06eae47560
commit 2e983b3ef0
4 changed files with 44 additions and 4 deletions

View File

@ -522,7 +522,4 @@ module_plugin "%PROGRAMFILES%\Pandora_Agent\util\autodiscover.exe" --default
#module_type generic_data_string
#module_exec echo Bordón
#module_native_encoding OEM
#module_end
#Hardening plugin for security compliance analysis. Enable to use it.
#module_plugin C:\Program Files\pandora_agent\util\pandora_sca.exe
#module_end

File diff suppressed because one or more lines are too long

View File

@ -4407,3 +4407,17 @@ CREATE TABLE IF NOT EXISTS `tnetwork_explorer_filter` (
`advanced_filter` TEXT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;
-- ---------------------------------------------------------------------
-- Table `tsca`
-- ---------------------------------------------------------------------
CREATE TABLE IF NOT EXISTS `tsca` (
`id` int NOT NULL,
`title` varchar(255) DEFAULT NULL,
`description` text DEFAULT NULL,
`rationale` text DEFAULT NULL,
`impact` text DEFAULT NULL,
`remediation` text DEFAULT NULL,
`compliance` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;

File diff suppressed because one or more lines are too long