mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Merge pull request #262 from AikidoSec/safe-chain-verify-command
Add command to verify safe-chain is intercepting the package managers commands
This commit is contained in:
commit
74c57cd86a
3 changed files with 32 additions and 3 deletions
|
|
@ -3,7 +3,10 @@
|
|||
import chalk from "chalk";
|
||||
import { ui } from "../src/environment/userInteraction.js";
|
||||
import { setup } from "../src/shell-integration/setup.js";
|
||||
import { teardown, teardownDirectories } from "../src/shell-integration/teardown.js";
|
||||
import {
|
||||
teardown,
|
||||
teardownDirectories,
|
||||
} from "../src/shell-integration/teardown.js";
|
||||
import { setupCi } from "../src/shell-integration/setup-ci.js";
|
||||
import { initializeCliArguments } from "../src/config/cliArguments.js";
|
||||
import { setEcoSystem } from "../src/config/settings.js";
|
||||
|
|
@ -45,7 +48,7 @@ if (tool) {
|
|||
const args = process.argv.slice(3);
|
||||
|
||||
setEcoSystem(tool.ecoSystem);
|
||||
|
||||
|
||||
// Provide tool context to PM (pip uses this; others ignore)
|
||||
const toolContext = { tool: tool.tool, args };
|
||||
initializePackageManager(tool.internalPackageManagerName, toolContext);
|
||||
|
|
|
|||
|
|
@ -13,6 +13,10 @@ import { getAuditStats } from "./scanning/audit/index.js";
|
|||
* @returns {Promise<number>}
|
||||
*/
|
||||
export async function main(args) {
|
||||
if (isSafeChainVerify(args)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
process.on("SIGINT", handleProcessTermination);
|
||||
process.on("SIGTERM", handleProcessTermination);
|
||||
|
||||
|
|
@ -104,3 +108,12 @@ export async function main(args) {
|
|||
function handleProcessTermination() {
|
||||
ui.writeBufferedLogsAndStopBuffering();
|
||||
}
|
||||
|
||||
/** @param {string[]} args */
|
||||
function isSafeChainVerify(args) {
|
||||
const safeChainCheckCommand = "safe-chain-verify";
|
||||
if (args.length > 0 && args[0] === safeChainCheckCommand) {
|
||||
ui.writeInformation("OK: Safe-chain works!");
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue