
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
pokec-send-message
Advanced tools
Simple wrapper class for sending messages to chatrooms on Pokec social network.
Simple wrapper class for sending messages to chatrooms on Pokec social network.
This package cannot send RP messages.
$ npm install pokec-send-message
$ yarn add pokec-send-message
// require lib
const PokecAPI = require("pokec-send-message");
// init lib
const pokec = new PokecAPI();
// get list of pokec chatrooms
pokec.getRooms().then(console.log).catch(console.error);
// login to pokec
pokec.login(
"username",
"password"
).then(response => {
console.log(response);
// send message
pokec.sendMessage(
"hello :)", // message
9, // room id, for list of available rooms use getRooms method
"somebody" // [optional] for user, defaults to "all"
).then(console.log).catch(console.error);
// set interval for ping
setInterval(() => pokec.ping().then(console.log).catch(console.error));
}).catch(console.error);
FAQs
Simple wrapper class for sending messages to chatrooms on Pokec social network.
We found that pokec-send-message 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 flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.