
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
n8n-nodes-n8ntools-s3-enhanced
Advanced tools
N8N Tools - S3 Enhanced: Complete S3 node with ALL 64 operations - presigned URLs, ACL, CORS, lifecycle, policies, tagging, multipart upload, versioning, encryption, website, metrics, analytics, inventory, accelerate, notifications, replication, and advan
Enhanced S3 operations node for N8N with advanced features including presigned URLs, multipart upload, and comprehensive bucket management.
npm install n8n-nodes-n8ntools-s3-enhanced
Create S3 Compatible Credentials:
Add the S3 Enhanced node to your workflow
Select your operation and configure parameters
Perfect for giving temporary access to files stored in your bucket:
// Configuration
Operation: "Generate Presigned URL"
Bucket: "my-documents"
Key: "reports/monthly-report.pdf"
Method: "GET"
Expires In: 3600 // 1 hour
// Output
{
"bucket": "my-documents",
"key": "reports/monthly-report.pdf",
"method": "GET",
"presignedUrl": "https://my-bucket.s3.amazonaws.com/reports/monthly-report.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&...",
"expiresIn": 3600,
"expiresAt": "2024-01-15T15:30:00.000Z"
}
Upload files with custom metadata and access controls:
// Configuration
Operation: "Upload Object"
Bucket: "media-storage"
Key: "images/photo.jpg"
File Data: "{{$binary.data.data}}" // Binary data
Content Type: "image/jpeg"
Advanced Options:
- ACL: "public-read"
- Storage Class: "STANDARD_IA"
- Metadata: {"author": "John Doe", "project": "Website"}
Find specific files using prefix and delimiter filtering:
// Configuration
Operation: "List Objects"
Bucket: "document-archive"
Prefix: "2024/invoices/"
Delimiter: "/"
Max Keys: 100
// Output
{
"bucket": "document-archive",
"contents": [
{
"Key": "2024/invoices/invoice-001.pdf",
"Size": 245760,
"LastModified": "2024-01-15T10:30:00.000Z"
}
],
"keyCount": 25
}
Handle large file uploads with resume capability:
// Step 1: Create Multipart Upload
Operation: "Create Multipart Upload"
Bucket: "video-storage"
Key: "videos/large-video.mp4"
Content Type: "video/mp4"
// Step 2: Upload Parts (repeat for each part)
Operation: "Upload Part"
Upload ID: "{{$json.uploadId}}"
Part Number: 1
Part Data: "{{$binary.chunk1.data}}"
// Step 3: Complete Upload
Operation: "Complete Multipart Upload"
Upload ID: "{{$json.uploadId}}"
Parts: '{"Parts":[{"ETag":"etag1","PartNumber":1},{"ETag":"etag2","PartNumber":2}]}'
Endpoint: (leave empty)
Region: us-east-1
Force Path Style: false
Endpoint: http://minio.example.com:9000
Region: us-east-1
Force Path Style: true
Endpoint: https://s3.wasabisys.com
Region: us-east-1
Force Path Style: false
Endpoint: https://fra1.digitaloceanspaces.com
Region: fra1
Force Path Style: false
Endpoint: https://endpoint.idrivee2.com
Region: us-east-1
Force Path Style: false
Most operations support advanced options:
The node supports N8N's built-in error handling:
403 Forbidden Errors
Endpoint Connection Errors
Presigned URL Not Working
MIT License - see LICENSE file for details
N8N Tools - Enhancing your automation workflows with powerful, reliable nodes.
FAQs
N8N Tools - S3 Enhanced: Complete S3 node with ALL 64 operations - presigned URLs, ACL, CORS, lifecycle, policies, tagging, multipart upload, versioning, encryption, website, metrics, analytics, inventory, accelerate, notifications, replication, and advan
The npm package n8n-nodes-n8ntools-s3-enhanced receives a total of 570 weekly downloads. As such, n8n-nodes-n8ntools-s3-enhanced popularity was classified as not popular.
We found that n8n-nodes-n8ntools-s3-enhanced demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.