Agent: Add PluginType enum

This commit is contained in:
Shreya Malviya 2021-12-14 20:18:32 +05:30 committed by Mike Salvatore
parent 966bef25d8
commit cd8a4d4b1f
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
from enum import Enum
class PluginType(Enum):
EXPLOITER = "Exploiter"
FINGERPRINTER = "Fingerprinter"
PAYLOAD = "Payload"
POST_BREACH_ACTION = "PBA"
SYSTEM_INFO_COLLECTOR = "SystemInfoCollector"