[Init] Initial commit - NetMesh terminal manager
Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
This commit is contained in:
34
domain/vaultImport/csvCredentialFields.ts
Normal file
34
domain/vaultImport/csvCredentialFields.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
const FORMULA_PREFIX = /^[=+\-@\t\r]/u;
|
||||
const KEY_PATH_MARKER = "__netcatty_csv_keypath_v1__:";
|
||||
const PASSPHRASE_MARKER = "__netcatty_csv_passphrase_v1__:";
|
||||
|
||||
const encodeMarkedField = (value: string, marker: string): string => (
|
||||
FORMULA_PREFIX.test(value) || value.startsWith(marker)
|
||||
? `${marker}${encodeURIComponent(value)}`
|
||||
: value
|
||||
);
|
||||
|
||||
const decodeMarkedField = (value: string, marker: string): string => {
|
||||
if (!value.startsWith(marker)) return value;
|
||||
try {
|
||||
return decodeURIComponent(value.slice(marker.length));
|
||||
} catch {
|
||||
return value;
|
||||
}
|
||||
};
|
||||
|
||||
export const encodeCsvKeyPath = (value: string): string => (
|
||||
encodeMarkedField(value, KEY_PATH_MARKER)
|
||||
);
|
||||
|
||||
export const decodeCsvKeyPath = (value: string): string => (
|
||||
decodeMarkedField(value, KEY_PATH_MARKER)
|
||||
);
|
||||
|
||||
export const encodeCsvPassphrase = (value: string): string => (
|
||||
encodeMarkedField(value, PASSPHRASE_MARKER)
|
||||
);
|
||||
|
||||
export const decodeCsvPassphrase = (value: string): string => (
|
||||
decodeMarkedField(value, PASSPHRASE_MARKER)
|
||||
);
|
||||
176
domain/vaultImport/csvExport.test.ts
Normal file
176
domain/vaultImport/csvExport.test.ts
Normal file
@@ -0,0 +1,176 @@
|
||||
import assert from "node:assert/strict";
|
||||
import test from "node:test";
|
||||
|
||||
import { importVaultHostsFromText } from "../vaultImport.ts";
|
||||
import { exportHostsToCsvWithStats } from "./csvExport.ts";
|
||||
import type { Host } from "../models.ts";
|
||||
|
||||
test("CSV exports include a UTF-8 BOM and preserve Chinese text when imported again", () => {
|
||||
const host: Host = {
|
||||
id: "host-1",
|
||||
label: "中文服务器",
|
||||
hostname: "10.0.0.1",
|
||||
username: "root",
|
||||
port: 22,
|
||||
};
|
||||
|
||||
const { csv } = exportHostsToCsvWithStats([host]);
|
||||
|
||||
assert.equal(csv.charCodeAt(0), 0xfeff);
|
||||
assert.deepEqual([...new TextEncoder().encode(csv).slice(0, 3)], [0xef, 0xbb, 0xbf]);
|
||||
|
||||
const imported = importVaultHostsFromText("csv", csv);
|
||||
assert.equal(imported.hosts[0]?.label, host.label);
|
||||
assert.equal(imported.hosts[0]?.hostname, host.hostname);
|
||||
});
|
||||
|
||||
test("CSV round-trips local key authentication and its saved passphrase", () => {
|
||||
const host: Host = {
|
||||
id: "host-key",
|
||||
label: "Key host",
|
||||
hostname: "key.example.com",
|
||||
username: "ubuntu",
|
||||
port: 22,
|
||||
identityFilePaths: ["~/.ssh/id_ed25519"],
|
||||
authMethod: "key",
|
||||
};
|
||||
|
||||
const { csv } = exportHostsToCsvWithStats([host], {
|
||||
keyPassphrases: new Map([["~/.ssh/id_ed25519", "+secret"]]),
|
||||
});
|
||||
assert.equal(csv.includes(",+secret"), false);
|
||||
const imported = importVaultHostsFromText("csv", csv);
|
||||
|
||||
assert.deepEqual(imported.hosts[0]?.identityFilePaths, ["~/.ssh/id_ed25519"]);
|
||||
assert.equal(imported.hosts[0]?.authMethod, "key");
|
||||
assert.equal(imported.hosts[0]?.password, undefined);
|
||||
assert.deepEqual(imported.keyPassphrases, [{
|
||||
hostId: imported.hosts[0]?.id,
|
||||
keyPath: "~/.ssh/id_ed25519",
|
||||
passphrase: "+secret",
|
||||
}]);
|
||||
});
|
||||
|
||||
test("CSV round-trips a referenced Keychain file path and saved passphrase", () => {
|
||||
const host: Host = {
|
||||
id: "host-reference-key",
|
||||
label: "Reference key host",
|
||||
hostname: "reference.example.com",
|
||||
username: "ubuntu",
|
||||
port: 22,
|
||||
identityFileId: "key-reference",
|
||||
identityFilePaths: ["/Users/alice/.ssh/stale"],
|
||||
authMethod: "key",
|
||||
};
|
||||
const keyPath = "/Users/alice/.ssh/id_ed25519";
|
||||
|
||||
const { csv } = exportHostsToCsvWithStats([host], {
|
||||
keyPathsById: new Map([["key-reference", keyPath]]),
|
||||
keyPassphrasesById: new Map([["key-reference", "reference-secret"]]),
|
||||
keyPassphrases: new Map([[keyPath, "stale-side-store-secret"]]),
|
||||
});
|
||||
const imported = importVaultHostsFromText("csv", csv);
|
||||
|
||||
assert.deepEqual(imported.hosts[0]?.identityFilePaths, [keyPath]);
|
||||
assert.deepEqual(imported.keyPassphrases, [{
|
||||
hostId: imported.hosts[0]?.id,
|
||||
keyPath,
|
||||
passphrase: "reference-secret",
|
||||
}]);
|
||||
});
|
||||
|
||||
test("CSV never falls back to path storage for a referenced key", () => {
|
||||
const host: Host = {
|
||||
id: "host-reference-key",
|
||||
label: "Reference key host",
|
||||
hostname: "reference.example.com",
|
||||
username: "ubuntu",
|
||||
port: 22,
|
||||
identityFileId: "key-reference",
|
||||
authMethod: "key",
|
||||
};
|
||||
const keyPath = "/Users/alice/.ssh/id_ed25519";
|
||||
|
||||
const { csv } = exportHostsToCsvWithStats([host], {
|
||||
keyPathsById: new Map([["key-reference", keyPath]]),
|
||||
keyPassphrases: new Map([[keyPath, "stale-side-store-secret"]]),
|
||||
});
|
||||
const imported = importVaultHostsFromText("csv", csv);
|
||||
|
||||
assert.deepEqual(imported.hosts[0]?.identityFilePaths, [keyPath]);
|
||||
assert.deepEqual(imported.keyPassphrases, []);
|
||||
assert.equal(csv.includes("stale-side-store-secret"), false);
|
||||
});
|
||||
|
||||
test("CSV reversibly guards key paths that spreadsheets treat as formulas", () => {
|
||||
const hosts: Host[] = [
|
||||
"-relative-key",
|
||||
"'-literal-key",
|
||||
"__netcatty_csv_keypath_v1__:literal",
|
||||
].map((keyPath, index) => ({
|
||||
id: `host-${index}`,
|
||||
label: `Host ${index}`,
|
||||
hostname: `host-${index}.example.com`,
|
||||
username: "root",
|
||||
port: 22,
|
||||
identityFilePaths: [keyPath],
|
||||
authMethod: "key",
|
||||
}));
|
||||
|
||||
const { csv } = exportHostsToCsvWithStats(hosts);
|
||||
const imported = importVaultHostsFromText("csv", csv);
|
||||
|
||||
assert.deepEqual(imported.hosts.map((host) => host.identityFilePaths?.[0]), [
|
||||
"-relative-key",
|
||||
"'-literal-key",
|
||||
"__netcatty_csv_keypath_v1__:literal",
|
||||
]);
|
||||
});
|
||||
|
||||
test("CSV export never writes credentials from skipped serial hosts", () => {
|
||||
const serialHost: Host = {
|
||||
id: "serial-with-stale-key",
|
||||
label: "Serial with stale key",
|
||||
hostname: "ttyUSB0",
|
||||
protocol: "serial",
|
||||
port: 22,
|
||||
identityFilePaths: ["~/.ssh/id_stale"],
|
||||
authMethod: "key",
|
||||
};
|
||||
const sshHost: Host = {
|
||||
id: "ssh-host",
|
||||
label: "SSH host",
|
||||
hostname: "ssh.example.com",
|
||||
protocol: "ssh",
|
||||
port: 22,
|
||||
};
|
||||
|
||||
const result = exportHostsToCsvWithStats([serialHost, sshHost], {
|
||||
keyPassphrases: new Map([["~/.ssh/id_stale", "must-not-leak"]]),
|
||||
});
|
||||
|
||||
assert.equal(result.exportedCount, 1);
|
||||
assert.equal(result.skippedCount, 1);
|
||||
assert.equal(result.csv.includes(serialHost.label), false);
|
||||
assert.equal(result.csv.includes("id_stale"), false);
|
||||
assert.equal(result.csv.includes("must-not-leak"), false);
|
||||
assert.equal(result.csv.includes(sshHost.hostname), true);
|
||||
});
|
||||
|
||||
test("CSV export skips plugin hosts instead of discarding opaque provider configuration", () => {
|
||||
const pluginHost: Host = {
|
||||
id: "plugin-host",
|
||||
label: "Plugin host",
|
||||
hostname: "com.example.transport.connection",
|
||||
username: "alice",
|
||||
protocol: "plugin:com.example.transport.connection",
|
||||
pluginConnection: {
|
||||
providerId: "com.example.transport.connection",
|
||||
configuration: { endpoint: "opaque://target" },
|
||||
},
|
||||
};
|
||||
const result = exportHostsToCsvWithStats([pluginHost]);
|
||||
assert.equal(result.exportedCount, 0);
|
||||
assert.equal(result.skippedCount, 1);
|
||||
assert.equal(result.csv.includes("opaque://target"), false);
|
||||
});
|
||||
146
domain/vaultImport/csvExport.ts
Normal file
146
domain/vaultImport/csvExport.ts
Normal file
@@ -0,0 +1,146 @@
|
||||
import type { Host } from '../models';
|
||||
import { isPluginHostProtocol } from '../pluginConnection';
|
||||
import { encodeCsvKeyPath, encodeCsvPassphrase } from './csvCredentialFields';
|
||||
|
||||
const UTF8_BOM = "\uFEFF";
|
||||
|
||||
export interface VaultCsvTemplateOptions {
|
||||
includeExampleRows?: boolean;
|
||||
}
|
||||
|
||||
export interface VaultCsvExportOptions {
|
||||
keyPassphrases?: ReadonlyMap<string, string>;
|
||||
keyPassphrasesById?: ReadonlyMap<string, string>;
|
||||
keyPathsById?: ReadonlyMap<string, string>;
|
||||
}
|
||||
|
||||
export const resolveVaultCsvHostKeyPath = (
|
||||
host: Host,
|
||||
options: VaultCsvExportOptions = {},
|
||||
): string => {
|
||||
const referencedPath = host.identityFileId
|
||||
? options.keyPathsById?.get(host.identityFileId)?.trim()
|
||||
: undefined;
|
||||
return referencedPath
|
||||
|| host.identityFilePaths?.find((path) => path.trim())?.trim()
|
||||
|| "";
|
||||
};
|
||||
|
||||
export const getVaultCsvTemplate = (
|
||||
opts: VaultCsvTemplateOptions = {},
|
||||
): string => {
|
||||
const includeExampleRows = opts.includeExampleRows !== false;
|
||||
const header = ["Groups", "Label", "Tags", "Notes", "Hostname/IP", "Protocol", "Port", "Username", "Password", "KeyPath", "Passphrase"];
|
||||
const rows: string[][] = [header];
|
||||
if (includeExampleRows) {
|
||||
rows.push(["Project/Dev", "Web Server (dev)", "dev,web", "Dev web tier", "192.168.1.10", "ssh", "22", "root", "", "~/.ssh/id_ed25519", ""]);
|
||||
rows.push(["Project/Prod", "Web Server (prod)", "prod,web", "Production", "server-a.example.com", "ssh", "22", "ubuntu", "", "", ""]);
|
||||
rows.push(["Database", "DB", "db,mysql", "MySQL primary", "db.example.com", "ssh", "4567", "admin", "", "", ""]);
|
||||
}
|
||||
|
||||
const escapeCsv = (value: string) => {
|
||||
if (value.includes('"')) value = value.replace(/"/g, '""');
|
||||
if (/[",\r\n]/.test(value)) return `"${value}"`;
|
||||
return value;
|
||||
};
|
||||
|
||||
return rows.map((r) => r.map((c) => escapeCsv(c)).join(",")).join("\r\n") + "\r\n";
|
||||
};
|
||||
|
||||
const exportHostsToCsv = (hosts: Host[], options: VaultCsvExportOptions): string => {
|
||||
const header = ["Groups", "Label", "Tags", "Notes", "Hostname/IP", "Protocol", "Port", "Username", "Password", "KeyPath", "Passphrase"];
|
||||
const rows: string[][] = [header];
|
||||
|
||||
const escapeCsv = (value: string, skipFormulaGuard = false) => {
|
||||
// Prevent CSV formula injection by prefixing dangerous characters with a single quote
|
||||
// These characters can be interpreted as formulas by spreadsheet applications
|
||||
// Skip for password fields to preserve credentials verbatim for round-trip
|
||||
if (!skipFormulaGuard && /^[=+\-@\t\r]/.test(value)) {
|
||||
value = "'" + value;
|
||||
}
|
||||
if (value.includes('"')) value = value.replace(/"/g, '""');
|
||||
if (/[",\r\n]/.test(value)) return `"${value}"`;
|
||||
return value;
|
||||
};
|
||||
|
||||
// Filter out transports the legacy CSV format cannot represent without
|
||||
// silently discarding protocol-owned configuration.
|
||||
// Note: mosh-enabled hosts are exported as SSH (losing mosh flag) rather than being skipped,
|
||||
// since exporting partial data is better than losing the entire host entry
|
||||
const isUnsupported = (h: Host) => h.protocol === "serial" || isPluginHostProtocol(h.protocol);
|
||||
const exportableHosts = hosts.filter((h) => !isUnsupported(h));
|
||||
|
||||
// Helper to bracket IPv6 addresses for CSV export
|
||||
// IPv6 addresses contain colons which would be misinterpreted as port separators on import
|
||||
const formatHostname = (hostname: string): string => {
|
||||
// Check if it looks like an IPv6 address (contains colons but not already bracketed)
|
||||
if (hostname.includes(":") && !hostname.startsWith("[")) {
|
||||
return `[${hostname}]`;
|
||||
}
|
||||
return hostname;
|
||||
};
|
||||
|
||||
for (const host of exportableHosts) {
|
||||
// For telnet hosts, use telnet-specific port and username
|
||||
const isTelnet = host.protocol === "telnet";
|
||||
const effectivePort = isTelnet
|
||||
? (host.telnetPort ?? host.port ?? 23)
|
||||
: (host.port ?? 22);
|
||||
const effectiveUsername = isTelnet
|
||||
? (host.telnetUsername ?? host.username ?? "")
|
||||
: (host.username ?? "");
|
||||
const keyPath = resolveVaultCsvHostKeyPath(host, options);
|
||||
const passphrase = keyPath
|
||||
? (
|
||||
host.identityFileId
|
||||
? (options.keyPassphrasesById?.get(host.identityFileId) ?? "")
|
||||
: (options.keyPassphrases?.get(keyPath) ?? "")
|
||||
)
|
||||
: "";
|
||||
|
||||
rows.push([
|
||||
host.group ?? "",
|
||||
host.label ?? "",
|
||||
(host.tags ?? []).join(","),
|
||||
host.notes ?? "",
|
||||
formatHostname(host.hostname),
|
||||
host.protocol ?? "ssh",
|
||||
String(effectivePort),
|
||||
effectiveUsername,
|
||||
host.password ?? "",
|
||||
encodeCsvKeyPath(keyPath),
|
||||
encodeCsvPassphrase(passphrase),
|
||||
]);
|
||||
}
|
||||
|
||||
const passwordColIdx = header.indexOf("Password");
|
||||
const keyPathColIdx = header.indexOf("KeyPath");
|
||||
const passphraseColIdx = header.indexOf("Passphrase");
|
||||
return rows.map((r, rowIdx) => r.map((c, i) => escapeCsv(
|
||||
c,
|
||||
rowIdx > 0 && (i === passwordColIdx || i === keyPathColIdx || i === passphraseColIdx),
|
||||
)).join(",")).join("\r\n") + "\r\n";
|
||||
};
|
||||
|
||||
interface ExportHostsResult {
|
||||
csv: string;
|
||||
exportedCount: number;
|
||||
skippedCount: number;
|
||||
}
|
||||
|
||||
export const exportHostsToCsvWithStats = (
|
||||
hosts: Host[],
|
||||
options: VaultCsvExportOptions = {},
|
||||
): ExportHostsResult => {
|
||||
// Mosh hosts intentionally degrade to SSH, but namespaced plugin protocols
|
||||
// must be skipped because CSV has no field for their opaque configuration.
|
||||
const isUnsupported = (h: Host) => h.protocol === "serial" || isPluginHostProtocol(h.protocol);
|
||||
const skippedHosts = hosts.filter((h) => isUnsupported(h));
|
||||
const exportableHosts = hosts.filter((h) => !isUnsupported(h));
|
||||
|
||||
return {
|
||||
csv: UTF8_BOM + exportHostsToCsv(exportableHosts, options),
|
||||
exportedCount: exportableHosts.length,
|
||||
skippedCount: skippedHosts.length,
|
||||
};
|
||||
};
|
||||
76
domain/vaultImport/csvUtils.ts
Normal file
76
domain/vaultImport/csvUtils.ts
Normal file
@@ -0,0 +1,76 @@
|
||||
export const parseCsv = (text: string): string[][] => {
|
||||
const rows: string[][] = [];
|
||||
let row: string[] = [];
|
||||
let field = "";
|
||||
let inQuotes = false;
|
||||
|
||||
for (let i = 0; i < text.length; i++) {
|
||||
const ch = text[i];
|
||||
if (inQuotes) {
|
||||
if (ch === '"') {
|
||||
const next = text[i + 1];
|
||||
if (next === '"') {
|
||||
field += '"';
|
||||
i++;
|
||||
} else {
|
||||
inQuotes = false;
|
||||
}
|
||||
} else {
|
||||
field += ch;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
if (ch === '"') {
|
||||
inQuotes = true;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (ch === ",") {
|
||||
row.push(field);
|
||||
field = "";
|
||||
continue;
|
||||
}
|
||||
|
||||
if (ch === "\r" || ch === "\n") {
|
||||
if (ch === "\r" && text[i + 1] === "\n") i++;
|
||||
row.push(field);
|
||||
field = "";
|
||||
rows.push(row);
|
||||
row = [];
|
||||
continue;
|
||||
}
|
||||
|
||||
field += ch;
|
||||
}
|
||||
|
||||
row.push(field);
|
||||
rows.push(row);
|
||||
return rows;
|
||||
};
|
||||
|
||||
const normalizeHeaderKey = (raw: string): string => {
|
||||
return raw
|
||||
.trim()
|
||||
.toLowerCase()
|
||||
.replace(/[\s_-]+/g, "")
|
||||
.replace(/[^\p{L}\p{N}]/gu, "");
|
||||
};
|
||||
|
||||
export const findHeaderIndex = (headers: string[], candidates: string[]): number => {
|
||||
const normalized = headers.map((h) => normalizeHeaderKey(h));
|
||||
for (const cand of candidates) {
|
||||
const c = cand.toLowerCase();
|
||||
for (let i = 0; i < normalized.length; i++) {
|
||||
const h = normalized[i];
|
||||
if (h === c || h.startsWith(c)) return i;
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
};
|
||||
|
||||
export const findExactHeaderIndex = (headers: string[], candidates: string[]): number => {
|
||||
const normalized = headers.map((header) => normalizeHeaderKey(header));
|
||||
const candidateKeys = new Set(candidates.map((candidate) => normalizeHeaderKey(candidate)));
|
||||
return normalized.findIndex((header) => candidateKeys.has(header));
|
||||
};
|
||||
140
domain/vaultImport/mobaXtermCrypto.test.ts
Normal file
140
domain/vaultImport/mobaXtermCrypto.test.ts
Normal file
@@ -0,0 +1,140 @@
|
||||
import assert from "node:assert/strict";
|
||||
import { createCipheriv, createHash } from "node:crypto";
|
||||
import test from "node:test";
|
||||
|
||||
import {
|
||||
craftMobaConnectionKey,
|
||||
craftMobaSessionPKey,
|
||||
decodeMobaPlaintext,
|
||||
decryptMobaStoredSecret,
|
||||
decryptMobaWeakCipher,
|
||||
sha512,
|
||||
} from "./mobaXtermCrypto.ts";
|
||||
|
||||
test("sha512 matches Node for MobaXterm key material", () => {
|
||||
const samples = ["12345678", "master-password", ""];
|
||||
for (const sample of samples) {
|
||||
assert.deepEqual(
|
||||
Buffer.from(sha512(Buffer.from(sample, "utf8"))),
|
||||
createHash("sha512").update(sample, "utf8").digest(),
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
test("master-password AES decrypts HyperSine session and credential vectors", () => {
|
||||
assert.equal(
|
||||
decryptMobaStoredSecret({
|
||||
ciphertext: "1du11XKQBOxud/FWh4ouWA==",
|
||||
masterPassword: "12345678",
|
||||
}),
|
||||
"Lw3+cZ2s.w@U@f]U",
|
||||
);
|
||||
assert.equal(
|
||||
decryptMobaStoredSecret({
|
||||
ciphertext: "0XROpGmLAYVx",
|
||||
masterPassword: "12345678",
|
||||
}),
|
||||
"HyperSine",
|
||||
);
|
||||
});
|
||||
|
||||
test("master-password AES decrypts the v25 random-IV format", () => {
|
||||
const masterPassword = "netcatty-master";
|
||||
const plaintext = "imported-secret";
|
||||
const key = createHash("sha512").update(masterPassword, "utf8").digest().subarray(0, 32);
|
||||
const prefix = "_@ABCDEFGHIJKLMNOPQR";
|
||||
const iv = Buffer.from(prefix.slice(2, 18), "latin1");
|
||||
const cipher = createCipheriv("aes-256-cfb8", key, iv);
|
||||
cipher.setAutoPadding(false);
|
||||
const body = Buffer.concat([cipher.update(plaintext, "utf8"), cipher.final()]);
|
||||
const stored = `${prefix}${body.toString("base64").replaceAll("+", "@").replaceAll("/", "_")}`;
|
||||
|
||||
assert.equal(
|
||||
decryptMobaStoredSecret({ ciphertext: stored, masterPassword }),
|
||||
plaintext,
|
||||
);
|
||||
});
|
||||
|
||||
test("weak SessionP cipher decrypts the published credential vector", () => {
|
||||
const key = craftMobaSessionPKey("165821882556840");
|
||||
assert.equal(
|
||||
decodeMobaPlaintext(decryptMobaWeakCipher(
|
||||
"bSj4VWbHezNH3tTY9Nil2RzJX57p7/S6KqMw8VsiT/WH+I8p03pqnInAu",
|
||||
key,
|
||||
)),
|
||||
"HyperSine",
|
||||
);
|
||||
});
|
||||
|
||||
test("weak connection cipher decrypts the published session-password vector", () => {
|
||||
const key = craftMobaConnectionKey("DoubleSine", "ShadowSurface", "root", "45.32.110.171");
|
||||
assert.equal(
|
||||
decodeMobaPlaintext(decryptMobaWeakCipher(
|
||||
"F0+wuBvbe9qPW6ypiOeYHTHhKdShRc/nXaM1Ky1jeTfw46TzQoSesX9buGm0WW36yP4lhH70ZCHZpEo4wLJhIl1",
|
||||
key,
|
||||
)),
|
||||
"Lw3+cZ2s.w@U@f]U",
|
||||
);
|
||||
});
|
||||
|
||||
test("wrong master password does not look like a saved secret", () => {
|
||||
for (const masterPassword of ["wrong-password", "wrong0", "wrong25", "x", "0"]) {
|
||||
assert.equal(
|
||||
decryptMobaStoredSecret({
|
||||
ciphertext: "1du11XKQBOxud/FWh4ouWA==",
|
||||
masterPassword,
|
||||
}),
|
||||
null,
|
||||
`session ciphertext accepted garbage for ${masterPassword}`,
|
||||
);
|
||||
assert.equal(
|
||||
decryptMobaStoredSecret({
|
||||
ciphertext: "0XROpGmLAYVx",
|
||||
masterPassword,
|
||||
}),
|
||||
null,
|
||||
`credential ciphertext accepted garbage for ${masterPassword}`,
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
test("decodeMobaPlaintext rejects an interior NUL left by a wrong AES key", () => {
|
||||
assert.equal(
|
||||
decodeMobaPlaintext(Uint8Array.from([0x4d, 0x29, 0x38, 0x25, 0x00, 0x72, 0x33, 0x8a, 0xa8])),
|
||||
null,
|
||||
);
|
||||
assert.equal(
|
||||
decodeMobaPlaintext(Uint8Array.from([0x48, 0x69, 0x00, 0x00])),
|
||||
"Hi",
|
||||
);
|
||||
});
|
||||
|
||||
test("master-password AES keeps leading and trailing whitespace in the key", () => {
|
||||
const masterPassword = " 12345678 ";
|
||||
const plaintext = "spaced-master";
|
||||
const key = createHash("sha512").update(masterPassword, "utf8").digest().subarray(0, 32);
|
||||
const iv = createCipheriv("aes-256-ecb", key, null).update(Buffer.alloc(16));
|
||||
const cipher = createCipheriv("aes-256-cfb8", key, iv);
|
||||
cipher.setAutoPadding(false);
|
||||
const stored = Buffer.concat([
|
||||
cipher.update(plaintext, "utf8"),
|
||||
cipher.final(),
|
||||
]).toString("base64");
|
||||
|
||||
assert.equal(
|
||||
decryptMobaStoredSecret({ ciphertext: stored, masterPassword }),
|
||||
plaintext,
|
||||
);
|
||||
assert.equal(
|
||||
decryptMobaStoredSecret({ ciphertext: stored, masterPassword: masterPassword.trim() }),
|
||||
null,
|
||||
);
|
||||
});
|
||||
|
||||
test("decodeMobaPlaintext rejects high-bit Latin-1 that is not UTF-8", () => {
|
||||
assert.equal(
|
||||
decodeMobaPlaintext(Uint8Array.from([0xd7, 0xf4, 0x5f, 0xb8, 0x77, 0xf9, 0x9c, 0xc9, 0x40])),
|
||||
null,
|
||||
);
|
||||
assert.equal(decodeMobaPlaintext(Uint8Array.from([0x48, 0x69])), "Hi");
|
||||
});
|
||||
402
domain/vaultImport/mobaXtermCrypto.ts
Normal file
402
domain/vaultImport/mobaXtermCrypto.ts
Normal file
@@ -0,0 +1,402 @@
|
||||
const AES_SBOX = Uint8Array.from([
|
||||
0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5, 0x30, 0x01, 0x67, 0x2b, 0xfe, 0xd7, 0xab, 0x76,
|
||||
0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0, 0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0,
|
||||
0xb7, 0xfd, 0x93, 0x26, 0x36, 0x3f, 0xf7, 0xcc, 0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15,
|
||||
0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a, 0x07, 0x12, 0x80, 0xe2, 0xeb, 0x27, 0xb2, 0x75,
|
||||
0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0, 0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84,
|
||||
0x53, 0xd1, 0x00, 0xed, 0x20, 0xfc, 0xb1, 0x5b, 0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf,
|
||||
0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85, 0x45, 0xf9, 0x02, 0x7f, 0x50, 0x3c, 0x9f, 0xa8,
|
||||
0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5, 0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2,
|
||||
0xcd, 0x0c, 0x13, 0xec, 0x5f, 0x97, 0x44, 0x17, 0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73,
|
||||
0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88, 0x46, 0xee, 0xb8, 0x14, 0xde, 0x5e, 0x0b, 0xdb,
|
||||
0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c, 0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79,
|
||||
0xe7, 0xc8, 0x37, 0x6d, 0x8d, 0xd5, 0x4e, 0xa9, 0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08,
|
||||
0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6, 0xe8, 0xdd, 0x74, 0x1f, 0x4b, 0xbd, 0x8b, 0x8a,
|
||||
0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e, 0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e,
|
||||
0xe1, 0xf8, 0x98, 0x11, 0x69, 0xd9, 0x8e, 0x94, 0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf,
|
||||
0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68, 0x41, 0x99, 0x2d, 0x0f, 0xb0, 0x54, 0xbb, 0x16,
|
||||
]);
|
||||
|
||||
const AES_RCON = Uint8Array.from([
|
||||
0x00, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36,
|
||||
]);
|
||||
|
||||
const SHA512_K = [
|
||||
0x428a2f98d728ae22n, 0x7137449123ef65cdn, 0xb5c0fbcfec4d3b2fn, 0xe9b5dba58189dbbcn,
|
||||
0x3956c25bf348b538n, 0x59f111f1b605d019n, 0x923f82a4af194f9bn, 0xab1c5ed5da6d8118n,
|
||||
0xd807aa98a3030242n, 0x12835b0145706fben, 0x243185be4ee4b28cn, 0x550c7dc3d5ffb4e2n,
|
||||
0x72be5d74f27b896fn, 0x80deb1fe3b1696b1n, 0x9bdc06a725c71235n, 0xc19bf174cf692694n,
|
||||
0xe49b69c19ef14ad2n, 0xefbe4786384f25e3n, 0x0fc19dc68b8cd5b5n, 0x240ca1cc77ac9c65n,
|
||||
0x2de92c6f592b0275n, 0x4a7484aa6ea6e483n, 0x5cb0a9dcbd41fbd4n, 0x76f988da831153b5n,
|
||||
0x983e5152ee66dfabn, 0xa831c66d2db43210n, 0xb00327c898fb213fn, 0xbf597fc7beef0ee4n,
|
||||
0xc6e00bf33da88fc2n, 0xd5a79147930aa725n, 0x06ca6351e003826fn, 0x142929670a0e6e70n,
|
||||
0x27b70a8546d22ffcn, 0x2e1b21385c26c926n, 0x4d2c6dfc5ac42aedn, 0x53380d139d95b3dfn,
|
||||
0x650a73548baf63den, 0x766a0abb3c77b2a8n, 0x81c2c92e47edaee6n, 0x92722c851482353bn,
|
||||
0xa2bfe8a14cf10364n, 0xa81a664bbc423001n, 0xc24b8b70d0f89791n, 0xc76c51a30654be30n,
|
||||
0xd192e819d6ef5218n, 0xd69906245565a910n, 0xf40e35855771202an, 0x106aa07032bbd1b8n,
|
||||
0x19a4c116b8d2d0c8n, 0x1e376c085141ab53n, 0x2748774cdf8eeb99n, 0x34b0bcb5e19b48a8n,
|
||||
0x391c0cb3c5c95a63n, 0x4ed8aa4ae3418acbn, 0x5b9cca4f7763e373n, 0x682e6ff3d6b2b8a3n,
|
||||
0x748f82ee5defb2fcn, 0x78a5636f43172f60n, 0x84c87814a1f0ab72n, 0x8cc702081a6439ecn,
|
||||
0x90befffa23631e28n, 0xa4506cebde82bde9n, 0xbef9a3f7b2c67915n, 0xc67178f2e372532bn,
|
||||
0xca273eceea26619cn, 0xd186b8c721c0c207n, 0xeada7dd6cde0eb1en, 0xf57d4f7fee6ed178n,
|
||||
0x06f067aa72176fban, 0x0a637dc5a2c898a6n, 0x113f9804bef90daen, 0x1b710b35131c471bn,
|
||||
0x28db77f523047d84n, 0x32caab7b40c72493n, 0x3c9ebe0a15c9bebcn, 0x431d67c49c100d4cn,
|
||||
0x4cc5d4becb3e42b6n, 0x597f299cfc657e2an, 0x5fcb6fab3ad6faecn, 0x6c44198c4a475817n,
|
||||
];
|
||||
|
||||
const MASK64 = 0xffffffffffffffffn;
|
||||
const WEAK_KEY_ALPHABET = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz+/";
|
||||
|
||||
const utf8Encode = (value: string): Uint8Array => new TextEncoder().encode(value);
|
||||
|
||||
const latin1Encode = (value: string): Uint8Array => {
|
||||
const out = new Uint8Array(value.length);
|
||||
for (let i = 0; i < value.length; i++) out[i] = value.charCodeAt(i) & 0xff;
|
||||
return out;
|
||||
};
|
||||
|
||||
const rotl32 = (value: number, n: number): number => ((value << n) | (value >>> (32 - n))) >>> 0;
|
||||
|
||||
const subWord = (value: number): number => (
|
||||
(AES_SBOX[value >>> 24] << 24)
|
||||
| (AES_SBOX[(value >>> 16) & 0xff] << 16)
|
||||
| (AES_SBOX[(value >>> 8) & 0xff] << 8)
|
||||
| AES_SBOX[value & 0xff]
|
||||
) >>> 0;
|
||||
|
||||
const expandAes256Key = (key: Uint8Array): Uint32Array => {
|
||||
const w = new Uint32Array(60);
|
||||
for (let i = 0; i < 8; i++) {
|
||||
w[i] = (
|
||||
(key[i * 4] << 24)
|
||||
| (key[i * 4 + 1] << 16)
|
||||
| (key[i * 4 + 2] << 8)
|
||||
| key[i * 4 + 3]
|
||||
) >>> 0;
|
||||
}
|
||||
for (let i = 8; i < 60; i++) {
|
||||
let temp = w[i - 1];
|
||||
if (i % 8 === 0) {
|
||||
temp = (subWord(rotl32(temp, 8)) ^ (AES_RCON[i / 8] << 24)) >>> 0;
|
||||
} else if (i % 8 === 4) {
|
||||
temp = subWord(temp);
|
||||
}
|
||||
w[i] = (w[i - 8] ^ temp) >>> 0;
|
||||
}
|
||||
return w;
|
||||
};
|
||||
|
||||
const xtime = (value: number): number => ((value << 1) ^ ((value & 0x80) !== 0 ? 0x1b : 0)) & 0xff;
|
||||
|
||||
const aesEncryptBlockWithRoundKeys = (roundKeys: Uint32Array, block: Uint8Array): Uint8Array => {
|
||||
const state = new Uint8Array(block);
|
||||
const addRoundKey = (round: number) => {
|
||||
for (let c = 0; c < 4; c++) {
|
||||
const word = roundKeys[round * 4 + c];
|
||||
const offset = c * 4;
|
||||
state[offset] ^= word >>> 24;
|
||||
state[offset + 1] ^= (word >>> 16) & 0xff;
|
||||
state[offset + 2] ^= (word >>> 8) & 0xff;
|
||||
state[offset + 3] ^= word & 0xff;
|
||||
}
|
||||
};
|
||||
const subBytes = () => {
|
||||
for (let i = 0; i < 16; i++) state[i] = AES_SBOX[state[i]];
|
||||
};
|
||||
const shiftRows = () => {
|
||||
const row1 = [state[1], state[5], state[9], state[13]];
|
||||
state[1] = row1[1];
|
||||
state[5] = row1[2];
|
||||
state[9] = row1[3];
|
||||
state[13] = row1[0];
|
||||
const row2 = [state[2], state[6], state[10], state[14]];
|
||||
state[2] = row2[2];
|
||||
state[6] = row2[3];
|
||||
state[10] = row2[0];
|
||||
state[14] = row2[1];
|
||||
const row3 = [state[3], state[7], state[11], state[15]];
|
||||
state[3] = row3[3];
|
||||
state[7] = row3[0];
|
||||
state[11] = row3[1];
|
||||
state[15] = row3[2];
|
||||
};
|
||||
const mixColumns = () => {
|
||||
for (let c = 0; c < 4; c++) {
|
||||
const offset = c * 4;
|
||||
const a0 = state[offset];
|
||||
const a1 = state[offset + 1];
|
||||
const a2 = state[offset + 2];
|
||||
const a3 = state[offset + 3];
|
||||
state[offset] = (xtime(a0) ^ xtime(a1) ^ a1 ^ a2 ^ a3) & 0xff;
|
||||
state[offset + 1] = (a0 ^ xtime(a1) ^ xtime(a2) ^ a2 ^ a3) & 0xff;
|
||||
state[offset + 2] = (a0 ^ a1 ^ xtime(a2) ^ xtime(a3) ^ a3) & 0xff;
|
||||
state[offset + 3] = (xtime(a0) ^ a0 ^ a1 ^ a2 ^ xtime(a3)) & 0xff;
|
||||
}
|
||||
};
|
||||
|
||||
addRoundKey(0);
|
||||
for (let round = 1; round < 14; round++) {
|
||||
subBytes();
|
||||
shiftRows();
|
||||
mixColumns();
|
||||
addRoundKey(round);
|
||||
}
|
||||
subBytes();
|
||||
shiftRows();
|
||||
addRoundKey(14);
|
||||
return state;
|
||||
};
|
||||
|
||||
const aesEncryptBlock = (key: Uint8Array, block: Uint8Array): Uint8Array => (
|
||||
aesEncryptBlockWithRoundKeys(expandAes256Key(key), block)
|
||||
);
|
||||
|
||||
const aesCfb8Decrypt = (key: Uint8Array, iv: Uint8Array, ciphertext: Uint8Array): Uint8Array => {
|
||||
const roundKeys = expandAes256Key(key);
|
||||
const shift = new Uint8Array(iv);
|
||||
const out = new Uint8Array(ciphertext.length);
|
||||
for (let i = 0; i < ciphertext.length; i++) {
|
||||
const encrypted = aesEncryptBlockWithRoundKeys(roundKeys, shift);
|
||||
out[i] = ciphertext[i] ^ encrypted[0];
|
||||
shift.copyWithin(0, 1);
|
||||
shift[15] = ciphertext[i];
|
||||
}
|
||||
return out;
|
||||
};
|
||||
|
||||
const rotr64 = (value: bigint, n: bigint): bigint => (
|
||||
((value >> n) | (value << (64n - n))) & MASK64
|
||||
);
|
||||
|
||||
export const sha512 = (message: Uint8Array): Uint8Array => {
|
||||
const bitLen = BigInt(message.length) * 8n;
|
||||
const padLen = (256 - ((message.length + 17) % 128)) % 128;
|
||||
const total = message.length + 1 + padLen + 16;
|
||||
const buf = new Uint8Array(total);
|
||||
buf.set(message);
|
||||
buf[message.length] = 0x80;
|
||||
const view = new DataView(buf.buffer);
|
||||
view.setBigUint64(total - 16, bitLen >> 64n, false);
|
||||
view.setBigUint64(total - 8, bitLen & MASK64, false);
|
||||
|
||||
let h0 = 0x6a09e667f3bcc908n;
|
||||
let h1 = 0xbb67ae8584caa73bn;
|
||||
let h2 = 0x3c6ef372fe94f82bn;
|
||||
let h3 = 0xa54ff53a5f1d36f1n;
|
||||
let h4 = 0x510e527fade682d1n;
|
||||
let h5 = 0x9b05688c2b3e6c1fn;
|
||||
let h6 = 0x1f83d9abfb41bd6bn;
|
||||
let h7 = 0x5be0cd19137e2179n;
|
||||
|
||||
const w = new Array<bigint>(80);
|
||||
for (let offset = 0; offset < total; offset += 128) {
|
||||
for (let i = 0; i < 16; i++) {
|
||||
w[i] = view.getBigUint64(offset + i * 8, false);
|
||||
}
|
||||
for (let i = 16; i < 80; i++) {
|
||||
const s0 = rotr64(w[i - 15], 1n) ^ rotr64(w[i - 15], 8n) ^ (w[i - 15] >> 7n);
|
||||
const s1 = rotr64(w[i - 2], 19n) ^ rotr64(w[i - 2], 61n) ^ (w[i - 2] >> 6n);
|
||||
w[i] = (w[i - 16] + s0 + w[i - 7] + s1) & MASK64;
|
||||
}
|
||||
|
||||
let a = h0;
|
||||
let b = h1;
|
||||
let c = h2;
|
||||
let d = h3;
|
||||
let e = h4;
|
||||
let f = h5;
|
||||
let g = h6;
|
||||
let h = h7;
|
||||
for (let i = 0; i < 80; i++) {
|
||||
const S1 = rotr64(e, 14n) ^ rotr64(e, 18n) ^ rotr64(e, 41n);
|
||||
const ch = (e & f) ^ ((~e) & g);
|
||||
const temp1 = (h + S1 + ch + SHA512_K[i] + w[i]) & MASK64;
|
||||
const S0 = rotr64(a, 28n) ^ rotr64(a, 34n) ^ rotr64(a, 39n);
|
||||
const maj = (a & b) ^ (a & c) ^ (b & c);
|
||||
const temp2 = (S0 + maj) & MASK64;
|
||||
h = g;
|
||||
g = f;
|
||||
f = e;
|
||||
e = (d + temp1) & MASK64;
|
||||
d = c;
|
||||
c = b;
|
||||
b = a;
|
||||
a = (temp1 + temp2) & MASK64;
|
||||
}
|
||||
h0 = (h0 + a) & MASK64;
|
||||
h1 = (h1 + b) & MASK64;
|
||||
h2 = (h2 + c) & MASK64;
|
||||
h3 = (h3 + d) & MASK64;
|
||||
h4 = (h4 + e) & MASK64;
|
||||
h5 = (h5 + f) & MASK64;
|
||||
h6 = (h6 + g) & MASK64;
|
||||
h7 = (h7 + h) & MASK64;
|
||||
}
|
||||
|
||||
const digest = new Uint8Array(64);
|
||||
const out = new DataView(digest.buffer);
|
||||
out.setBigUint64(0, h0, false);
|
||||
out.setBigUint64(8, h1, false);
|
||||
out.setBigUint64(16, h2, false);
|
||||
out.setBigUint64(24, h3, false);
|
||||
out.setBigUint64(32, h4, false);
|
||||
out.setBigUint64(40, h5, false);
|
||||
out.setBigUint64(48, h6, false);
|
||||
out.setBigUint64(56, h7, false);
|
||||
return digest;
|
||||
};
|
||||
|
||||
const decodeBase64 = (input: string, altChars = false): Uint8Array => {
|
||||
const normalized = (altChars ? input.replaceAll("@", "+").replaceAll("_", "/") : input)
|
||||
.replace(/\s+/g, "");
|
||||
if (!normalized) return new Uint8Array();
|
||||
const padded = normalized + "=".repeat((4 - (normalized.length % 4)) % 4);
|
||||
if (!/^[A-Za-z0-9+/]*={0,2}$/.test(padded)) return new Uint8Array();
|
||||
try {
|
||||
const binary = atob(padded);
|
||||
const out = new Uint8Array(binary.length);
|
||||
for (let i = 0; i < binary.length; i++) out[i] = binary.charCodeAt(i);
|
||||
return out;
|
||||
} catch {
|
||||
return new Uint8Array();
|
||||
}
|
||||
};
|
||||
|
||||
const rotateWeakKey = (key: Uint8Array): void => {
|
||||
const last = key[key.length - 1];
|
||||
key.copyWithin(1, 0, key.length - 1);
|
||||
key[0] = last;
|
||||
};
|
||||
|
||||
const repeatToLength = (value: string, minLength: number): string => {
|
||||
if (!value) return value;
|
||||
let out = value;
|
||||
while (out.length < minLength) out += out;
|
||||
return out;
|
||||
};
|
||||
|
||||
const craftWeakKey = (keySpace: string[]): Uint8Array => {
|
||||
const key = latin1Encode("0d5e9n1348/U2+67");
|
||||
for (let i = 0; i < key.length; i++) {
|
||||
const source = keySpace[(i + 1) % keySpace.length];
|
||||
const b = source.charCodeAt(i);
|
||||
if (!Number.isFinite(b)) continue;
|
||||
if (!key.includes(b) && WEAK_KEY_ALPHABET.includes(String.fromCharCode(b))) {
|
||||
key[i] = b;
|
||||
}
|
||||
}
|
||||
return key;
|
||||
};
|
||||
|
||||
export const craftMobaSessionPKey = (sessionP: string): Uint8Array => {
|
||||
const s = repeatToLength(sessionP, 20);
|
||||
return craftWeakKey([s.toUpperCase(), s.toUpperCase(), s.toLowerCase(), s.toLowerCase()]);
|
||||
};
|
||||
|
||||
export const craftMobaConnectionKey = (
|
||||
sysUsername: string,
|
||||
sysHostname: string,
|
||||
connUsername: string,
|
||||
connHostname: string,
|
||||
): Uint8Array => {
|
||||
const s1 = repeatToLength(sysUsername + sysHostname, 20);
|
||||
const s2 = repeatToLength(connUsername + connHostname, 20);
|
||||
return craftWeakKey([s1.toUpperCase(), s2.toUpperCase(), s1.toLowerCase(), s2.toLowerCase()]);
|
||||
};
|
||||
|
||||
export const decryptMobaWeakCipher = (ciphertext: string, key: Uint8Array): Uint8Array | null => {
|
||||
const filtered: number[] = [];
|
||||
for (let i = 0; i < ciphertext.length; i++) {
|
||||
const code = ciphertext.charCodeAt(i);
|
||||
if (key.includes(code)) filtered.push(code);
|
||||
}
|
||||
if (filtered.length === 0 || filtered.length % 2 !== 0) return null;
|
||||
const working = new Uint8Array(key);
|
||||
const plaintext = new Uint8Array(filtered.length / 2);
|
||||
for (let i = 0; i < filtered.length; i += 2) {
|
||||
const low = working.indexOf(filtered[i]);
|
||||
rotateWeakKey(working);
|
||||
const high = working.indexOf(filtered[i + 1]);
|
||||
rotateWeakKey(working);
|
||||
if (low < 0 || high < 0) return null;
|
||||
plaintext[i / 2] = ((high << 4) + low) & 0xff;
|
||||
}
|
||||
return plaintext;
|
||||
};
|
||||
|
||||
export const decodeMobaPlaintext = (bytes: Uint8Array | null): string | null => {
|
||||
if (!bytes || bytes.length === 0) return null;
|
||||
const nul = bytes.indexOf(0);
|
||||
// AES-CFB is unauthenticated. A wrong key can inject an interior NUL and leave
|
||||
// a short printable prefix (e.g. "M)8%"). Only a trailing NUL pad is a C string.
|
||||
let slice = bytes;
|
||||
if (nul === 0) return null;
|
||||
if (nul > 0) {
|
||||
for (let i = nul; i < bytes.length; i++) {
|
||||
if (bytes[i] !== 0) return null;
|
||||
}
|
||||
slice = bytes.subarray(0, nul);
|
||||
}
|
||||
if (slice.length === 0) return null;
|
||||
for (const value of slice) {
|
||||
if (value < 0x20 && value !== 0x09) return null;
|
||||
}
|
||||
try {
|
||||
return new TextDecoder("utf-8", { fatal: true }).decode(slice);
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
};
|
||||
|
||||
const decryptMasterPasswordCipher = (ciphertext: string, masterPassword: string): Uint8Array | null => {
|
||||
const key = sha512(utf8Encode(masterPassword)).subarray(0, 32);
|
||||
if (ciphertext.startsWith("_@") && ciphertext.length >= 20) {
|
||||
const iv = latin1Encode(ciphertext.slice(2, 18));
|
||||
const body = decodeBase64(ciphertext, true).subarray(15);
|
||||
if (body.length === 0) return null;
|
||||
return aesCfb8Decrypt(key, iv, body);
|
||||
}
|
||||
const standard = decodeBase64(ciphertext);
|
||||
if (standard.length === 0) return null;
|
||||
const iv = aesEncryptBlock(key, new Uint8Array(16));
|
||||
return aesCfb8Decrypt(key, iv, standard);
|
||||
};
|
||||
|
||||
export interface MobaStoredSecretInput {
|
||||
ciphertext: string;
|
||||
masterPassword?: string;
|
||||
sessionP?: string;
|
||||
sysUsername?: string;
|
||||
sysHostname?: string;
|
||||
connUsername?: string;
|
||||
connHostname?: string;
|
||||
}
|
||||
|
||||
export const decryptMobaStoredSecret = (input: MobaStoredSecretInput): string | null => {
|
||||
const ciphertext = input.ciphertext.trim();
|
||||
if (!ciphertext) return null;
|
||||
|
||||
if (input.masterPassword) {
|
||||
return decodeMobaPlaintext(decryptMasterPasswordCipher(ciphertext, input.masterPassword));
|
||||
}
|
||||
|
||||
if (input.connUsername && input.connHostname && input.sysUsername && input.sysHostname) {
|
||||
const weak = decryptMobaWeakCipher(
|
||||
ciphertext,
|
||||
craftMobaConnectionKey(
|
||||
input.sysUsername,
|
||||
input.sysHostname,
|
||||
input.connUsername,
|
||||
input.connHostname,
|
||||
),
|
||||
);
|
||||
const decoded = decodeMobaPlaintext(weak);
|
||||
if (decoded) return decoded;
|
||||
}
|
||||
|
||||
if (input.sessionP) {
|
||||
return decodeMobaPlaintext(decryptMobaWeakCipher(ciphertext, craftMobaSessionPKey(input.sessionP)));
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
174
domain/vaultImport/mobaXtermPasswords.ts
Normal file
174
domain/vaultImport/mobaXtermPasswords.ts
Normal file
@@ -0,0 +1,174 @@
|
||||
import type { Host } from "../models";
|
||||
import { decryptMobaStoredSecret } from "./mobaXtermCrypto";
|
||||
|
||||
type VaultImportIssue = { level: "warning" | "error"; message: string };
|
||||
|
||||
export interface MobaXtermIniSections {
|
||||
passwords: Map<string, string>;
|
||||
credentials: Map<string, { username: string; ciphertext: string }>;
|
||||
sessionP?: string;
|
||||
sysUsername?: string;
|
||||
sysHostname?: string;
|
||||
passwordsInRegistry: boolean;
|
||||
hasSesspass: boolean;
|
||||
}
|
||||
|
||||
export interface AttachMobaXtermPasswordsOptions {
|
||||
masterPassword?: string;
|
||||
}
|
||||
|
||||
const parsePasswordKey = (raw: string): { username?: string; hostname?: string } => {
|
||||
const stripped = raw.replace(/^[A-Za-z]+\d*:/, "");
|
||||
const at = stripped.lastIndexOf("@");
|
||||
if (at <= 0 || at === stripped.length - 1) return {};
|
||||
return {
|
||||
username: stripped.slice(0, at),
|
||||
hostname: stripped.slice(at + 1),
|
||||
};
|
||||
};
|
||||
|
||||
const sameHost = (left: string | undefined, right: string | undefined): boolean => (
|
||||
Boolean(left && right && left.localeCompare(right, undefined, { sensitivity: "accent" }) === 0)
|
||||
);
|
||||
|
||||
const presentMasterPassword = (value: string | undefined): string | undefined => (
|
||||
value === undefined || value === "" ? undefined : value
|
||||
);
|
||||
|
||||
const lookupPlaintext = (
|
||||
host: Host,
|
||||
passwords: Map<string, string>,
|
||||
credentialsByUser: Map<string, string[]>,
|
||||
): string | undefined => {
|
||||
const username = host.username?.trim();
|
||||
const hostname = host.hostname;
|
||||
const port = host.port ?? 22;
|
||||
if (username) {
|
||||
const exactKeys = [
|
||||
`${username}@${hostname}`,
|
||||
`ssh${port}:${username}@${hostname}`,
|
||||
`ssh:${username}@${hostname}`,
|
||||
];
|
||||
for (const key of exactKeys) {
|
||||
const value = passwords.get(key);
|
||||
if (value) return value;
|
||||
}
|
||||
}
|
||||
|
||||
const hostMatches: string[] = [];
|
||||
for (const [key, value] of passwords) {
|
||||
const parsed = parsePasswordKey(key);
|
||||
if (!sameHost(parsed.hostname, hostname)) continue;
|
||||
if (username && parsed.username && parsed.username !== username) continue;
|
||||
if (username && parsed.username === username) return value;
|
||||
hostMatches.push(value);
|
||||
}
|
||||
if (!username && hostMatches.length === 1) return hostMatches[0];
|
||||
|
||||
if (username) {
|
||||
const named = credentialsByUser.get(username);
|
||||
if (named?.length === 1) return named[0];
|
||||
}
|
||||
return undefined;
|
||||
};
|
||||
|
||||
export const attachMobaXtermPasswords = (
|
||||
hosts: Host[],
|
||||
sections: MobaXtermIniSections,
|
||||
options: AttachMobaXtermPasswordsOptions = {},
|
||||
): { hosts: Host[]; issues: VaultImportIssue[]; attached: number } => {
|
||||
const issues: VaultImportIssue[] = [];
|
||||
const masterPassword = presentMasterPassword(options.masterPassword);
|
||||
const hasCiphertext = sections.passwords.size > 0 || sections.credentials.size > 0;
|
||||
|
||||
if (sections.passwordsInRegistry && !hasCiphertext) {
|
||||
issues.push({
|
||||
level: "warning",
|
||||
message: "MobaXterm saved passwords in the Windows registry, so this file has no credentials to import.",
|
||||
});
|
||||
return { hosts, issues, attached: 0 };
|
||||
}
|
||||
|
||||
if (!hasCiphertext) return { hosts, issues, attached: 0 };
|
||||
|
||||
if (!masterPassword && sections.hasSesspass) {
|
||||
issues.push({
|
||||
level: "warning",
|
||||
message: "This MobaXterm file encrypts saved passwords with a master password. Enter it to import credentials.",
|
||||
});
|
||||
return { hosts, issues, attached: 0 };
|
||||
}
|
||||
|
||||
const decryptedPasswords = new Map<string, string>();
|
||||
let failed = 0;
|
||||
for (const [key, ciphertext] of sections.passwords) {
|
||||
const parsed = parsePasswordKey(key);
|
||||
const plaintext = decryptMobaStoredSecret({
|
||||
ciphertext,
|
||||
masterPassword,
|
||||
sessionP: sections.sessionP,
|
||||
sysUsername: sections.sysUsername,
|
||||
sysHostname: sections.sysHostname,
|
||||
connUsername: parsed.username,
|
||||
connHostname: parsed.hostname,
|
||||
});
|
||||
if (plaintext) decryptedPasswords.set(key, plaintext);
|
||||
else failed++;
|
||||
}
|
||||
|
||||
const credentialsByUser = new Map<string, string[]>();
|
||||
for (const credential of sections.credentials.values()) {
|
||||
const plaintext = decryptMobaStoredSecret({
|
||||
ciphertext: credential.ciphertext,
|
||||
masterPassword,
|
||||
sessionP: sections.sessionP,
|
||||
});
|
||||
if (!plaintext) {
|
||||
failed++;
|
||||
continue;
|
||||
}
|
||||
const current = credentialsByUser.get(credential.username) ?? [];
|
||||
current.push(plaintext);
|
||||
credentialsByUser.set(credential.username, current);
|
||||
}
|
||||
|
||||
if (masterPassword && failed > 0) {
|
||||
issues.push({
|
||||
level: "warning",
|
||||
message: "Could not decrypt MobaXterm passwords. Check the master password and try again.",
|
||||
});
|
||||
return { hosts, issues, attached: 0 };
|
||||
}
|
||||
|
||||
if (failed > 0 && decryptedPasswords.size === 0 && credentialsByUser.size === 0) {
|
||||
issues.push({
|
||||
level: "warning",
|
||||
message: "Could not decrypt MobaXterm passwords from this file.",
|
||||
});
|
||||
return { hosts, issues, attached: 0 };
|
||||
}
|
||||
|
||||
if (failed > 0) {
|
||||
issues.push({
|
||||
level: "warning",
|
||||
message: `Skipped ${failed} MobaXterm password(s) that could not be decrypted.`,
|
||||
});
|
||||
}
|
||||
|
||||
let attached = 0;
|
||||
const nextHosts = hosts.map((host) => {
|
||||
const password = lookupPlaintext(host, decryptedPasswords, credentialsByUser);
|
||||
if (!password) return host;
|
||||
attached++;
|
||||
return { ...host, password, savePassword: true };
|
||||
});
|
||||
|
||||
if (attached === 0) {
|
||||
issues.push({
|
||||
level: "warning",
|
||||
message: "Decrypted MobaXterm passwords, but none matched the imported SSH sessions.",
|
||||
});
|
||||
}
|
||||
|
||||
return { hosts: nextHosts, issues, attached };
|
||||
};
|
||||
Reference in New Issue
Block a user