forked from p15670423/monkey
26 lines
929 B
Python
26 lines
929 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 Mssql(ConfigTemplate):
|
|
config_values = copy(BaseTemplate.config_values)
|
|
|
|
config_values.update(
|
|
{
|
|
"basic.exploiters.exploiter_classes": ["MSSQLExploiter"],
|
|
"internal.classes.finger_classes": ["PingScanner"],
|
|
"basic_network.scope.subnet_scan_list": ["10.2.2.16"],
|
|
"basic.credentials.exploit_password_list": [
|
|
"Password1!",
|
|
"Xk8VDTsC",
|
|
"password",
|
|
"12345678",
|
|
],
|
|
"basic.credentials.exploit_user_list": ["Administrator", "m0nk3y", "user"],
|
|
"internal.network.tcp_scanner.HTTP_PORTS": [],
|
|
"internal.network.tcp_scanner.tcp_target_ports": [3389],
|
|
}
|
|
)
|