
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.
@credo-ts/drpc
Advanced tools
DRPC module for Credo. Implements Aries RFC 0804.
In order for this module to work, we have to inject it into the agent to access agent functionality. See the example for more information.
import { DrpcModule } from '@credo-ts/drpc'
const agent = new Agent({
config: {
/* config */
},
dependencies: agentDependencies,
modules: {
drpc: new DrpcModule(),
/* other custom modules */
},
})
await agent.initialize()
// Send a request to the specified connection
const responseListener = await senderAgent.modules.drpc.sendRequest(connectionId, {
jsonrpc: '2.0',
method: 'hello',
id: 1,
})
// Listen for any incoming requests
const { request, sendResponse } = await receiverAgent.modules.drpc.recvRequest()
// Process the received request and create a response
const result =
request.method === 'hello'
? { jsonrpc: '2.0', result: 'Hello world!', id: request.id }
: { jsonrpc: '2.0', error: { code: DrpcErrorCode.METHOD_NOT_FOUND, message: 'Method not found' } }
// Send the response back
await sendResponse(result)
FAQs
Credo DRPC Module</b
The npm package @credo-ts/drpc receives a total of 0 weekly downloads. As such, @credo-ts/drpc popularity was classified as not popular.
We found that @credo-ts/drpc demonstrated a healthy version release cadence and project activity because the last version was released less than 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.