Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
azure-mgmt-sb
Advanced tools
This project provides a Node.js package that makes it easy to manage Windows Azure Service Bus. Right now it supports:
npm install azure-mgmt-sb
This library support management certificate authentication. To authenticate the library for the REST API calls, you need to
azure account cert export
to get the .pem file.var fs = require('fs'),
sbManagement = require('azure-mgmt-sb');
var sbManagementClient = sbManagement.createServiceBusManagementClient(sbManagement.createCertificateCloudCredentials({
subscriptionId: '<your subscription id>',
pem: fs.readFileSync('<your pem file>')
}));
var namespaceName = "namespace01";
// Create a namespace.
sbManagementClient.namespaces.create(namespaceName, "West US", function (err, result) {
if (err) {
console.error(err);
} else {
console.info(result);
}
});
FAQs
Microsoft Azure Service Bus Management Client Library for node
The npm package azure-mgmt-sb receives a total of 37 weekly downloads. As such, azure-mgmt-sb popularity was classified as not popular.
We found that azure-mgmt-sb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.