diff --git a/monkey/common/agent_configuration/agent_sub_configurations.py b/monkey/common/agent_configuration/agent_sub_configurations.py index ab05a55cc..b61717cb0 100644 --- a/monkey/common/agent_configuration/agent_sub_configurations.py +++ b/monkey/common/agent_configuration/agent_sub_configurations.py @@ -106,6 +106,13 @@ class NetworkScanConfiguration: @dataclass(frozen=True) class ExploitationOptionsConfiguration: + """ + A configuration for exploitation options + + Attributes: + :param http_ports: HTTP ports to scan + """ + http_ports: Tuple[int, ...]