forked from p15670423/monkey
Common: Reformat ScanTargetConfiguration docstrings
This commit is contained in:
parent
068a7e3b1f
commit
d2d9d4c4c3
|
@ -58,12 +58,14 @@ class ScanTargetConfiguration:
|
||||||
Configuration of network targets to scan and exploit
|
Configuration of network targets to scan and exploit
|
||||||
|
|
||||||
Attributes:
|
Attributes:
|
||||||
:param blocked_ips: IP's that won't be scanned. Example: ("1.1.1.1", "2.2.2.2")
|
:param blocked_ips: IP's that won't be scanned
|
||||||
:param inaccessible_subnets: Subnet ranges that shouldn't be accessible for the
|
Example: ("1.1.1.1", "2.2.2.2")
|
||||||
agent. Example: ("1.1.1.1", "2.2.2.2/24", "myserver")
|
:param inaccessible_subnets: Subnet ranges that shouldn't be accessible for the agent
|
||||||
:param local_network_scan: Indicating if the agent should scan the local network
|
Example: ("1.1.1.1", "2.2.2.2/24", "myserver")
|
||||||
:param subnets: Subnet ranges to scan. Example: ("192.168.1.1-192.168.2.255",
|
:param local_network_scan: Whether or not the agent should scan the local network
|
||||||
"3.3.3.3", "2.2.2.2/24", "myHostname")
|
:param subnets: Subnet ranges to scan
|
||||||
|
Example: ("192.168.1.1-192.168.2.255", "3.3.3.3", "2.2.2.2/24",
|
||||||
|
"myHostname")
|
||||||
"""
|
"""
|
||||||
|
|
||||||
blocked_ips: Tuple[str, ...]
|
blocked_ips: Tuple[str, ...]
|
||||||
|
|
Loading…
Reference in New Issue