Agent: Remove disused RUNS_AGENT_ON_SUCCESS

This commit is contained in:
Mike Salvatore 2022-03-15 12:43:21 -04:00
parent 7a8442b331
commit 9976b8b044
2 changed files with 0 additions and 7 deletions

View File

@ -16,12 +16,6 @@ logger = logging.getLogger(__name__)
class HostExploiter:
_TARGET_OS_TYPE = []
# Determines if successful exploitation should stop further exploit attempts on that machine.
# Generally, should be True for RCE type exploiters and False if we don't expect the
# exploiter to run the monkey agent.
# Example: Zerologon steals credentials
RUNS_AGENT_ON_SUCCESS = True
@property
@abstractmethod
def _EXPLOITED_SERVICE(self):

View File

@ -33,7 +33,6 @@ logger = logging.getLogger(__name__)
class ZerologonExploiter(HostExploiter):
_TARGET_OS_TYPE = ["windows"]
_EXPLOITED_SERVICE = "Netlogon"
RUNS_AGENT_ON_SUCCESS = False
MAX_ATTEMPTS = 2000 # For 2000, expected average number of attempts needed: 256.
ERROR_CODE_ACCESS_DENIED = 0xC0000022