2022-07-21 21:34:31 +08:00
|
|
|
from typing import Iterable
|
2019-09-05 20:03:30 +08:00
|
|
|
|
2022-07-21 21:43:56 +08:00
|
|
|
from envs.monkey_zoo.blackbox.test_configurations.test_configuration import TestConfiguration
|
2019-09-05 20:03:30 +08:00
|
|
|
|
|
|
|
|
2022-07-22 15:24:20 +08:00
|
|
|
def get_target_ips(test_configuration: TestConfiguration) -> Iterable[str]:
|
|
|
|
return test_configuration.agent_configuration.propagation.network_scan.targets.subnets
|