Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
redis.token
Advanced tools
npm install redis.token --save
This NPM module automatically converts key value objects into hash tables.
The Redis.GET
command automatically returns an object in the redis
npm module.
Two dependencies for this project is (NPM):
crypto-js
redis
var config = {
host: "localhost",
port: 6379,
path: null,
url: null,
//etc (refer to redis npm docs for full configuration)
}
var redis = require("redis.token")(config, function(err) {
if (err) throw err
})
redis.generate(
{
"key": "value",
"key2": "value"
},
function(err, key) {
if (err) throw err
//Returns randomly generated SHA3 token
console.log(key)
redis.get(key.token, function(err, reply) {
if (err) throw err
/*
Returns
{
"key": "value",
"key2": "value"
}
*/
console.log(reply)
})
}
)
Generates a hashtable with the key values in obj
, callback returns a token.
With the token generated in .generate()
you can retrieve the object stored.
var config = {
salt: crypto.randomBytes(100)
}
This is an optional configuration for the NPM module!
FAQs
token based storage system in Redis that uses hashtables.
The npm package redis.token receives a total of 2 weekly downloads. As such, redis.token popularity was classified as not popular.
We found that redis.token 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.