
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
This package implements a middleware to broadcast SSE when using Nexs.js framework.
npm i -S nestjs-sse
Apply the middleware
import {MiddlewareConsumer, Module} from "@nestjs/common";
import {ConnectionService} from "./connection.service";
import {ConnectionController} from "./connection.controller";
import {SSEMiddleware} from "nestjs-sse";
@Module({
imports: [],
controllers: [ConnectionController],
providers: [ConnectionService],
exports: [ConnectionService],
})
export class ConnectionModule {
configure(consumer: MiddlewareConsumer) {
consumer
.apply(SSEMiddleware)
.forRoutes(ConnectionController);
}
}
Inside the controller
import {Controller, Get, Res} from "@nestjs/common";
import {Response} from "nestjs-sse";
import {ConnectionService} from "./connection.service";
import settings from "./config";
@Controller()
export class ConnectionController {
constructor(private readonly connectionService: ConnectionService) {
}
@Get("vm/connection")
list(@Res() res: Response) {
res.sse(`data: ${JSON.stringify(this.connectionService.getAliveVMsData())}\n\n`);
setInterval(() => {
res.sse(`data: ${JSON.stringify(this.connectionService.getAliveVMsData())}\n\n`);
}, settings.MAX_HEART_BEAT_IDLE_MS);
}
}
FAQs
Middleware for Nest.js to broadcast Server-Sent Events (SSE)
The npm package nestjs-sse receives a total of 29 weekly downloads. As such, nestjs-sse popularity was classified as not popular.
We found that nestjs-sse 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.