forked from p34709852/monkey
Agent: Load ZerologonExploiter into the puppet
This commit is contained in:
parent
c322446aee
commit
118c2abaee
|
@ -20,6 +20,7 @@ from infection_monkey.exploit.hadoop import HadoopExploiter
|
|||
from infection_monkey.exploit.log4shell import Log4ShellExploiter
|
||||
from infection_monkey.exploit.sshexec import SSHExploiter
|
||||
from infection_monkey.exploit.wmiexec import WmiExploiter
|
||||
from infection_monkey.exploit.zerologon import ZerologonExploiter
|
||||
from infection_monkey.i_puppet import IPuppet, PluginType
|
||||
from infection_monkey.master import AutomatedMaster
|
||||
from infection_monkey.master.control_channel import ControlChannel
|
||||
|
@ -221,6 +222,11 @@ class InfectionMonkey:
|
|||
)
|
||||
puppet.load_plugin("SSHExploiter", exploit_wrapper.wrap(SSHExploiter), PluginType.EXPLOITER)
|
||||
puppet.load_plugin("WmiExploiter", exploit_wrapper.wrap(WmiExploiter), PluginType.EXPLOITER)
|
||||
puppet.load_plugin(
|
||||
"ZerologonExploiter",
|
||||
exploit_wrapper.wrap(ZerologonExploiter),
|
||||
PluginType.EXPLOITER,
|
||||
)
|
||||
|
||||
puppet.load_plugin("ransomware", RansomwarePayload(), PluginType.PAYLOAD)
|
||||
|
||||
|
|
Loading…
Reference in New Issue