
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).
node-xmlhttprequest
Advanced tools
A spec-compliant version of XMLHttpRequest that works in NodeJS.
npm i --save node-xmlhttprequest
import { XMLHttpRequest } from 'node-xmlhttprequest'
const xhr = new XMLHttpRequest()
xhr.open('GET', 'https://example.com')
xhr.onreadystatechange = () => {
if (xhr.readyState === XMLHttpRequest.DONE) {
const html = xhr.responseText
const statusCode = xhr.status
const statusText = xhr.statusText
}
}
xhr.send()
Synchronous XHR requests work too, without writing files as other packages do. Note that it does use worker threads.
Warning This option is only left in for compatibility reasons. It is not recommended for any reason as it will block the thread.
import { XMLHttpRequest } from 'node-xmlhttprequest'
const xhr = new XMLHttpRequest()
xhr.open('GET', 'https://example.com', false) // <-- note the false parameter
xhr.send()
assert(xhr.readyState === XMLHttpRequest.DONE)
const html = xhr.responseText
// ...
Note A relative URL is a URL that only contains a path.
Relative URLs do not behave the same as the browser. You must use undici to set a relative url, otherwise an error will be thrown.
import { XMLHttpRequest } from 'node-xmlhttprequest'
import { setGlobalOrigin } from 'undici'
setGlobalOrigin('https://example.com')
const xhr = new XMLHttpRequest()
xhr.open('GET', '/api/ping')
xhr.onreadystatechange = () => {
if (xhr.readyState === XMLHttpRequest.DONE) {
xhr.responseURL // https://example.com/api/ping
}
}
xhr.send()
FAQs
A spec-compliant version of XMLHttpRequest
The npm package node-xmlhttprequest receives a total of 23 weekly downloads. As such, node-xmlhttprequest popularity was classified as not popular.
We found that node-xmlhttprequest 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.