forked from p15670423/monkey
Island: Remove config and reporting stuff related to the VSFTPD exploiter
This commit is contained in:
parent
97c50c3caa
commit
3f19c0bb3c
|
@ -23,7 +23,6 @@ BASIC = {
|
|||
"Struts2Exploiter",
|
||||
"WebLogicExploiter",
|
||||
"HadoopExploiter",
|
||||
"VSFTPDExploiter",
|
||||
"MSSQLExploiter",
|
||||
"DrupalExploiter",
|
||||
"PowerShellExploiter",
|
||||
|
|
|
@ -120,15 +120,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": ["VSFTPDExploiter"],
|
||||
"title": "VSFTPD Exploiter",
|
||||
"safe": True,
|
||||
"info": "Exploits a malicious backdoor that was added to the VSFTPD download archive. "
|
||||
"Logic based on Metasploit module.",
|
||||
"link": "https://www.guardicore.com/infectionmonkey/docs/reference/exploiters/vsftpd/",
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"enum": ["DrupalExploiter"],
|
||||
|
|
|
@ -42,9 +42,6 @@ class ExploiterDescriptorEnum(Enum):
|
|||
)
|
||||
HADOOP = ExploiterDescriptor("HadoopExploiter", "Hadoop/Yarn Exploiter", ExploitProcessor)
|
||||
MSSQL = ExploiterDescriptor("MSSQLExploiter", "MSSQL Exploiter", ExploitProcessor)
|
||||
VSFTPD = ExploiterDescriptor(
|
||||
"VSFTPDExploiter", "VSFTPD Backdoor Exploiter", CredExploitProcessor
|
||||
)
|
||||
DRUPAL = ExploiterDescriptor("DrupalExploiter", "Drupal Server Exploiter", ExploitProcessor)
|
||||
ZEROLOGON = ExploiterDescriptor(
|
||||
"ZerologonExploiter", "Zerologon Exploiter", ZerologonExploitProcessor
|
||||
|
|
Loading…
Reference in New Issue