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

net-snmp

Package Overview
Dependencies
Maintainers
2
Versions
157
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

net-snmp - npm Package Compare versions

Comparing version 3.10.3 to 3.10.4

11

lib/mib.js

@@ -768,4 +768,11 @@ var fs = require('fs');

let match = entry.match(/(.*)\((.+)\)$/);
midID.push(match[2]);
midOD.push(match[1]);
// cater for unannotated middle entries
// e.g. { enterprises 2699 1 1 }
if ( ! match ) {
midID.push(entry);
midOD.push(entry);
} else {
midID.push(match[2]);
midOD.push(match[1]);
}
}

@@ -772,0 +779,0 @@ midID.push(oid);

2

package.json
{
"name": "net-snmp",
"version": "3.10.3",
"version": "3.10.4",
"description": "JavaScript implementation of the Simple Network Management Protocol (SNMP)",

@@ -5,0 +5,0 @@ "main": "index.js",

Sorry, the diff of this file is too big to display

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