Fixed control v pasting formating. Reorganized location of scripts. Visbile password and confirm password. Guest login. OpenSSH key authentication. Optional to remember password. Serach for host viewer.

This commit is contained in:
Karmaa
2025-03-16 00:46:20 -05:00
parent 346d833f3d
commit fd966b9954
17 changed files with 976 additions and 249 deletions

View File

@@ -28,6 +28,7 @@ io.on("connection", (socket) => {
socket.on("connectToHost", (cols, rows, hostConfig) => {
if (!hostConfig || !hostConfig.ip || !hostConfig.user || (!hostConfig.password && !hostConfig.rsaKey) || !hostConfig.port) {
logger.error("Invalid hostConfig received:", hostConfig);
socket.emit("noAuthRequired");
return;
}