Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@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.
The npm package @xapp/dynamo-service receives a total of 137 weekly downloads. As such, @xapp/dynamo-service popularity was classified as not popular.
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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.