
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.
cfn-stack-event-stream
Advanced tools
A readable stream of CloudFormation stack events.
var AWS = require('aws-sdk');
var EventStream = require('cfn-stack-event-stream');
var cfn = new AWS.CloudFormation({region: 'us-east-1'});
cfn.createStack({
StackName: 'my-stack',
TemplateBody: template
}, function(err) {
if (err) throw err;
EventStream(cfn, 'my-stack')
.on('data', function (e) {
console.log(e.ResourceStatus, e.ResourceType, e.ResourceStatusReason);
})
.on('end', function() {
cfn.describeStacks({StackName: 'my-stack'}, function(err, data) {
if (err) throw err;
console.log('Result: ' + data.Stacks[0].StackStatus);
});
});
});
EventStream(cfn, stackName, options)Returns an object-mode readable stream
which emits StackEvent objects as returned by describeStackEvents
Required parameters:
cfn: An AWS::CloudFormation instance.stackName: The name or ARN of the stack. Note that if you are reading events for a stack that is deleted or in the
process of being deleted, you need to pass the full ARN rather than the stackName.Options:
lastEventId: The EventId of a StackEvent. StackEvents emitted by the resulting stream
are guaranteed not to include this event or any preceding events.FAQs
A readable stream of CloudFormation stack events
The npm package cfn-stack-event-stream receives a total of 547 weekly downloads. As such, cfn-stack-event-stream popularity was classified as not popular.
We found that cfn-stack-event-stream demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 38 open source maintainers 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.