
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Command line utility frontend to node-s3-client. Inspired by s3cmd and attempts to be a drop-in replacement.
put
, get
, del
, ls
, sync
, cp
, mv
sudo npm install -g s3-cli
s3-cli is compatible with s3cmd's config file, so if you already have that
configured, you're all set. Otherwise you can put this in ~/.s3cfg
:
[default]
access_key = foo
secret_key = bar
You can also point it to another config file with e.g. $ s3-cli --config /path/to/s3cmd.conf
.
Uploads a file to S3.
Example:
s3-cli put /path/to/file s3://bucket/key/on/s3
Options:
--acl-public
or -P
- Store objects with ACL allowing read for anyone.--default-mime-type
- Default MIME-type for stored objects. Application
default is binary/octet-stream
.--no-guess-mime-type
- Don't guess MIME-type and use the default type
instead.--add-header=NAME:VALUE
- Add a given HTTP header to the upload request. Can be
used multiple times. For instance set 'Expires' or 'Cache-Control' headers
(or both) using this options if you like.Downloads a file from S3.
Example:
s3-cli get s3://bucket/key/on/s3 /path/to/file
Deletes an object or a directory on S3.
Example:
s3-cli del [--recursive] s3://bucket/key/on/s3/
Lists S3 objects.
Example:
s3-cli ls [--recursive] s3://mybucketname/this/is/the/key/
Example:
s3-cli sync [--delete-removed] /path/to/folder/ s3://bucket/key/on/s3/
Supports the same options as put
.
Example:
s3-cli sync [--delete-removed] s3://bucket/key/on/s3/ /path/to/folder/
Copy an object which is already on S3.
Example:
s3-cli cp s3://sourcebucket/source/key s3://destbucket/dest/key
Move an object which is already on S3.
Example:
s3-cli mv s3://sourcebucket/source/key s3://destbucket/dest/key
FAQs
command line utility to go along with s3 module
We found that s3-cli demonstrated a not healthy version release cadence and project activity because the last version was released 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.