2022-07-26 14:32:05 +08:00
|
|
|
from common.agent_configuration import AgentConfiguration, PluginConfiguration
|
2022-07-19 02:31:04 +08:00
|
|
|
|
2022-07-19 02:33:25 +08:00
|
|
|
from .noop import noop_test_configuration
|
2022-07-19 03:09:50 +08:00
|
|
|
from .utils import (
|
|
|
|
add_exploiters,
|
|
|
|
add_subnets,
|
|
|
|
add_tcp_ports,
|
|
|
|
replace_agent_configuration,
|
|
|
|
set_maximum_depth,
|
|
|
|
)
|
2022-07-19 02:31:04 +08:00
|
|
|
|
|
|
|
|
|
|
|
def _add_exploiters(agent_configuration: AgentConfiguration) -> AgentConfiguration:
|
2022-07-20 19:47:27 +08:00
|
|
|
brute_force = [PluginConfiguration(name="SmbExploiter", options={"smb_download_timeout": 30})]
|
2022-07-19 02:31:04 +08:00
|
|
|
vulnerability = [PluginConfiguration(name="ZerologonExploiter", options={})]
|
|
|
|
|
|
|
|
return add_exploiters(agent_configuration, brute_force=brute_force, vulnerability=vulnerability)
|
|
|
|
|
|
|
|
|
|
|
|
def _add_tcp_ports(agent_configuration: AgentConfiguration) -> AgentConfiguration:
|
|
|
|
tcp_ports = [135, 445]
|
|
|
|
return add_tcp_ports(agent_configuration, tcp_ports)
|
|
|
|
|
|
|
|
|
|
|
|
def _add_subnets(agent_configuration: AgentConfiguration) -> AgentConfiguration:
|
|
|
|
subnets = ["10.2.2.25"]
|
|
|
|
return add_subnets(agent_configuration, subnets)
|
|
|
|
|
|
|
|
|
2022-08-01 16:35:20 +08:00
|
|
|
test_configuration = set_maximum_depth(noop_test_configuration.agent_configuration, 1)
|
|
|
|
test_configuration = _add_exploiters(test_configuration)
|
|
|
|
test_configuration = _add_tcp_ports(test_configuration)
|
|
|
|
test_configuration = _add_subnets(test_configuration)
|
2022-07-19 03:09:50 +08:00
|
|
|
|
2022-07-19 02:31:04 +08:00
|
|
|
zerologon_test_configuration = replace_agent_configuration(
|
2022-08-01 16:35:20 +08:00
|
|
|
noop_test_configuration, test_configuration
|
2022-07-19 02:31:04 +08:00
|
|
|
)
|