forked from p15670423/monkey
Common: Add docstring to ExploitationConfiguration dataclass
This commit is contained in:
parent
643896bb5b
commit
706b5758d4
|
@ -111,6 +111,15 @@ class ExploitationOptionsConfiguration:
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
class ExploitationConfiguration:
|
class ExploitationConfiguration:
|
||||||
|
"""
|
||||||
|
A configuration for exploitation
|
||||||
|
|
||||||
|
Attributes:
|
||||||
|
:param options: Configuration for exploitation options
|
||||||
|
:param brute_force: Configuration for brute force exploiters
|
||||||
|
:param vulnerability: Configuration for vulnerability exploiters
|
||||||
|
"""
|
||||||
|
|
||||||
options: ExploitationOptionsConfiguration
|
options: ExploitationOptionsConfiguration
|
||||||
brute_force: Tuple[PluginConfiguration, ...]
|
brute_force: Tuple[PluginConfiguration, ...]
|
||||||
vulnerability: Tuple[PluginConfiguration, ...]
|
vulnerability: Tuple[PluginConfiguration, ...]
|
||||||
|
|
Loading…
Reference in New Issue