Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
azure-asm-storage
Advanced tools
This project provides a Node.js package that makes it easy to manage Microsoft Azure Storage. Right now it supports:
npm install azure-asm-storage
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'),
storageManagement = require('azure-asm-storage');
var storageManagementClient = storageManagement.createStorageManagementClient(storageManagement.createCertificateCloudCredentials({
subscriptionId: '<your subscription id>',
pem: fs.readFileSync('<your pem file>')
}));
var storageAccountName = "storage01";
// Create a Storage account.
storageManagementClient.storageAccounts.create({
serviceName: storageAccountName,
location: "West US",
label: "Storage 01",
geoReplicationEnabled: true
}, function (err, result) {
if (err) {
console.error(err);
} else {
console.info(result.statusCode);
}
});
// List all Storage account under a subscription.
storageManagementClient.storageAccounts.list(function (err, result) {
if (err) {
console.error(err);
} else {
for (var i = 0; i < result.storageServices.length; i++) {
var output = result.storageServices[i].serviceName + ", " +
result.storageServices[i].properties.location;
console.info(output);
}
}
});
// Get a Storage account by name.
storageManagementClient.storageAccounts.get(storageAccountName, function (err, result) {
if (err) {
console.error(err);
} else {
console.info("Name: " + result.serviceName);
console.info("URI: " + result.uri);
}
});
// Update a Storage account.
storageManagementClient.storageAccounts.update(storageAccountName, {
geoReplicationEnabled: false,
description: "This is a demo Storage account."
}, function (err, result) {
if (err) {
console.error(err);
} else {
console.info(result.statusCode);
}
});
// Delete a Storage account.
storageManagementClient.storageAccounts.delete(storageAccountName, function (err, result) {
if (err) {
console.error(err);
} else {
console.info(result.statusCode);
}
});
// Get the primary key and secondary key of a Storage account.
storageManagementClient.storageAccounts.getKeys(storageAccountName, function (err, result) {
if (err) {
console.error(err);
} else {
console.info("Primary key: " + result.primaryKey);
console.info("Secondary key: " + result.secondaryKey);
}
});
// Regenerate the secondary key of a Storage account.
storageManagementClient.storageAccounts.regenerateKeys({
serviceName: storageAccountName,
keyType: "Secondary"
}, function (err, result) {
if (err) {
console.error(err);
} else {
console.info("New secondary key: " + result.secondaryKey);
}
});
FAQs
Microsoft Azure Storage Management Client Library for node
We found that azure-asm-storage 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.