monkey/envs/monkey_zoo/blackbox/config_templates/ssh.py

22 lines
904 B
Python
Raw Permalink Normal View History

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 Ssh(ConfigTemplate):
config_values = copy(BaseTemplate.config_values)
2021-04-06 21:19:27 +08:00
config_values.update(
{
"basic.exploiters.exploiter_classes": ["SSHExploiter"],
"basic_network.scope.subnet_scan_list": ["10.2.2.11", "10.2.2.12"],
"basic.credentials.exploit_password_list": ["Password1!", "12345678", "^NgDvY59~8"],
"basic_network.scope.depth": 2,
2021-04-06 21:19:27 +08:00
"basic.credentials.exploit_user_list": ["Administrator", "m0nk3y", "user"],
2021-08-04 19:49:22 +08:00
"internal.classes.finger_classes": ["SSHFinger", "PingScanner"],
"internal.network.tcp_scanner.HTTP_PORTS": [],
"internal.network.tcp_scanner.tcp_target_ports": [22],
2021-04-06 21:19:27 +08:00
}
)