
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Table of Contents
Wrapper around Push and Notifications API. Handles subscription and unsubscription. Provides some useful methods.
Needs service worker to be installed in any way. Provides an interface to perform service worker installation if needed.
You can find a basic example application including manifest.json and fully commented service worker in the example
folder.
To run the app use npm run local
command and navigate to http://localhost:5001.
import Push from 'push-js';
const push = new Push(); // All arguments are optional
push.subscribe().then(subscription => {});
push.unsubscribe().then(() => {});
There is a simple service worker provided with this package. It's needed to make notification events to work properly. You may use it as is, but the best way is to import it in your service worker, as shown in the example.
An options object that can contain some callbacks and a path to the service worker.
stateChangeCb
: receives state and an Error object if an error occurred.subscriptionUpdateCb
: receives subscription object (PushSubscription).logCb
: receives anything that should be logged.Creates and returns new subscription if it does n't exist, returns old otherwise.
Tries to unsubscribe. Returns resolved Promise anyway.
Returns permission state. See ./source/constants/states.js
.
Requests user permission to show notifications. Returns resolved or rejected Promise depending on user decision.
Checks browser support and returns Boolean.
Same as PushManager.getSubscription().
Accepts two parameters, same as new Notification
constuctor does. See MDN for the description.
Shows notification via service worker. Returns Promise resolved with corresponding Notification object.
FAQs
Push and Notifications API wrapper.
The npm package push-js receives a total of 24 weekly downloads. As such, push-js popularity was classified as not popular.
We found that push-js 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.