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.
@cloudlessopenlabs/pulumix
Advanced tools
npm i @cloudlessopenlabs/pulumix
This NodeJS package exposes a series of wrappers around the Pulumi APIs to help facilitate the provisionning of common Cloud resources. Examples:
const { aws: { SecurityGroup } } = require('@cloudlessopenlabs/pulumix')
const sg = new SecurityGroup({
name: `my-special-sg`,
description: `Controls something special.`,
vpcId: 'vpc-1234',
egress: [{
protocol: '-1',
fromPort:0, toPort:65535, cidrBlocks: ['0.0.0.0/0'],
ipv6CidrBlocks: ['::/0'],
description:'Allow all traffic'
}],
tags: {
Project: 'demo'
}
})
console.log(sg)
// {
// id: Output<String>,
// arn: : Output<String>,
// name: : Output<String>,
// description: : Output<String>,
// rules: : Output<[SecurityGroupRule]>
// }
The full documentation for this package is located in the project's wiki: https://github.com/cloudlesslabs/pulumix/wiki/
This wiki contains the following sections:
FAQs
NodeJS Pulumi helpers.
The npm package @cloudlessopenlabs/pulumix receives a total of 2 weekly downloads. As such, @cloudlessopenlabs/pulumix popularity was classified as not popular.
We found that @cloudlessopenlabs/pulumix 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.