@cryptotaxi247 / CoPilot / commits / 76fbfa20

Process analysis discon (#501)

* Disable SOCFortress Process Name Analysis due to unavailable third-party service * precommit fixes

taylor_socfortress committed Sep 6, 2025 at 10:04 UTC 76fbfa2034d89acdceb0b4c3b235376c26c49a36
1 file changed +5
backend/app/threat_intel/routes/socfortress.py
+5
@@ -419,6 +419,11 @@ async def process_name_intel_socfortress(
419 # await is_feature_enabled("PROCESS ANALYSIS", session=session)
420 logger.info("Running SOCFortress Process Name Analysis. Grabbing License")
421
422 + raise HTTPException(
423 + status_code=501,
424 + detail="SOCFortress Process Name Analysis is currently disabled as the leveraged 3rd party service is unavailable.",
425 + )
426 +
427 socfortress_lookup = await socfortress_process_analysis_lookup(
428 lincense_key=(await get_license(session)).license_key,
429 request=request,