mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
125 lines
3.7 KiB
JavaScript
125 lines
3.7 KiB
JavaScript
import { createWriteStream, createReadStream } from "fs";
|
|
import { createHash } from "crypto";
|
|
import { pipeline } from "stream/promises";
|
|
import fetch from "make-fetch-happen";
|
|
|
|
const ULTIMATE_VERSION = "v0.2.1";
|
|
|
|
const DOWNLOAD_URLS = {
|
|
win32: {
|
|
x64: {
|
|
url: `https://github.com/AikidoSec/safechain-internals/releases/download/${ULTIMATE_VERSION}/SafeChainAgent-windows-amd64.msi`,
|
|
checksum:
|
|
"sha256:8d86a44d314746099ba50cfae0cc1eae6232522deb348b226da92aae12754eec",
|
|
},
|
|
arm64: {
|
|
url: `https://github.com/AikidoSec/safechain-internals/releases/download/${ULTIMATE_VERSION}/SafeChainAgent-windows-arm64.msi`,
|
|
checksum:
|
|
"sha256:ab5b8335cc257d53424f73d6681920875083cd9b3f53e52d944bf867a415e027",
|
|
},
|
|
},
|
|
darwin: {
|
|
x64: {
|
|
url: `https://github.com/AikidoSec/safechain-internals/releases/download/${ULTIMATE_VERSION}/SafeChainAgent-darwin-amd64.pkg`,
|
|
checksum:
|
|
"sha256:73f83d9352c4fd25f7693d9e53bbbb2b7ac70d16217d745495c9efb50dc4a3a6",
|
|
},
|
|
arm64: {
|
|
url: `https://github.com/AikidoSec/safechain-internals/releases/download/${ULTIMATE_VERSION}/SafeChainAgent-darwin-arm64.pkg`,
|
|
checksum:
|
|
"sha256:bd419e9c82488539b629b04c97aa1d2dc90e54ff045bd7277a6b40d26f8ebc73",
|
|
},
|
|
},
|
|
};
|
|
|
|
/**
|
|
* Builds the download URL for the SafeChain Agent installer.
|
|
* @param {string} fileName
|
|
*/
|
|
export function getAgentDownloadUrl(fileName) {
|
|
return `https://github.com/AikidoSec/safechain-internals/releases/download/${ULTIMATE_VERSION}/${fileName}`;
|
|
}
|
|
|
|
/**
|
|
* Downloads a file from a URL to a local path.
|
|
* @param {string} url
|
|
* @param {string} destPath
|
|
*/
|
|
export async function downloadFile(url, destPath) {
|
|
const response = await fetch(url);
|
|
if (!response.ok) {
|
|
throw new Error(`Download failed: ${response.statusText}`);
|
|
}
|
|
await pipeline(response.body, createWriteStream(destPath));
|
|
}
|
|
|
|
/**
|
|
* Returns the current agent version.
|
|
*/
|
|
export function getAgentVersion() {
|
|
return ULTIMATE_VERSION;
|
|
}
|
|
|
|
/**
|
|
* Returns download info (url, checksum) for the current OS and architecture.
|
|
* @returns {{ url: string, checksum: string } | null}
|
|
*/
|
|
export function getDownloadInfoForCurrentPlatform() {
|
|
const platform = process.platform;
|
|
const arch = process.arch;
|
|
|
|
if (!Object.hasOwn(DOWNLOAD_URLS, platform)) {
|
|
return null;
|
|
}
|
|
const platformUrls =
|
|
DOWNLOAD_URLS[/** @type {keyof typeof DOWNLOAD_URLS} */ (platform)];
|
|
|
|
if (!Object.hasOwn(platformUrls, arch)) {
|
|
return null;
|
|
}
|
|
|
|
return platformUrls[/** @type {keyof typeof platformUrls} */ (arch)];
|
|
}
|
|
|
|
/**
|
|
* Verifies the checksum of a file.
|
|
* @param {string} filePath
|
|
* @param {string} expectedChecksum - Format: "algorithm:hash" (e.g., "sha256:abc123...")
|
|
* @returns {Promise<boolean>}
|
|
*/
|
|
async function verifyChecksum(filePath, expectedChecksum) {
|
|
const [algorithm, expected] = expectedChecksum.split(":");
|
|
|
|
const hash = createHash(algorithm);
|
|
|
|
if (filePath.includes("..")) throw new Error("Invalid file path");
|
|
const stream = createReadStream(filePath);
|
|
|
|
for await (const chunk of stream) {
|
|
hash.update(chunk);
|
|
}
|
|
|
|
const actual = hash.digest("hex");
|
|
return actual === expected;
|
|
}
|
|
|
|
/**
|
|
* Downloads the SafeChain agent for the current OS/arch and verifies its checksum.
|
|
* @param {string} fileName - Destination file path
|
|
* @returns {Promise<string | null>} The file path if successful, null if no download URL for current platform
|
|
*/
|
|
export async function downloadAgentToFile(fileName) {
|
|
const info = getDownloadInfoForCurrentPlatform();
|
|
if (!info) {
|
|
return null;
|
|
}
|
|
|
|
await downloadFile(info.url, fileName);
|
|
|
|
const isValid = await verifyChecksum(fileName, info.checksum);
|
|
if (!isValid) {
|
|
throw new Error("Checksum verification failed");
|
|
}
|
|
|
|
return fileName;
|
|
}
|