forked from p34709852/monkey
22 lines
870 B
Python
22 lines
870 B
Python
|
from copy import copy
|
||
|
|
||
|
from envs.monkey_zoo.blackbox.config_templates.base_template import BaseTemplate
|
||
|
from envs.monkey_zoo.blackbox.config_templates.config_template import ConfigTemplate
|
||
|
|
||
|
|
||
|
class PowerShell(ConfigTemplate):
|
||
|
config_values = copy(BaseTemplate.config_values)
|
||
|
|
||
|
config_values.update(
|
||
|
{
|
||
|
"basic.exploiters.exploiter_classes": ["PowerShellExploiter"],
|
||
|
"basic_network.scope.subnet_scan_list": ["10.2.2.45", "10.2.3.47"],
|
||
|
"basic.credentials.exploit_password_list": ["Passw0rd!", ""],
|
||
|
"basic_network.scope.depth": 2,
|
||
|
"basic.credentials.exploit_user_list": ["m0nk3y", "m0nk3y-user"],
|
||
|
"internal.classes.finger_classes": ["PingScanner"],
|
||
|
"internal.network.tcp_scanner.HTTP_PORTS": [],
|
||
|
"internal.network.tcp_scanner.tcp_target_ports": [],
|
||
|
}
|
||
|
)
|