Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@moneylion/s3-deploy
Advanced tools
A command line tool to deploy static assets to an S3 bucket.
npx @moneylion/s3-deploy
deploy
This will create a new S3 bucket and point route53 at it. The last argument must be the directoy to be uploaded.
requires:
e.g.
npx @moneylion/s3-deploy deploy --host example.com --bucket test --zone Z2XDC2IJ26IK32 ./dist
undeploy
This will delete an S3 bucket and the route53 record set.
requires:
e.g.
npx @moneylion/s3-deploy undeploy --host example.com --bucket test --zone Z2XDC2IJ26IK32
promote
requires an already existing bucket
requires an already existing cloudfront distribution
This will not create a new bucket, it will instead empty it and upload the new assets to that bucket. It will then invalidate the cloudfront cache.
requires:
e.g.
npx @moneylion/s3-deploy promote --host example.com --bucket test --distribution EINBTGEF4J77C ./dist
Bucket names are constructed by concatenating the host
and bucket
strings. The last argument must be the directoy to be uploaded.
bucket = test
host = example.com
Will give you test.example.com
as the bucket name.
Both deploy
and promote
can take in a channel
argument, this will be the slack channel you want it to post to.
This is a private script and it reads from .npmrc
for the auth token.
A quick & dirty workaround for CI or Docker is to create a local .npmrc
before running the script.
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > $(pwd)/.npmrc
Then run it with the --userconfig
flag.
npx --userconfig $(pwd)/.npmrc @moneylion/s3-deploy
It might be necessary to inject the environment variable directly into the script.
AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID AWS_DEFAULT_REGION=$AWS_DEFAULT_REGION npx @moneylion/s3-deploy
FAQs
A command line tool to deploy static sites to an S3 bucket.
The npm package @moneylion/s3-deploy receives a total of 0 weekly downloads. As such, @moneylion/s3-deploy popularity was classified as not popular.
We found that @moneylion/s3-deploy 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.