this post was submitted on 06 Dec 2025
64 points (95.7% liked)

Programming

24097 readers
208 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
 

I got an email from Vercel urging to upgrade Next.js based project 3 days ago. POC was published 2 days ago. Today I've checked my logs and I could already see attack attempts.

you are viewing a single comment's thread
view the rest of the comments
[–] TehPers@beehaw.org 1 points 2 weeks ago

Any website using CSR only can't have a RCE because the code runs on the client. Any code capable of RSC that runs server and client side may be vulnerable.

From what I've seen, the exploit is a special request from a client that functionally lets you exec anything you want (via Function's constructor). If your server is unpatched and recognizes the request, it may be (likely is) vulnerable.

I'm sure we'll get more details over time and tools to manually check if a site is compromised.