
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@aller/real-time-flow
Advanced tools
Repository for Allers approach to reconnecting websockets, with possibility of elavating on fallbacks
RealTimeFlow (name pending) is the websocket with reconnect functionality repo for Aller. In the future, this might be expanded to include functionality for fallback protocols when websockets is not accessible for the current connection.
Using the package is quite simple;
import { RealTimeFlow } from '@aller/real-time-flow'
// The hostname here can be both with https, http, ws, wss and so on, it is stripped, always.
const client = new RealTimeFlow(`localhost:PORT`, {
reconnect?: boolean
protocols?: string | string[]
secure?: boolean
})
// After you have created a new instance of RealTimeFlow, you can add the listeners on the object
client.on(Events.MESSAGE, (event) => { [...] })
client.on(Events.RECONNECT, (event) => { [...] })
client.on(Events.OPEN, (event) => { [...] })
client.on(Events.CLOSE, (event) => { [...] })
client.on(Events.ERROR, (event) => { [...] })
// After listeners have been added, you can connect
client.connect()
// If you want to remove any listeners, you can call
client.off(Events.EVENTNAME, FUNCTIONYOUADDEDHERE)
// When its time to disconnect, this can be done with
client.disconnect()
// To get a simplified view of the state and whether the client is connected,
// you can run
client.connected()
// If you need more info on the state of the client, the full state is also exposed
client.state()
To combat multiple clients reconnecting at the same time, the reconnect-time is set to a random number between 0-3000 ms. This should probably be improved on, depending on the performance of this.
Tests are done with ts-jest, and mocks a websocket server locally that returns whatever is sent to the server, back to the client. The tests includes tests for sending and receiving data + reconnect-functionality
yarn test
See if there are any tests breaking.
If you want to test in your browser, you can run
yarn test:browser
FAQs
Repository for Allers approach to reconnecting websockets, with possibility of elavating on fallbacks
We found that @aller/real-time-flow demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 17 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 discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.