
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
storj-express
Advanced tools
express middleware that exposes a configurable storj endpoint on an express server
add a storj server to an existing express app quickly and easily
npm install github:dylanlott/storj-express --save
const express = require('express');
const app = express();
const storj = require('storj-express');
app.use('/storj', storj({
bridgeUrl: 'https://api.storj.io',
bridgeUser: <your@storj.email>,
bridgePass: <your-storj-password>,
encryptionKey: 'abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about',
logLevel: 4
}));
app.listen(1337, () => {
console.log('storj-enabled express server now running on port 1337');
});
you can app.use()
this route anywhere to namespace a storj service endpoint wherever you want.
or, alternatively, you can use this to setup a storj microservice by namespacing it to the root url /
however you want to use this is up to you! let your imagination run wild.
This is a work in progress middleware package.
The following routes still need to be implemented
.getInfo(function(err, result) {}) - Gets general API info`
.getBuckets(function(err, result) {}) - Gets list of available buckets
.createBucket(bucketName, function(err, result) {}) - Creates a bucket
.deleteBucket(bucketId, function(err, result) {}) - Deletes a bucket
.listFiles(bucketId, function(err, result) {}) - List files in a bucket
.storeFile(bucketId, filePath, options) - Uploads a file, returns state object
.storeFileCancel(state) - This will cancel an upload
.resolveFile(bucketId, fileId, filePath, options) - Downloads a file, return state object
.resolveFileCancel(state) - This will cancel a download
.deleteFile(bucketId, fileId, function(err, result) {}) - Deletes a file from a bucket
.destroy() - This will zero and free memory of encryption keys and the environment
FAQs
express middleware that exposes a configurable storj endpoint on an express server
The npm package storj-express receives a total of 0 weekly downloads. As such, storj-express popularity was classified as not popular.
We found that storj-express 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
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.