You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

http-message-parser

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.25 to 0.0.26

7

http-message-parser.js

@@ -177,7 +177,8 @@ (function(root) {

var boundaryIndexes = [];
for (var j = 0; j < message.length; j++) {
var boundaryMatch = message.slice(j, j + fullBoundary.length).toString();
for (var j = 0; j >= 0;) {
j = message.indexOf(fullBoundary, j);
if (boundaryMatch === fullBoundary) {
if (j >= 0) {
boundaryIndexes.push(j);
j += fullBoundary.length;
}

@@ -184,0 +185,0 @@ }

{
"name": "http-message-parser",
"version": "0.0.25",
"version": "0.0.26",
"description": "HTTP message parser in JavaScript.",

@@ -5,0 +5,0 @@ "main": "http-message-parser.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc