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.
@trautonen/cdk-dns-validated-certificate
Advanced tools
CDK certificate construct that supports cross-region and cross-account DNS validation
CDK does not have a built in construct to manage cross-region or cross-account DNS validated certificates. There's an attempt to work around the issue with a cross region references option for stacks, but it has a lot of issues and still does not solve the cross-account use case.
This construct solves these problems by managing the certificate as a custom resource and with direct API calls to ACM and Route53. In the future it will be possible to support not only Route53, but other DNS services too.
// hosted zone managed by the CDK application
const hostedZone: route53.IHostedZone = ...
// no separate validation role is needed
const certificate = new DnsValidatedCertificate(this, 'CrossRegionCertificate', {
hostedZone: hostedZone,
domainName: 'example.com', // must be compatible with the hosted zone
certificateRegion: 'us-east-1' // used by for example CloudFront
})
// external hosted zone
const hostedZone: route53.IHostedZone = route53.HostedZone.fromHostedZoneAttributes(this, 'HostedZone', {
hostedZoneId: 'Z532DGDEDFS123456789',
zoneName: 'example.com',
})
// validation role on the same account as the hosted zone
const roleArn = 'arn:aws:iam::123456789:role/ChangeDnsRecordsRole'
const externalId = 'domain-assume'
const validationRole: iam.IRole = iam.Role.fromRoleArn(this, 'ValidationRole', roleArn)
const certificate = new DnsValidatedCertificate(this, 'CrossAccountCertificate', {
hostedZone: hostedZone,
domainName: 'example.com',
validationRole: validationRole,
validationExternalId: externalId,
})
// example.com is validated on same account against managed hosted zone
// and secondary.com is validated against external hosted zone on other account
const hostedZoneForMain: route53.IHostedZone = ...
const hostedZoneForAlternative: route53.IHostedZone =
route53.HostedZone.fromHostedZoneAttributes(this, 'SecondaryHostedZone', {
hostedZoneId: 'Z532DGDEDFS123456789',
zoneName: 'secondary.com'
})
const certificate = new DnsValidatedCertificate(this, 'CrossAccountCertificate', {
domainName: 'example.com',
alternativeDomainNames: ['secondary.com'],
validationHostedZones: [{
hostedZone: hostedZoneForMain
},{
hostedZone: hostedZoneForAlternative,
validationRole: iam.Role.fromRoleArn(
this, 'SecondaryValidationRole', 'arn:aws:iam::123456789:role/ChangeDnsRecordsRole'
),
validationExternalId: 'domain-assume'
}]
})
FAQs
CDK certificate construct that supports cross-region and cross-account DNS validation
The npm package @trautonen/cdk-dns-validated-certificate receives a total of 479 weekly downloads. As such, @trautonen/cdk-dns-validated-certificate popularity was classified as not popular.
We found that @trautonen/cdk-dns-validated-certificate demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
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.