
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
grunt-azure
Advanced tools
Grunt Azure - Allows to use Windows Azure Storage Blobs / Tables / Queues inside Grunt
Grunt Azure - Allows to use Windows Azure Storage Blobs / Tables / Queues inside Grunt.
Install this grunt plugin next to your project's gruntfile with: npm install grunt-azure --save-dev
Then add this line to your project's Gruntfile.js
:
grunt.loadNpmTasks('grunt-azure');
Then specify your config:
grunt.initConfig({
'azure-blob-upload': {
dist: {
options: {
serviceOptions: '{connectionstring}',
container: 'testcontainer'
},
src: 'local/folder/**',
dest: 'remote/prefix/'
}
}
'azure-blob-download': {
dist: {
options: {
serviceOptions: '{connectionstring}',
container: 'testcontainer'
},
src: 'remote/prefix/',
dest: 'local/folder/'
}
}
'azure-queue-enqueue": {
dist: {
options: {
serviceOptions: '{connectionstring}',
queue: 'testqueue',
message: "String or JS"
}
}
}
'azure-queue-dequeue": {
dist: {
options: {
serviceOptions: '{connectionstring}',
queue: 'testqueue',
numOfMessages: "String or JS"
},
actions: [
function (work, callback) {
//...
callback(null, result);
// or
callback(err);
},
function (work) {
console.log(work);
}
]
}
}
'azure-queue-clear": {
dist: {
options: {
serviceOptions: '{connectionstring}',
queue: 'testqueue'
}
}
}
'azure-table-insert": {
dist: {
options: {
serviceOptions: '{connectionstring}',
table: 'testtable'
},
entities: [
{
PartitionKey: "partkey",
RowKey: "key1",
Property: "Value"
},
{
PartitionKey: "partkey",
RowKey: "key2",
Property: "Value"
}
]
}
}
Note: There are tasks for every entities operations :
'azure-table-query": {
dist: {
options: {
serviceOptions: '{connectionstring}',
table: 'testtable',
top: 10,
pkPrefix: "prefix"
},
actions: [
function (entities, callback) {
//...
callback(null, result);
// or
callback(err);
},
function (entities) {
console.log(work);
}
]
}
}
FAQs
Grunt Azure - Allows to use Windows Azure Storage Blobs / Tables / Queues inside Grunt
The npm package grunt-azure receives a total of 3 weekly downloads. As such, grunt-azure popularity was classified as not popular.
We found that grunt-azure 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.