UT: Remove supported_os from default_config.py

"supported_os" was removed from the schema in d079d74b
This commit is contained in:
Mike Salvatore 2022-06-23 14:56:24 -04:00
parent bba7139be6
commit 6e951ed65d
1 changed files with 0 additions and 8 deletions

View File

@ -1,4 +1,3 @@
from common import OperatingSystems
from common.configuration import AgentConfigurationSchema from common.configuration import AgentConfigurationSchema
flat_config = { flat_config = {
@ -85,39 +84,32 @@ flat_config = {
{ {
"name": "MSSQLExploiter", "name": "MSSQLExploiter",
"options": {}, "options": {},
"supported_os": [OperatingSystems.WINDOWS.name],
}, },
{ {
"name": "PowerShellExploiter", "name": "PowerShellExploiter",
"options": {}, "options": {},
"supported_os": [OperatingSystems.WINDOWS.name],
}, },
{ {
"name": "SSHExploiter", "name": "SSHExploiter",
"options": {}, "options": {},
"supported_os": [OperatingSystems.LINUX.name],
}, },
{ {
"name": "SmbExploiter", "name": "SmbExploiter",
"options": {"smb_download_timeout": 30}, "options": {"smb_download_timeout": 30},
"supported_os": [OperatingSystems.WINDOWS.name],
}, },
{ {
"name": "WmiExploiter", "name": "WmiExploiter",
"options": {"smb_download_timeout": 30}, "options": {"smb_download_timeout": 30},
"supported_os": [OperatingSystems.WINDOWS.name],
}, },
], ],
"vulnerability": [ "vulnerability": [
{ {
"name": "HadoopExploiter", "name": "HadoopExploiter",
"options": {}, "options": {},
"supported_os": [OperatingSystems.LINUX.name, OperatingSystems.WINDOWS.name],
}, },
{ {
"name": "Log4ShellExploiter", "name": "Log4ShellExploiter",
"options": {}, "options": {},
"supported_os": [OperatingSystems.LINUX.name, OperatingSystems.WINDOWS.name],
}, },
], ],
}, },