2021-03-05 16:46:07 +08:00
|
|
|
from copy import copy
|
|
|
|
|
2021-03-08 21:41:22 +08:00
|
|
|
from envs.monkey_zoo.blackbox.config_templates.base_template import BaseTemplate
|
2021-03-08 23:16:32 +08:00
|
|
|
from envs.monkey_zoo.blackbox.config_templates.config_template import ConfigTemplate
|
2021-03-02 21:01:56 +08:00
|
|
|
|
|
|
|
|
2021-03-08 23:16:32 +08:00
|
|
|
class Tunneling(ConfigTemplate):
|
2021-03-05 16:46:07 +08:00
|
|
|
config_values = copy(BaseTemplate.config_values)
|
2021-03-02 21:01:56 +08:00
|
|
|
|
|
|
|
config_values.update({
|
|
|
|
"basic.exploiters.exploiter_classes": ["SmbExploiter",
|
|
|
|
"WmiExploiter",
|
|
|
|
"SSHExploiter"
|
|
|
|
],
|
|
|
|
"basic_network.scope.subnet_scan_list": ["10.2.2.9",
|
|
|
|
"10.2.1.10",
|
|
|
|
"10.2.0.11",
|
|
|
|
"10.2.0.12"],
|
2021-03-19 22:53:31 +08:00
|
|
|
"basic_network.scope.depth": 3,
|
|
|
|
"internal.general.keep_tunnel_open_time": 180,
|
2021-03-02 21:01:56 +08:00
|
|
|
"basic.credentials.exploit_password_list": ["Password1!",
|
|
|
|
"3Q=(Ge(+&w]*",
|
|
|
|
"`))jU7L(w}",
|
|
|
|
"t67TC5ZDmz",
|
|
|
|
"12345678"],
|
|
|
|
"basic.credentials.exploit_user_list": ["Administrator",
|
|
|
|
"m0nk3y",
|
|
|
|
"user"],
|
|
|
|
"internal.classes.finger_classes": ["SSHFinger",
|
|
|
|
"PingScanner",
|
|
|
|
"HTTPFinger",
|
|
|
|
"SMBFinger"]
|
|
|
|
})
|