fix(dpi): Detect mitmproxy-in specifically for WAF status

- Changed pgrep to detect mitmproxy-in container only
- mitmproxy-out removed from deployment (not needed for WAF)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
CyberMind-FR 2026-03-15 15:00:19 +01:00
parent 69b5dca350
commit 76754df467

View File

@ -70,7 +70,7 @@ EOF
collector_running=0
correlator_running=0
lan_collector_running=0
pgrep mitmproxy >/dev/null 2>&1 && mitm_running=1
pgrep -f mitmproxy-in >/dev/null 2>&1 && mitm_running=1
pgrep netifyd >/dev/null 2>&1 && tap_running=1
pgrep -f dpi-flow-collect >/dev/null 2>&1 && collector_running=1
pgrep -f dpi-correlator >/dev/null 2>&1 && correlator_running=1