The latest npm scaffold can execute unpinned third-party code locally
Source references: 2`npx create-video@latest` downloads and executes whichever release is current rather than a reviewed, pinned version. `npm install hyperframes` may also run dependency installation scripts.
If a package, dependency, or publisher account is compromised, installation could read project files or credentials, modify the workspace, or run other local commands. The evidence shows the commands are recommended; it does not show that an attack occurred.
Both commands lack reproducible version pins, and `npx ...@latest` explicitly runs the newest scaffolder. The source does not show malicious package code or any particular lifecycle script; the risk is trusting third-party code resolved from npm at execution time. Users can disallow automatic execution and require reviewed, pinned versions.
```bashnpm install hyperframes```Show 1 other places
```bashnpx create-video@latest```