mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-29 08:45:12 +02:00
#11326 added tsca table in mr and scheme database
This commit is contained in:
parent
06eae47560
commit
2e983b3ef0
@ -523,6 +523,3 @@ module_plugin "%PROGRAMFILES%\Pandora_Agent\util\autodiscover.exe" --default
|
|||||||
#module_exec echo Bordón
|
#module_exec echo Bordón
|
||||||
#module_native_encoding OEM
|
#module_native_encoding OEM
|
||||||
#module_end
|
#module_end
|
||||||
|
|
||||||
#Hardening plugin for security compliance analysis. Enable to use it.
|
|
||||||
#module_plugin C:\Program Files\pandora_agent\util\pandora_sca.exe
|
|
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,
|
`advanced_filter` TEXT NULL,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;
|
) 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…
x
Reference in New Issue
Block a user