
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
WebSocket server using the nydus protocol, a simple RPC/PubSub protocol.
import nydus from 'nydus'const nydusServer = nydus(httpServer[, options])
Create a nydus server and attach it to a particular httpServer. An optional options object can
be passed as the second argument.
For the list of acceptable options, check the constructor method of engine.io.
nydusServer.registerRoute(pathPattern, ...handlers)
Register one or more handlers to respond to INVOKE messages on a path matching the specified
pattern. Handlers are ES7 async functions (and thus return promises when called) of the form:
async function(data, next)
Handlers will be composed in order, and are expected to call next(data, next) to make execution
continue further down the chain. Data is an immutable map that can be changed before passing it to
the next function, but should present the same API (or ideally, be an ImmutableJS map) for
compatibility with other handlers.
The final resolved value will be sent to the client (as a RESULT if the promise was successfully resolved, or an ERROR if it was rejected).
nydusServer.subscribeClient(client, path[, initialData])
Add a subscription to a publish path for a client. Whenever messages are published to that path,
this client will receive a message (until unsubscribed). If initialData is specified and the
client was previously not subscribed, this data will be published to the client immediately (but
not to the other subscribed clients).
nydusServer.publish(path, data)
Publish the given data to all of the clients subscribed on the specified path.
nydusServer.unsubscribeClient(client, path)
Remove a client's subscription to a particular path (if it was subscribed).
nydusServer.close()
Close any open connections and then stop the nydus server.
MIT
FAQs
WebSocket server using the nydus protocol, a simple RPC/PubSub protocol.
The npm package nydus receives a total of 20 weekly downloads. As such, nydus popularity was classified as not popular.
We found that nydus demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.