
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).
form-data-kit
Advanced tools
library to parse, stringify, and expand FormData
npm install form-data-kit
import { parse, stringify, expand } from 'form-data-kit';
parse(query: string): FormData
stringify(formData: FormData): string
expand(formData: FormData): object
Parse takes a search param / query string, like the one from an url, and returns FormData
import { parse } from "form-data-kit";
parse("one=foo&two=bar");
// FormData {
// [Symbol(state)]: [ { name: 'one', value: 'foo' }, { name: 'two', value: 'bar' } ]
// }
Parse takes FormData, and returns a search param / query string
import { stringify } from "form-data-kit";
const formData = new FormData();
formData.set("one", "foo");
formData.set("two", "bar");
stringify(formData);
// one=foo&two=bar
Expands formData into an object. This method supports nesting, using .
and [number]
syntax.
import { expand } from "form-data-kit";
const formData = new FormData();
formData.append("one", "1");
formData.append("two", "2");
formData.append("nested.three", "3");
formData.append("array[0]", "4");
formData.append("array[1].five", "5");
expand(formData);
// {
// one: '1',
// two: '2',
// nested: {
// three: '3',
// },
// array: ['4', { five: '5' }],
// }
FAQs
a lib to parse, stringify, and expand FormData
The npm package form-data-kit receives a total of 329 weekly downloads. As such, form-data-kit popularity was classified as not popular.
We found that form-data-kit demonstrated a healthy version release cadence and project activity because the last version was released less than 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.