
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
storehippo-nodejs-sdk
Advanced tools
StoreHippo supports two types of authentication
1. Access Key
var storehippo = require('storehippo-nodejs-sdk')({
storename : <your-store-name>,
access_key : <your-access-key>,
version: <version>
});
2. Access Token
var storehippo = require('storehippo-nodejs-sdk')({
storename : <your-store-name>,
access_token : <your-access-token>,
version: <version>
});
var request = {
entity : "your-entity-name"
query : {
filters: "array-of-filters",
start: "start value",
limit: "limit-of-record",
sort : "field-name" // default ascending, if want in descending order, add prefix "-" in field-name
},
command : "list"
}
// "array-of-filters" == [{field : "field name", value : "field-value", operator : "operator(equal, less_than, greater_than)"}]
storehippo.call(request, function(err, response){
if(err) throw err;
console.log(response);
})
Example Requests:
var request = {
entity: "ms.products",
command: "list",
query: {
filters: [{field: 'alias', value: 'test'}],
limit: 1
}
}
var request = {
entity : "your-entity-name",
data : "your-entity-data-object",
command : "add"
}
storehippo.call(request, function(err, response){
if(err) throw err;
console.log(response);
})
var request = {
entity : "your-entity-name"
recordId : "_id-of-record",
command : "get"
}
storehippo.call(request, function(err, response){
if(err) throw err;
console.log(response);
})
var request = {
entity : "your-entity-name"
recordId : "_id-of-record",
command : "delete"
}
storehippo.call(request, function(err, response){
if(err) throw err;
console.log(response);
})
var request = {
entity : "your-entity-name"
recordId : "_id-of-record"
data : "your-entity-data-object-to-be-updated",
command : "edit"
}
storehippo.call(request, function(err, response){
if(err) throw err;
console.log(response);
})
var request = {
entity : "your-entity-name"
recordId : "_id-of-record"
field : "field_name",
command : "list"
}
storehippo.call(request, function(err, response){
if(err) throw err;
console.log(response);
})
var request = {
entity : "your-entity-name"
recordId : "_id-of-record"
field : "field_name",
data : "your-field-data-object",
command : "add"
}
storehippo.call(request, function(err, response){
if(err) throw err;
console.log(response);
})
var request = {
entity : "your-entity-name"
recordId : "_id-of-record"
field : "field_name",
fieldId : "_id_of_field_data",
command : "get"
}
storehippo.call(request, function(err, response){
if(err) throw err;
console.log(response);
})
var request = {
entity : "your-entity-name"
recordId : "_id-of-record"
field : "field_name",
fieldId : "_id_of_field_data",
command : "delete"
}
storehippo.call(request, function(err, response){
if(err) throw err;
console.log(response);
})
var request = {
entity : "your-entity-name"
recordId : "_id-of-record"
field : "field_name",
fieldId : "_id_of_field_data"
data : "your-field-data-object-to-be-updated",
command : "edit"
}
storehippo.call(request, function(err, response){
if(err) throw err;
console.log(response);
})
FAQs
NodeJs SDK for StoreHippo Platform
The npm package storehippo-nodejs-sdk receives a total of 9 weekly downloads. As such, storehippo-nodejs-sdk popularity was classified as not popular.
We found that storehippo-nodejs-sdk 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.