Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@smithy/middleware-content-length
Advanced tools
[![NPM version](https://img.shields.io/npm/v/@smithy/middleware-content-length/latest.svg)](https://www.npmjs.com/package/@smithy/middleware-content-length) [![NPM downloads](https://img.shields.io/npm/dm/@smithy/middleware-content-length.svg)](https://ww
@smithy/middleware-content-length is a middleware package for the Smithy client framework. It is used to automatically calculate and set the Content-Length header for HTTP requests. This is particularly useful when dealing with payloads where the size needs to be explicitly defined.
Automatic Content-Length Calculation
This feature automatically calculates the Content-Length of the request body and sets it in the HTTP headers. This is useful for ensuring that the server knows the size of the incoming request payload.
const { ContentLengthMiddleware } = require('@smithy/middleware-content-length');
const { HttpRequest } = require('@smithy/protocol-http');
const request = new HttpRequest({
hostname: 'example.com',
method: 'POST',
body: JSON.stringify({ key: 'value' })
});
const middleware = ContentLengthMiddleware();
const handler = middleware((next) => async (args) => {
return next(args);
});
handler({ request }).then((response) => {
console.log(response.request.headers['Content-Length']); // Outputs the calculated Content-Length
});
Axios is a popular HTTP client for Node.js and the browser. It automatically sets the Content-Length header for POST requests with a body. However, it is a full-fledged HTTP client and not just middleware.
The request package is another HTTP client for Node.js that automatically handles the Content-Length header for requests with a body. Like axios, it is a complete HTTP client and not just middleware.
Node-fetch is a lightweight module that brings window.fetch to Node.js. It also automatically sets the Content-Length header for requests with a body. It is more lightweight compared to axios and request.
FAQs
[![NPM version](https://img.shields.io/npm/v/@smithy/middleware-content-length/latest.svg)](https://www.npmjs.com/package/@smithy/middleware-content-length) [![NPM downloads](https://img.shields.io/npm/dm/@smithy/middleware-content-length.svg)](https://ww
The npm package @smithy/middleware-content-length receives a total of 13,384,449 weekly downloads. As such, @smithy/middleware-content-length popularity was classified as popular.
We found that @smithy/middleware-content-length 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.