
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
Small package that I use to create fixtures for my tests. Only works with classes for now.
Small package that I use to create fixtures for my tests. Only works with classes for now.
Things I want to add whenever I am in the mood:
import { ClassBuilderMixin } from "builder-ts"
export class Post {
public readonly id: string
public readonly name: string
public readonly createdAt: Date
// Also works with protected constructors
public constructor(id: string, name: string, createdAt: Date) {
this.id = id
this.name = name
this.createdAt = createdAt
}
public upvote() {}
}
class PostBuilder extends ClassBuilderMixin(Post) {
public withTodaysDate() {
this.setCreatedAt(Date.Today)
}
}
const post = new PostBuilder()
.withTodaysDate()
.setId("id")
.setName("myName")
.build() // { id: "id", name: "myName", createdAt: Date, upvote: Function }
FAQs
Small package that I use to create fixtures for my tests. Only works with classes for now.
We found that builder-ts 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.