
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).
@medable/mdctl-api-driver
Advanced tools
Developer Tools Driver module
This module provides the access to the db driver endpoints
const { Client } = require('@medable/mdctl-api')
const { Driver } = require('@medable/mdctl-api-driver')
const { CortexObject } = require('@medable/mdctl-api-driver/lib/cortex.object')
// a global org object will be created using the default mdctl credentials
const result = await org.objects.c_my_object.find() // will return a Transform stream.
const result = await org.objects.c_my_object.find().toArray() // will return an array with results
// using bulk operations
const result = await org.objects.bulk()
.add(org.objects.c_my_object.inserOne({}), {
name: 'InserOne',
halt: true,
wrap: true,
output: true
})
.add(org.objects.c_my_object.find({c_name: 'test'}), {
name: 'Results',
halt: true,
wrap: true,
output: true
})
.toArray()
// In case you want to use a different credentials/environment
const driver = new Driver(new Client({environment, credentials}))
const obj = new CortexObject('c_my_object', driver)
const result = await obj.find({c_name: 'test'})
FAQs
Medable Developer Client Tools :: Api DB Driver
The npm package @medable/mdctl-api-driver receives a total of 0 weekly downloads. As such, @medable/mdctl-api-driver popularity was classified as not popular.
We found that @medable/mdctl-api-driver demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
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.