Source code for csle_common.dao.emulation_action.attacker.emulation_attacker_action_outcome

"""
Type of attack action outcomes
"""
from enum import IntEnum


[docs]class EmulationAttackerActionOutcome(IntEnum): """ Enum representing the different attack outcomes in the emulation. """ SHELL_ACCESS = 0 INFORMATION_GATHERING = 1 LOGIN = 2 FLAG = 3 PIVOTING = 4 PRIVILEGE_ESCALATION_ROOT = 5 GAME_END = 6 CONTINUE = 7