
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@buttonize/cdk
Advanced tools
Buttonize is a low-code paltform which enables cloud developers to create UI widgets like buttons, inputs, forms etc. connected to the cloud services like AWS Lambda, AWS Step Functions, AmazonDynamoDB and more.
This package contains AWS CDK constructs through which you can manage Buttonize widgets via Infrastructure as Code.
$ npm i -D @buttonize/cdk
Coming soon...
You can find more examples in the examples
folder.
import * as path from 'path'
import * as btnz from '@buttonize/cdk'
import * as cdk from 'aws-cdk-lib'
import * as lambda from 'aws-cdk-lib/aws-lambda'
import { NodejsFunction } from 'aws-cdk-lib/aws-lambda-nodejs'
import { Construct } from 'constructs'
export class SimpleFormStack extends cdk.Stack {
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props)
btnz.GlobalConfig.init(this, {
apiKey: process.env.BUTTONIZE_API_KEY, // Ideally use SSM or Secrets Manager
executionRoleExternalId: 'secret-external-id' // Ideally use SSM or Secrets Manager
})
const simpleFormActionLambda = new NodejsFunction(
this,
'SimpleFormActionLambda',
{
handler: 'handler',
entry: path.join(__dirname, `/src/index.ts`),
runtime: lambda.Runtime.NODEJS_18_X
}
)
const form = new btnz.Form({
name: '[Example: simple-form] Invoke the lambda function',
label: 'Open form',
tags: ['simple', 'button', 'example']
})
form
.addTextField('email', {
label: 'Email of the user',
placeholder: 'user@example.com',
regex: '^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$'
})
.addToggleField('isAdmin', {
label: 'Is admin'
})
simpleFormActionLambda.addEventSource(form)
}
}
Read more here.
Learn more at docs.buttnoize.io
FAQs
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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.