
Batch upgrade all your Next.js apps to patched versions - fight back against CVE-2025-55183/55184/67779
There are people building OSS tools to exploit the new Next.js vulnerabilities. This is a tool to fight back - makes it dumb easy to upgrade all your Next.js apps across all your GitHub accounts.
Uses the official Vercel fix tool under the hood.
Dec 11, 2025: Next.js disclosed multiple critical vulnerabilities affecting React Server Components with App Router:
https://nextjs.org/blog/cve-2025-55183-and-cve-2025-55184
curl -O https://raw.githubusercontent.com/williavs/nextjs-security-update/main/nextjs-security-update.sh
chmod +x nextjs-security-update.sh
./nextjs-security-update.sh
Or specify accounts directly:
./nextjs-security-update.sh myusername myorg
DRY_RUN=true ./nextjs-security-update.sh # See what would change
AUTO_PUSH=true ./nextjs-security-update.sh # Push automatically
gh (GitHub CLI) - authenticatednode / npxgitPush all changes:
cd ~/nextjs-security-updates
for d in */; do (cd "$d" && git push && echo "Pushed $d"); done
Then redeploy your apps.