forked from p15670423/monkey
23 lines
876 B
Python
23 lines
876 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 WmiPth(ConfigTemplate):
|
|
config_values = copy(BaseTemplate.config_values)
|
|
|
|
config_values.update(
|
|
{
|
|
"basic.exploiters.exploiter_classes": ["WmiExploiter"],
|
|
"basic_network.scope.subnet_scan_list": ["10.2.2.15"],
|
|
"basic.credentials.exploit_password_list": ["Password1!"],
|
|
"basic.credentials.exploit_user_list": ["Administrator", "m0nk3y", "user"],
|
|
"internal.classes.finger_classes": ["PingScanner", "HTTPFinger"],
|
|
"internal.exploits.exploit_ntlm_hash_list": [
|
|
"5da0889ea2081aa79f6852294cba4a5e",
|
|
"50c9987a6bf1ac59398df9f911122c9b",
|
|
],
|
|
}
|
|
)
|