
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
@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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.