
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.
@efffrida/frida-tools
Advanced tools
Provides effectful abstractions for frida such as: connecting to devices, managing sessions, and creating script.
import { NodeContext } from "@effect/platform-node";
import { FridaCompile } from "@efffrida/frida-compile";
import { FridaDevice, FridaScript, FridaSession } from "@efffrida/frida-tools";
import { Effect, Layer, Stream } from "effect";
import { ScriptRuntime } from "frida";
// Pick a device and a session/program
const DeviceLive = FridaDevice.layerLocalDevice;
const SessionLive = FridaSession.layer("/usr/bin/sleep");
const FridaLive = Layer.provideMerge(SessionLive, DeviceLive);
// Compile the agent
const ScriptLive = FridaCompile.compileAgent(new URL("../frida/agent.ts", import.meta.url))
.pipe(Effect.map(FridaScript.layer()))
.pipe(Layer.unwrapEffect)
.pipe(Layer.provide([FridaLive, NodeContext.layer]));
const program = Effect.gen(function* () {
const script = yield* FridaScript.FridaScript;
const messages = yield* Stream.runHead(script.stream);
// ...
}).pipe(Effect.scoped)
FAQs
Frida with effect-ts
The npm package @efffrida/frida-tools receives a total of 3 weekly downloads. As such, @efffrida/frida-tools popularity was classified as not popular.
We found that @efffrida/frida-tools demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.