Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
evidence-connector-s3
Advanced tools
Install this plugin in an Evidence app with
npm install evidence-connector-s3
Register the plugin in your project in your evidence.plugins.yaml file with
datasources:
evidence-connector-s3: {}
Launch the development server with npm run dev
and navigate to the settings menu (localhost:3000/settings) to add a data source using this plugin.
Option | Description |
---|---|
accessKeyId | Access Key ID for the AWS S3 bucket. |
secretAccessKey | Secret Access Key for the AWS S3 bucket. |
region | Region for the AWS S3 bucket. |
Source queries are expected to be in the form of a SQL file with the extension .sql. Use DuckDB syntax for reading files from S3.
from 's3://<bucket>/<path>.<format>'
Where format is one of Parquet, CSV, or ORC.
You will need to create or use an IAM user with an Access Key.
Your user should have an access policy that allows DuckDB to read the files in the bucket.
Example policy for a user, accessing a bucket called my-s3-bucket
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetObject",
"s3:PutObject",
"s3:DeleteObject",
"s3:AbortMultipartUpload"
],
"Resource": [
"arn:aws:s3:::my-s3-bucket",
"arn:aws:s3:::my-s3-bucket/*"
]
}
]
}
FAQs
Evidence S3 Source Plugin
The npm package evidence-connector-s3 receives a total of 0 weekly downloads. As such, evidence-connector-s3 popularity was classified as not popular.
We found that evidence-connector-s3 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.