Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.