forked from p15670423/monkey
19 lines
611 B
Python
19 lines
611 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 Weblogic(ConfigTemplate):
|
|
|
|
config_values = copy(BaseTemplate.config_values)
|
|
|
|
config_values.update(
|
|
{
|
|
"basic.exploiters.exploiter_classes": ["WebLogicExploiter"],
|
|
"basic_network.scope.subnet_scan_list": ["10.2.2.18", "10.2.2.19"],
|
|
"internal.network.tcp_scanner.HTTP_PORTS": [7001],
|
|
"internal.network.tcp_scanner.tcp_target_ports": [],
|
|
}
|
|
)
|