DEV Community

Mhammed Talhaouy
Mhammed Talhaouy

Posted on

🚨 URGENT: Axios npm Package Compromised β€” Supply Chain Attack Delivers Cross-Platform RAT

(March 31, 2026 β€” 00:21–03:29 UTC)

What happened?

Malicious versions axios@1.14.1 and axios@0.30.4 were published via a hijacked maintainer account. They silently installed a cross-platform RAT via a hidden dependency (plain-crypto-js@4.2.1) during npm install.

Who’s at risk?

  • CI/CD pipelines that auto-install without pinning versions
  • Developers who ran npm install or npm update between 00:21–03:29 UTC
  • Projects using @qqbrowser/openclaw-qbot or @shadanai/openclaw

Check your lockfile:

grep -E "axios@(1\.14\.1|0\.30\.4)" package-lock.json yarn.lock
Enter fullscreen mode Exit fullscreen mode

If affected β€” assume breach:

  • Isolate systems
  • Rotate ALL secrets (API keys, tokens, SSH keys)
  • Rebuild from clean images β€” don’t clean in place
  • Check for IOCs:
    • macOS: /Library/Caches/com.apple.act.mond
    • Windows: %PROGRAMDATA%\wt.exe
    • Linux: /tmp/ld.py
    • Network: sfrclak[.]com:8000

Prevent future attacks:

βœ… Pin dependency versions

βœ… Use npm ci in CI

βœ… Commit lockfiles

βœ… Consider --ignore-scripts in CI

βœ… Use Snyk or similar to scan dependencies

πŸ”— Safe versions: Any axios version except 1.14.1 or 0.30.4

Top comments (0)