
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@initminal/run
Advanced tools
Safely execute untrusted code with ESM syntax support, dynamic injection of ESM modules from URL or plain JS code, and granular access control based on whitelisting for each JS object.
Safely execute untrusted code with ESM syntax support, dynamic injection of ESM modules from URL or plain JS code, and granular access control based on whitelisting for each JS object.
import and export module syntaxdata: or http(s) URLs, or just plain JS code string.import() syntax for code evaluationTo install:
npm i --save @initminal/run
Create an evaluator and execute JS code:
const InitminalRun = createInitminalRun()
const result = await InitminalRun.run("export const initminal = 'hello world'")
console.log(result)
// hello world
Try it out in the playground
Check out the documentation.
import() in workers, which this library requires.fetch or indexedDB are NOT whitelisted by default. Untrusted code can access to host's data if they are manually whitelisted.iframe sandbox.fetch), to enable secure I/O operations.Contributions are welcome!
import() as an alternative to eval() to execute JS code takes notes from the blog post Evaluating JavaScript code via import() by Dr. Axel RauschmayerFAQs
Safely execute untrusted code with ESM syntax support, dynamic injection of ESM modules from URL or plain JS code, and granular access control based on whitelisting for each JS object.
We found that @initminal/run demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.