Skip to content

Commit

Permalink
Merge branch '3170-ete' into develop
Browse files Browse the repository at this point in the history
Issue #3170
PR #3464
  • Loading branch information
mssalvatore committed Jul 6, 2023
2 parents 351da9f + f705712 commit bc4b489
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# then B(10.2.4.15) exploits C(10.2.5.16) with that key
def _add_exploiters(agent_configuration: AgentConfiguration) -> AgentConfiguration:
exploiters: Dict[str, Mapping] = {
"SSHExploiter": {},
"SSH": {},
}

return add_exploiters(agent_configuration, exploiters=exploiters)
Expand Down
2 changes: 1 addition & 1 deletion envs/monkey_zoo/blackbox/test_configurations/depth_2_a.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def _add_exploiters(agent_configuration: AgentConfiguration) -> AgentConfigurati
"try_all_discovered_http_ports": True,
"target_ports": [],
},
"SSHExploiter": {},
"SSH": {},
"PowerShell": {},
}

Expand Down
2 changes: 1 addition & 1 deletion envs/monkey_zoo/blackbox/test_configurations/depth_3_a.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
def _add_exploiters(agent_configuration: AgentConfiguration) -> AgentConfiguration:
exploiters: Dict[str, Mapping] = {
"PowerShell": {},
"SSHExploiter": {},
"SSH": {},
"WMI": {"agent_binary_upload_timeout": 30},
}

Expand Down
2 changes: 1 addition & 1 deletion envs/monkey_zoo/blackbox/test_configurations/depth_4_a.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

def _add_exploiters(agent_configuration: AgentConfiguration) -> AgentConfiguration:
exploiters: Dict[str, Mapping] = {
"SSHExploiter": {},
"SSH": {},
"WMI": {"agent_binary_upload_timeout": 30},
}

Expand Down
3 changes: 0 additions & 3 deletions monkey/agent_plugins/exploiters/ssh/config-schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"required": [
"connect_timeout"
],
"properties": {
"connect_timeout": {
"title": "SSH connection timeout",
Expand Down

0 comments on commit bc4b489

Please sign in to comment.