Socket
Socket
Sign inDemoInstall

proxying-agent

Package Overview
Dependencies
0
Maintainers
2
Versions
20
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.2.1 to 2.2.2

6

lib/proxying-agent.js

@@ -175,5 +175,5 @@ 'use strict';

var creds = this.options.proxy.auth.split(':');
ntlmOptions.ntlm.username = creds[0];
ntlmOptions.ntlm.password = creds[1];
var creds = this.options.proxy.auth.match(/([^:]*):?(.*)/);
ntlmOptions.ntlm.username = creds[1];
ntlmOptions.ntlm.password = creds[2];

@@ -180,0 +180,0 @@ // set the NTLM type 1 message header

{
"name": "proxying-agent",
"version": "2.2.1",
"version": "2.2.2",
"description": "Node HTTP/HTTPS Forward Proxy Agent",

@@ -5,0 +5,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc