
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.
cloudvision-grpc-web
Advanced tools
A grpc-web client for requesting CloudVision data from the frontend. This libraries exposed functions and utils that convert the grpc-web calls to Observable streams that can be manipulated using RXJS.
The package expects protobuf definitions to be generated via ts-proto
npm install cloudvision-grpc-web
or
yarn install cloudvision-grpc-web
import { fromResourceGrpcInvoke } from 'cloudvision-grpc-web';
import { DeviceServiceGetAllDesc, DeviceStreamRequest } from '../generated/arista/inventory.v1/services.gen';
const requestAllMessage = DeviceStreamRequest.fromPartial({});
const grpcRequest = fromResourceGrpcInvoke(DeviceServiceGetAllDesc, {
host: 'http://cvphost',
request: { ...requestAllMessage, ...DeviceServiceGetAllDesc.requestType },
});
// Will print out each data message as it arrives
grpcRequest.data.subscribe({
next: (val) => console.log('data', val))
})
// Will print out any Grpc metadata or errors as they happen
grpcRequest.messages.subscribe({
next: (val) => console.log('control message', val))
})
FAQs
A Grpc-Web client for CloudVision
The npm package cloudvision-grpc-web receives a total of 3 weekly downloads. As such, cloudvision-grpc-web popularity was classified as not popular.
We found that cloudvision-grpc-web demonstrated a not healthy version release cadence and project activity because the last version was released 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.