Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/e7946288-08c7-4081-85dd-6780f1eba17a Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com>
16 lines
589 B
JavaScript
16 lines
589 B
JavaScript
"use strict";
|
|
|
|
// ── Legacy security warning ───────────────────────────────────────
|
|
|
|
async function checkLegacySecurity() {
|
|
try {
|
|
var data = await apiFetch("/api/security/status");
|
|
if (data && data.status === "legacy") {
|
|
_securityIsLegacy = true;
|
|
_securityWarningMessage = data.warning || "This machine may have a known factory password. Please change your passwords immediately.";
|
|
}
|
|
} catch (_) {
|
|
// Non-fatal — silently ignore if the endpoint is unreachable
|
|
}
|
|
}
|