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

18 lines
604 B
Python
Raw 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 ShellShock(ConfigTemplate):
config_values = copy(BaseTemplate.config_values)
2021-04-06 21:19:27 +08:00
config_values.update(
{
"basic.exploiters.exploiter_classes": ["ShellShockExploiter"],
"basic_network.scope.subnet_scan_list": ["10.2.2.8"],
2021-08-04 19:49:22 +08:00
"internal.network.tcp_scanner.HTTP_PORTS": [80, 8080],
"internal.network.tcp_scanner.tcp_target_ports": [],
2021-04-06 21:19:27 +08:00
}
)