Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
FCM implementation based on REST API, supports proxy. No dependencies on firebase framework.
Implements send-message
HTTP APIs v1
and legacy
Legacy API https://firebase.google.com/docs/cloud-messaging/send-message#send_using_the_fcm_legacy_http_api
V1 API https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages
npm install fcm-rest
import fcm from 'fcm-rest'
//const fcm = require('fcm-rest')
// recipient
const clientToken = 'ZkVNZ...'
// Use legacy FCM API
const serverKey = 'AAAA...'
await fcm.sendMessageLegacy(serverKey, clientToken, {
notification: { title: 'Hi there' }
})
// Use v1 FCM API
const gcpServiceAccount = {
client_email: '***',
project_id : '***',
private_key : '***',
...
}
await fcm.sendMessageV1(gcpServiceAccount, clientToken, {
notification: { title: 'Hi there' }
})
// Send v1 topic
await fcm.sendMessageV1(gcpServiceAccount, undefined, {
notification: { title: 'Hi there' },
topic: 'topic-name'
})
FAQs
FCM (send-message) implementation based on REST API, supports proxy
We found that fcm-rest 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.