From 7ace03c4d882db7980e63df0879f9daf8290d81f Mon Sep 17 00:00:00 2001 From: jm33-m0 Date: Sat, 28 Dec 2024 11:51:17 +1100 Subject: [PATCH] fix: `ps` command output not parsed --- core/lib/cc/agentHandler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/cc/agentHandler.go b/core/lib/cc/agentHandler.go index 108d11fbe..44edbe894 100644 --- a/core/lib/cc/agentHandler.go +++ b/core/lib/cc/agentHandler.go @@ -100,7 +100,7 @@ func processAgentData(data *emp3r0r_data.MsgTunData) { }() // ps command - case "#ps": + case "ps": var procs []util.ProcEntry err = json.Unmarshal([]byte(out), &procs) if err != nil {