
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
auth0-extensions-cli
Advanced tools
Command-line tool allowing you to build a Node.js backend as an Auth0 Extension
Command-line tool allowing you to build a Node.js backend as an Auth0 Extension
yarn add --dev auth0-extensions-cli
In order to compile your Node.js backend into an Auth0 Extension you can add a script similar to this one to your package.json
file
{
...
"name": "my-extension",,
"scripts": {
"extension:build": "a0-ext build:server ./webtask.js ./dist",
...
}
}
Then simply run npm run extension:build
to compile the extension. This will then take the webtask.js
file as the entrypoint and place the output in the ./dist
folder.
You can add an auth0-extension
node to your package.json
file to specify specific versions of Node.js modules which are available on the Webtask platform (as a result these modules will not be bundled in the extension itself). And it's also possible to define settings which will be available in the extension under process.env
.
{
...
"name": "my-extension",,
"scripts": {
"extension:build": "a0-ext build:server ./webtask.js ./dist",
...
},
"auth0-extension": {
"externals": [
"async@2.1.2",
"auth0@2.4.0",
"bluebird@3.4.6",
"body-parser@1.12.4",
"ejs@2.3.1",
"express@4.14.0",
"iconv-lite@0.4.10",
"jsonwebtoken@7.1.9",
"jwks-rsa@1.1.1",
"lodash@3.10.1",
"lru-memoizer@1.10.0",
"node-uuid@1.4.3",
"morgan@1.5.3",
"request@2.67.0",
"superagent@1.2.0",
"tough-cookie@2.2.2",
"webtask-tools",
"winston@1.0.0"
],
"settings": {
"WARN_DB_SIZE": 409600,
"MAX_MULTISELECT_USERS": 5,
"MULTISELECT_DEBOUNCE_MS": 250,
"PER_PAGE": 10
}
}
}
If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.
For auth0 related questions/support please use the Support Center.
This project is licensed under the MIT license. See the LICENSE file for more info.
FAQs
Command-line tool allowing you to build a Node.js backend as an Auth0 Extension
The npm package auth0-extensions-cli receives a total of 17 weekly downloads. As such, auth0-extensions-cli popularity was classified as not popular.
We found that auth0-extensions-cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 36 open source maintainers 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.