
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
cloudformation-http-resource
Advanced tools
An aws-cdk construct for calling HTTP API during CloudFormation stack update.
The Http
resource provides 3 callbacks: onCreate
, onUpdate
and onDelete
.
The following example will issue a POST request when a Some API
resource creates:
import * as cdk from '@aws-cdk/core';
import { Http } from "cloudformation-http-resource";
export class ExamplesStack extends cdk.Stack {
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
const simpleOk = new Http(this, 'Some API', {
onCreate: {
method: 'POST',
url: 'https://example.org/',
headers: {
'content-type': 'application/json'
},
body: {
test: 123,
nested: [{
name: 'Piotr'
}]
}
}
});
}
}
You can access response data easily and e.g. put it into stack outputs like so:
new CfnOutput(this, 'Response body test field', {
description: "Response body test field",
value: simpleOk.getResponseField("body.test")
})
new CfnOutput(this, 'Response header', {
description: "Location of the resource",
value: simpleOk.getResponseField("headers.location")
})
new CfnOutput(this, 'Response status code', {
description: "Status code",
value: simpleOk.getResponseField("statusCode")
})
You can call APIs that require authentication tokens using SecretsManager:
import { Http, HttpCall } from "cloudformation-http-resource";
...
const secret: secretmanager.ISecret = getOrCreateSecret()
const apiCall: HttpCall = {
url: 'https://example.org/',
method: 'PUT',
headers: {
Authorization: `Bearer ${secret.secretValue}`
},
body: {
secret: secret.secretValue,
}
};
const includeSecret = new Http(this, 'SecretHttpCall', {
onCreate: apiCall,
onUpdate: apiCall
})
FAQs
Cloudformation resource to call any http API
We found that cloudformation-http-resource 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.