
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).
mssql-change-tracking
Advanced tools
This node.js module written in Typescript and uses mssql under the hood to run the sql commands and provide high level functions to manage and work with MS SQL Change Tracking.
npm i mssql mssql-change-tracking
import { ctDbStatus } from "mssql-change-tracking";
import sql from "mssql";
const pool = new sql.ConnectionPool({
server: "xxxx",
user: "xxxx",
password: "xxxx",
database: "MY_DB_NAME",
});
await pool.connect();
const status = await ctDbStatus({ dbName: "MY_DB_NAME", pool });
console.log(status);
Before an application can obtain changes for the first time, the application must send a query to obtain the initial data and the synchronization version. The application must obtain the appropriate data directly from the table, and then use CHANGE_TRACKING_CURRENT_VERSION() to obtain the initial version. This version will be passed to CHANGETABLE(CHANGES ...) the first time that changes are obtained.
FAQs
MS SQL server change tracking functions
The npm package mssql-change-tracking receives a total of 1 weekly downloads. As such, mssql-change-tracking popularity was classified as not popular.
We found that mssql-change-tracking 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.