New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pixl-server-web

Package Overview
Dependencies
Maintainers
1
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pixl-server-web - npm Package Compare versions

Comparing version 1.3.13 to 1.3.14

9

lib/request.js

@@ -38,2 +38,11 @@ // Simple HTTP / HTTPS Web Server

if (!request.socket.remoteAddress) {
// weird situation: a request came in without a remoteAddress -- reject immediately
this.logError(400, "No socket IP address -- rejecting request",
{ id: args.id, ips: ips, uri: request.url, headers: request.headers }
);
this.sendHTTPResponse( args, "400 Bad Request", {}, "" );
return;
}
if (this.server.shut) {

@@ -40,0 +49,0 @@ // server is shutting down, deny new requests

2

package.json
{
"name": "pixl-server-web",
"version": "1.3.13",
"version": "1.3.14",
"description": "A web server component for the pixl-server framework.",

@@ -5,0 +5,0 @@ "author": "Joseph Huckaby <jhuckaby@gmail.com>",

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc