#11326 added tsca table in mr and scheme database
This commit is contained in:
parent
06eae47560
commit
2e983b3ef0
|
@ -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
|
@ -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
Loading…
Reference in New Issue