this post was submitted on 12 May 2026
80 points (100.0% liked)

Programming

26909 readers
356 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
 

massive campaign for 170+ packages and 400+ malicious versions published. what we saw that not a single maintainer account compromised. tanStack and Mistral AI these are the names that stand out.

you are viewing a single comment's thread
view the rest of the comments
[–] kibiz0r@midwest.social 25 points 1 day ago
  • Use lockfiles
  • Use minimum release age gating
  • Disable postinstall hooks
  • Limit credentials of CI jobs, especially ones that eagerly update deps
  • Disable dep-updating features completely (at the network level if you can) when deploying to higher envs
  • Be skeptical of standalone CLIs — they often try to self-update, or bootstrap deps from npm, and don’t always use lockfiles to manage it