@cryptotaxi247 / CoPilot / commits / 0e511771

feat: add FORTINET syslog type to SyslogType enum

taylorwalton committed Dec 15, 2025 at 10:44 UTC 0e511771817e37cb26d0340352bcf99081284e37
1 file changed +1
backend/app/threat_intel/schema/socfortress.py
+1
@@ -86,6 +86,7 @@ class SocfortressProcessNameAnalysisRequest(BaseModel):
86
87 class SyslogType(str, Enum):
88 WAZUH = "wazuh"
89 + FORTINET = "fortinet"
90 # Add other valid syslog types here if needed
91
92