forked from p15670423/monkey
18 lines
580 B
Python
18 lines
580 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 Elastic(ConfigTemplate):
|
|
|
|
config_values = copy(BaseTemplate.config_values)
|
|
|
|
config_values.update(
|
|
{
|
|
"basic.exploiters.exploiter_classes": ["ElasticGroovyExploiter"],
|
|
"internal.classes.finger_classes": ["PingScanner", "HTTPFinger", "ElasticFinger"],
|
|
"basic_network.scope.subnet_scan_list": ["10.2.2.4", "10.2.2.5"],
|
|
}
|
|
)
|