Common: Add docstring to PropagationConfiguration dataclass
This commit is contained in:
parent
643896bb5b
commit
2ea3a27263
|
@ -118,6 +118,15 @@ class ExploitationConfiguration:
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
class PropagationConfiguration:
|
class PropagationConfiguration:
|
||||||
|
"""
|
||||||
|
A configuration for propagation
|
||||||
|
|
||||||
|
Attributes:
|
||||||
|
:param maximum_depth: Maximum number of hops to take from the Island server
|
||||||
|
:param network_scan: Configuration for network scanning
|
||||||
|
:param exploitation: Configuration for exploitation
|
||||||
|
"""
|
||||||
|
|
||||||
maximum_depth: int
|
maximum_depth: int
|
||||||
network_scan: NetworkScanConfiguration
|
network_scan: NetworkScanConfiguration
|
||||||
exploitation: ExploitationConfiguration
|
exploitation: ExploitationConfiguration
|
||||||
|
|
Loading…
Reference in New Issue