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.
@aws-sdk/middleware-sdk-sqs
Advanced tools
[![NPM version](https://img.shields.io/npm/v/@aws-sdk/middleware-sdk-sqs/latest.svg)](https://www.npmjs.com/package/@aws-sdk/middleware-sdk-sqs) [![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/middleware-sdk-sqs.svg)](https://www.npmjs.com/packag
@aws-sdk/middleware-sdk-sqs is a middleware package for the AWS SDK for JavaScript (v3) that provides specialized middleware for Amazon Simple Queue Service (SQS). It helps in handling SQS-specific tasks such as message deduplication, message attribute handling, and more.
Message Deduplication
This feature allows you to send messages with deduplication enabled, which is useful for FIFO (First-In-First-Out) queues. The middleware automatically handles deduplication logic.
const { SQSClient, SendMessageCommand } = require('@aws-sdk/client-sqs');
const { applyMiddleware } = require('@aws-sdk/middleware-sdk-sqs');
const client = new SQSClient({ region: 'us-east-1' });
applyMiddleware(client);
const params = {
QueueUrl: 'https://sqs.us-east-1.amazonaws.com/123456789012/MyQueue',
MessageBody: 'Hello, world!',
MessageDeduplicationId: 'unique-id-123',
MessageGroupId: 'group-id-1'
};
const command = new SendMessageCommand(params);
client.send(command).then((data) => {
console.log('Message sent:', data);
}).catch((error) => {
console.error('Error sending message:', error);
});
Message Attribute Handling
This feature allows you to send messages with custom attributes. The middleware helps in managing and sending these attributes along with the message.
const { SQSClient, SendMessageCommand } = require('@aws-sdk/client-sqs');
const { applyMiddleware } = require('@aws-sdk/middleware-sdk-sqs');
const client = new SQSClient({ region: 'us-east-1' });
applyMiddleware(client);
const params = {
QueueUrl: 'https://sqs.us-east-1.amazonaws.com/123456789012/MyQueue',
MessageBody: 'Hello, world!',
MessageAttributes: {
'AttributeOne': {
DataType: 'String',
StringValue: 'ValueOne'
},
'AttributeTwo': {
DataType: 'Number',
StringValue: '123'
}
}
};
const command = new SendMessageCommand(params);
client.send(command).then((data) => {
console.log('Message sent with attributes:', data);
}).catch((error) => {
console.error('Error sending message:', error);
});
@aws-sdk/client-sqs is the main client package for interacting with Amazon SQS. It provides a comprehensive set of methods for sending, receiving, and managing SQS messages and queues. While @aws-sdk/middleware-sdk-sqs focuses on middleware functionalities, @aws-sdk/client-sqs provides the core functionalities for SQS operations.
sqs-consumer is a lightweight library for building SQS-based applications. It simplifies the process of consuming messages from SQS queues and provides features like automatic polling and error handling. Unlike @aws-sdk/middleware-sdk-sqs, which is middleware for the AWS SDK, sqs-consumer is a standalone library focused on message consumption.
sqs-producer is a library for sending messages to SQS queues. It provides a simple API for creating and sending messages. While @aws-sdk/middleware-sdk-sqs offers middleware functionalities for the AWS SDK, sqs-producer is a standalone library focused on message production.
FAQs
[![NPM version](https://img.shields.io/npm/v/@aws-sdk/middleware-sdk-sqs/latest.svg)](https://www.npmjs.com/package/@aws-sdk/middleware-sdk-sqs) [![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/middleware-sdk-sqs.svg)](https://www.npmjs.com/packag
The npm package @aws-sdk/middleware-sdk-sqs receives a total of 1,485,111 weekly downloads. As such, @aws-sdk/middleware-sdk-sqs popularity was classified as popular.
We found that @aws-sdk/middleware-sdk-sqs demonstrated a healthy version release cadence and project activity because the last version was released less than 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.