Add crud for browser targets

This commit is contained in:
Owen
2026-05-15 14:07:48 -07:00
parent 0876b482f8
commit 0938997548
20 changed files with 934 additions and 27 deletions

View File

@@ -15,7 +15,7 @@ export default async function SshPage() {
const host = headersList.get("host") || "";
const hostname = host.split(":")[0];
let target: { ip: string; port: number } | null = null;
let target: { ip: string; port: number; authToken: string } | null = null;
let error: string | null = null;
try {