
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@evokegroup/aws-dynamodb
Advanced tools
AWS SDK v3 DynamoDB utilities.
const { createClient, putItem } = require('@evokegroup/aws-dynamodb');
putItem({
client: createClient({ region: 'REGION' }),
tableName: 'TABLE_NAME',
data: {
ID: 'ea8623e7-07f9-4b0e-bbd0-e11f00ccace6',
Email: 'john.doe@gmail.com',
FirstName: 'John',
LastName: 'Doe',
Phone: {
Mobile: '555-123-4567',
Home: '555-987-6543'
},
HowContact: ['email', 'mobile', 'home'],
DateCreated: '2022-01-01T00:00:00.000Z'
}
})
.then((response) => {
// do something
})
.catch((err) => {
// do something
})
const { createClient, getItem } = require('@evokegroup/aws-dynamodb');
getItem({
client: createClient({ region: 'REGION' }),
tableName: 'TABLE_NAME',
key: { PK: 'ea8623e7-07f9-4b0e-bbd0-e11f00ccace6' }
})
.then((response) => {
// do something
})
.catch((err) => {
// do something
})
const { createClient, updateItem } = require('@evokegroup/aws-dynamodb');
updateItem({
client: createClient({ region: 'REGION' }),
tableName: 'TABLE_NAME',
partitionKey: { ID: 'ea8623e7-07f9-4b0e-bbd0-e11f00ccace6' },
SET: {
FirstName: 'Jonathan',
Address: {
State: 'NY',
ZIP: '12345'
}
},
REMOVE: ['Phone.Home'],
DELETE: {
HowContact: ['home']
},
createMaps: true // This will create any undefined map (Address in this case) BEFORE updating the table. Default: true
})
.then((response) => {
// do something
})
.catch((err) => {
// do something
});
const { createClient, query, transformObjectFromDDB } = require('@evokegroup/aws-dynamodb');
query({
client: createClient({ region: 'REGION' }),
tableName: 'TABLE_NAME',
indexName: 'GSI_EMAIL',
keyCondition: {
Email: 'john.doe@gmail.com'
}
})
.then((response) => {
if (response.Items.length == 1) {
resolve(transformObjectFromDDB(response.Items[0])); // Transform the response from the DynamoDB format to a regular object
} else {
resolve(null);
}
})
.catch((err) => {
// do something
});
const { createClient, deleteItem } = require('@evokegroup/aws-dynamodb');
deleteItem({
client: createClient({ region: 'REGION' }),
tableName: 'TABLE_NAME',
partitionKey: { PK: 'ea8623e7-07f9-4b0e-bbd0-e11f00ccace6'}
})
.then((response) => {
// do something
})
.catch((ex) => {
console.error(ex);
});
const { createClient } = require('@evokegroup/aws-dynamodb');
const { batchWrite, BatchWriteInput } = require('@evokegroup/aws-dynamodb/batch');
batchWrite({
client: createClient({ region: 'REGION' }),
batchWriteInput: [
new BatchWriteInput({
tableName: 'TABLE_NAME',
putItems: [{
ID: '*',
Email: '*'
// other data
}],
deleteItemKeys: [{ ID: '-' }]
})
]
})
.then((response) => {
// do something
})
.catch((ex) => {
console.error(ex);
});
// OR
batchWrite({
client: createClient({ region: 'REGION' }),
batchWriteInput: [
new BatchWriteInput({
tableName: 'TABLE_NAME',
putItems: [{
ID: '*',
Email: '*'
// other data
}],
deleteItemKeys: [{ ID: '-' }]
})
],
awaiter: true
})
// wait(callback, pollingTimeout = 10000)
// pass a polling timeout in milliseconds as the 2nd parameter to poll faster or slower
// starts execution and returns a Promise
.wait((awaiter) => {
console.log(`Batches remaining: ${awaiter.remainint()}`);
})
.then((response) => {
// do something
})
.catch((ex) => {
console.error(ex);
});
const { createClient } = require('@evokegroup/aws-dynamodb');
const { StringPartitionKeyField, StringSortKeyField } = require('@evokegroup/aws-dynamodb/fields');
const { createTable } = require('@evokegroup/aws-dynamodb/table');
require('@evokegroup/aws-dynamodb/logger').configure({ level: 'INFO' });
createTable({
client: createClient({ region: 'REGION' }),
tableName: 'TABLE_NAME',
partitionKey: new StringPartitionKeyField({ name: 'PK' }),
sortKey: new StringSortKeyField({ name: 'SK' })
})
.then((response) => {
// do something
})
.catch((ex) => {
console.error(ex);
});
Send messages logged by the library to a Console
.
const { configure, LogLevel } = require('@evokegroup/aws-dynamodb/logger');
configure({
level: LogLevel.DEBUG, // default: OFF
timestamp: true, // default: false
messageType: true, // default: false
Console: null // create your own Console object to log to somewhere other that the global console
});
require('@evokegroup/aws-dynamodb/logger').configure({ level: 'ERROR' });
FAQs
AWS DynamoDB utilities
We found that @evokegroup/aws-dynamodb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.