
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
comfyui-json
Advanced tools
Install npm
bun i comfyui-json
API
const deps = await generateDependencyGraph({
workflow_api, // required, workflow API form ComfyUI
snapshot, // optional, snapshot generated form ComfyUI Manager
computeFileHash, // optional, any function that returns a file hash
handleFileUpload, // optional, any custom file upload handler, for external files right now
});
Example output
{
"comfyui": "d1533d9c0f1dde192f738ef1b745b15f49f41e02",
"custom_nodes": {
"https://github.com/ltdrdata/ComfyUI-Impact-Pack": {
"url": "https://github.com/ltdrdata/ComfyUI-Impact-Pack",
"name": "ComfyUI Impact Pack",
"hash": "585787bfa7fe0916821add13aa0e2a01c999a4df",
"warning": "No hash found in snapshot, using latest commit hash",
"pip": [
"ultralytics"
]
}
},
"models": {
"checkpoints": [
{
"name": "SD1.5/V07_v07.safetensors"
}
]
},
"files": {
"images": [
{
"name": "2pass-original.png"
}
]
}
}
Example file upload handler
const handleFileUpload = async (
_path: string,
hash: string,
prevHash?: string,
) => {
console.log(
`Uploading file ${_path} with hash ${hash} and previous hash ${prevHash}`,
);
return _path;
};
Example bun file hasher
const computeFileHash = async (_path: string) => {
const comfyuiPath = values.comfyui_path;
if (!comfyuiPath) {
return;
}
const f = file(path.join(comfyuiPath, _path));
const exist = await f.exists();
if (exist) {
const a = await f.arrayBuffer();
const hasher = new Bun.CryptoHasher("sha256");
hasher.update(a);
const hash = hasher.digest("base64");
return hash;
}
};
To install dependencies:
bun install
To test locally run:
bun run src/cli.ts -i "./workflow_api.json" -c "path/to/your/ComfyUI"
FAQs
Install npm
The npm package comfyui-json receives a total of 19 weekly downloads. As such, comfyui-json popularity was classified as not popular.
We found that comfyui-json demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.