forked from p15670423/monkey
Island: Remove Drupal exploiter references
This commit is contained in:
parent
6052ca8fcc
commit
7eddee251e
|
@ -22,7 +22,6 @@ BASIC = {
|
|||
"WebLogicExploiter",
|
||||
"HadoopExploiter",
|
||||
"MSSQLExploiter",
|
||||
"DrupalExploiter",
|
||||
"PowerShellExploiter",
|
||||
],
|
||||
}
|
||||
|
|
|
@ -81,15 +81,6 @@ EXPLOITER_CLASSES = {
|
|||
"https://github.com/vulhub/vulhub/tree/master/hadoop/unauthorized-yarn.",
|
||||
"link": "https://www.guardicore.com/infectionmonkey/docs/reference/exploiters/hadoop/",
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"enum": ["DrupalExploiter"],
|
||||
"title": "Drupal Exploiter",
|
||||
"safe": True,
|
||||
"info": "Exploits a remote command execution vulnerability in a Drupal server,"
|
||||
"for which certain modules (such as RESTful Web Services) are enabled.",
|
||||
"link": "https://www.guardicore.com/infectionmonkey/docs/reference/exploiters/drupal/",
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"enum": ["ZerologonExploiter"],
|
||||
|
|
|
@ -34,7 +34,6 @@ class ExploiterDescriptorEnum(Enum):
|
|||
)
|
||||
HADOOP = ExploiterDescriptor("HadoopExploiter", "Hadoop/Yarn Exploiter", ExploitProcessor)
|
||||
MSSQL = ExploiterDescriptor("MSSQLExploiter", "MSSQL Exploiter", ExploitProcessor)
|
||||
DRUPAL = ExploiterDescriptor("DrupalExploiter", "Drupal Server Exploiter", ExploitProcessor)
|
||||
ZEROLOGON = ExploiterDescriptor(
|
||||
"ZerologonExploiter", "Zerologon Exploiter", ZerologonExploitProcessor
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue