Agent: Remove disused is_running_on_island() function

This commit is contained in:
Mike Salvatore 2022-02-06 19:33:41 -05:00 committed by Shreya Malviya
parent c0d1df6252
commit c1c04d804f
1 changed files with 1 additions and 13 deletions

View File

@ -4,9 +4,7 @@ import socket
import struct
import sys
from common.network.network_utils import get_host_from_network_location
from infection_monkey.config import WormConfiguration
from infection_monkey.network.info import get_routes, local_ips
from infection_monkey.network.info import get_routes
DEFAULT_TIMEOUT = 10
BANNER_READ = 1024
@ -117,13 +115,3 @@ def get_interface_to_target(dst):
paths.sort()
ret = paths[-1][1]
return ret[1]
def is_running_on_island():
current_server_without_port = get_host_from_network_location(WormConfiguration.current_server)
running_on_island = is_running_on_server(current_server_without_port)
return running_on_island and WormConfiguration.depth == WormConfiguration.max_depth
def is_running_on_server(ip: str) -> bool:
return ip in local_ips()