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.
@xapp/dynamo-service
Advanced tools
A dynamo help class which will help maintain data integrity.
A service that allows the user to automatically generate dynamo rules for tables. It will do data validation on all items for puts and updates. It also allows extensions and has other utility functions.
This class is basically a wrapper of a aws.DynamoDB.DocumentClient
. It provides useful abstractions that make it easier to work with the Dynamo items.
A wrapper for DynamoService
which provides table validation. You must define a table with a set of rules, and the rules will be validated at each method.
Defining required keys:
const table = {
"myPrimaryKey": {
"type": "S" // "S", "N", "L", "M" i.e., the various types of DynamoDB data types.
primary: true
},
"mySortKey": {
"type": "N",
sort: true
},
"myRequiredKey": {
"type": "S",
required: true
}
};
const tableService = new TableService({ "myTableName", new DynamoService(new DynamoDB.DocumentClient(), table);
// This will throw an error because the primary key is missing.
tableService.put( { "mySortKey": new Date().getTime(), "myRequiredKey": "Hello" })
.then(() => { console.log("Won't see me."); })
.catch(() => { console.error("Made a mistake."); });
// This will throw an error because the sort key is missing.
tableService.put( { "myPrimaryKey": "1234ABCD", "myRequiredKey": new Date().toISOString() })
.then(() => { console.log("Won't see me."); })
.catch(() => { console.error("No sort key."); });
// This will succeed because everything exists.
tableService.put( { "myPrimaryKey": "123ABCD", "mySortKey": new Date().getTime(), "myRequiredKey": "Hello" })
.then((putObj) => { console.log(putObj); })
.catch(() => { console.error("An error was throw attempting to input the data, but validation will pass.") })
A builder class that allows easier to read Dynamo scan and query builders. The output will be a Dynamo object which contains the ExpressionAttributeNames
and ExpressionAttributeValues
with either a FilterExpression
or ConditionExpression
depending on the type.
// Produces a filter expression in which "param1 = 'value1'" and "param2 != 'value3'" and "param3 exists".
const filter = scan("param1").equals("Value1").and("param2").doesNotEquals("value3").and("param3").exists.query();
dynamoClient.scan({ TableName: "myTable", ...filter }).promise().then((results) => {
console.log(results);
});
// Produces a condition expression in which "param1 does not exist".
const condition = withCondition("param1").doesNotExist.query();
dynamoClient.put({ TableName: "myTable", ...condition }).promise().then((results) => {
console.log(results);
});
FAQs
A dynamo help class which will help maintain data integrity.
We found that @xapp/dynamo-service demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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.