Source code for csle_common.dao.emulation_config.static_emulation_attacker_type

"""
Type of vulnerabilities in an emulation
"""

from enum import IntEnum


[docs]class StaticEmulationAttackerType(IntEnum): """ Enum representing the different static emulation attacker types """ NOVICE = 0 EXPERIENCED = 1 EXPERT = 2