
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
A command to upload files to a S3 bucket and create invalidation of AWS CloudFront distribution.
This command needs official AWS-CLI. And you must setup the profile (~/.aws) to connect for AWS.
Currently, this command invalidates all content paths after uploading.
npm install --global frontup
or
npm install --save-dev frontup
If the global install fails, once uninstalling might be a solution.
$ frontup -h
Usage: frontup [frontup_config_js] [OPTION]
AWS S3 contents uploader distributed by AWS cloudfront distribution.
PARAMETERS:
frontup_config_js (Optional)
A configuration filename.
Default: "./frontup.config.js"
OPTIONS:
-n, --dry-run Do not upload any files, but print the files and target keys
-v, --version display version
-h, --help display this help
A configuration file must be decalared as a CommonJs module.
It must export an object like below.
module.exports = {
"CloudFrontDistributionId": "<cloudfront-distribution-id>",
"S3BucketName": "<s3-bucket-name>",
"Files": {
"<destination-s3-key>": "<relative-path-name>",
"<destination-s3-key>": [
"<relative-path-name>",
.
.
.
],
"<destination-s3-key>": {
"path": "<relative-path-name>",
"exclude": [
"<regular-expression-to-exclude>",
.
.
.
],
},
.
.
.
},
};
Installation: npm install frontup
Respository: https://github.com/takamin/frontup
Here is an example of configuration file.
frontup.config.js:
module.exports = {
"CloudFrontDistributionId": "<cloudfront-distribution-id>",
"S3BucketName": "<s3-bucket-name>",
"Files": {
"<destination-s3-key>": "<relative-path-name>",
"<destination-s3-key>": [
"<relative-path-name>",
.
.
.
],
"<destination-s3-key>": {
"path": "<relative-path-name>",
"exclude": [
"<regular-expression-to-exclude>",
.
.
.
],
},
.
.
.
},
};
cloudfront-distribution-id
:
The id of CloudFront distribution.
s3-bucket-name
:
The S3 bucket name which the contents published by the ClodFront distribution are stored.
destination-s3-key
:
The destination S3 Key.
If this must be a folder key, it should be ended with a slash(/
).
relative-path-name
:
The name to upload file or directory.
This must be a relative pathname from the current working directory.
Do not start with ./
, ../
or /
for the pathname.
If the pathname is directory, all the files will be uploaded.
regular-expression-to-exclude
To exclude specific files, Write regular expressions matching to the excluding file name.
Copyright (c) 2019 Koji Takami
This software is released under the MIT License
FAQs
The S3 buckets' uploader and CloudFront distributions' invalidator
The npm package frontup receives a total of 79 weekly downloads. As such, frontup popularity was classified as not popular.
We found that frontup 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.