
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
aws-cloudformation-simple-cli
Advanced tools
A simple command line tool for managing CloudFormation stacks
A simple command line tool for creating, updating and deleting AWS projects created via CloudFormation.
This project was created as an alternative to all 'heavy' frameworks being created for launching serverless applications. The intention is to provide a lightweight alternative that is very easy to get started with but on the other hand doesn't provide much in terms of functionality.
npm install -g aws-cloudformation-simple-cli
For a complete list of arguments, run
aws-cfn help
aws-cfn update --config-file path/to/local-config-file.json --placeholder {PH1}=RP1 --placeholder $PH2$=RP2 --wait false
aws-cfn update --config-file path/to/local-config-file.json --dry-run true --environment test
aws-cfn delete --config-file path/to/local-config-file.json --wait false
--dry-run: Set to true if you want to preview the CloudFormation request. Default is false.--wait: Set to true if you want the client to wait for the operation to complete before returning. Default is true.--environment: Switch between environments in the local config file. See Configuration for more details. Default is none.--placeholder: Placeholders for replacement of values in the config.json file. You can supply multiple placeholder arguments. Each placeholder is globally replaced. Syntax: PlaceholderString=ReplacementValue.The local configuration file describes all CloudFormation request parameters.
It expects either at least one environment to be defined or a default configuration set.
If an environment is provided and there is a default config, any settings not defined under the environment will be merged with the default set. The environment settings takes precedence.
See the CloudFormation docs for available configuration properties.
{
"default": {
"StackName": "DefaultStackName",
"Parameters": {
"MyTemplateParamKey": "MyTemplateParamValue",
"MyOtherTemplateParamKey": "MyOtherTemplateParamValue"
},
"TemplateBody": "path/to/my-local-cloudformation.template",
"Capabilities": [
"CAPABILITY_IAM"
]
},
"test": {
"StackName": "TestStackName",
"Parameters": {
"MyTemplateParamKey": "OverrideMyTemplateParamValue"
},
"TemplateURL": "http://s3-bucket-url/cloudformation.template"
}
}
Some CloudFormation request params are expected to be "one of". These params, and which takes precedence if both are provided are listed below.
StackPolicyURL & StackPolicyBody. StackPolicyURL takes precedence.StackPolicyDuringUpdateURL & StackPolicyDuringUpdateBody. StackPolicyDuringUpdateURL takes precedence.TemplateURL & TemplateBody. TemplateURL takes precedence.--force-clean-up argumentVersion 1.0.0 is a complete re-write of the tools inner workings.
create & createOrUpdate commands have been deprecated and will be removed in 2.0.0. Use update for all operations except delete.createOrUpdate command which will either create or update the stack depending on wether it exists or not.Notes for the maintainer only.
FAQs
A simple command line tool for managing CloudFormation stacks
We found that aws-cloudformation-simple-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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.