
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).
fetch-to-curl
Advanced tools
This module was inspired by http-to-curl. Use it to generate curl requests with the inputs you would usually use for javascripts fetch. However it does not patch any modules like http-to-curl. It is just a wrapper to generate the curl string. This ensures that there are no side effects with your actual usage of fetch.
Also note that the goal of this library is to be as simple and minimal as possible. This also means that there are zero dependencies :tada:
yarn add fetch-to-curl
or
npm install fetch-to-curl
import { fetchToCurl } from 'fetch-to-curl';
// or In case there is no support for Es Modules in your environment:
// const { fetchToCurl } = require("fetch-to-curl")
const url = 'https://jsonplaceholder.typicode.com/posts/1';
const options = {
headers: {
Authorization: "BASIC SOMEBASE64STRING"
},
method: 'get'
};
// Log yopur request
console.log(fetchToCurl(url, options));
// Do your request
fetch(url, options);
// Output
curl "https://jsonplaceholder.typicode.com/posts/1" -X GET -H "Authorization: BASIC SOMEBASE64STRING"
// You can also pass a single Request object
console.log(fetchToCurl({
url: "https://jsonplaceholder.typicode.com/posts/1"
headers: {
Authorization: "BASIC SOMEBASE64STRING"
},
method: 'get'
}));
// and/or a Headers object as you would to with fetch
console.log(fetchToCurl({
url: "https://jsonplaceholder.typicode.com/posts/1"
headers: new Headers({
Authorization: "BASIC SOMEBASE64STRING"
}),
method: 'get'
}))
There is a minimal example of usage without package manager available which allows to directly test this in the browser console. (view source - playground.html)
FAQs
Convert fetch HTTP request to curl
The npm package fetch-to-curl receives a total of 16,919 weekly downloads. As such, fetch-to-curl popularity was classified as popular.
We found that fetch-to-curl 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.