Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
auth0-ext-compilers
Advanced tools
This repository contains webtask compilers that enable custom programming models for Auth0 platform extensibility points.
This module is installed on the webtask platform via the webtask-mongo docker image.
To create a webtask that implements a specific extensibility point, you can use the wt-cli
tool or a corresponding webtask API call. For example, to create a credentials-exchange extension you could call:
cat > custom_claims.js <<EOF
module.exports = function (ctx, cb) {
ctx.access_token.foo = 'bar';
cb(null, ctx);
};
EOF
SECRET=$(openssl rand 32 -base64) && \
wt create custom_claims.js \
-p default-tjanczuk \
--meta wt-compiler=auth0-ext-compilers/credentials-exchange \
--meta auth0-extension=runtime \
--meta auth0-extension-name=credentials-exchange \
--meta auth0-extension-secret=$SECRET \
--secret auth0-extension-secret=$SECRET
FAQs
Webtask compilers for Auth0 platform extensibility points
The npm package auth0-ext-compilers receives a total of 0 weekly downloads. As such, auth0-ext-compilers popularity was classified as not popular.
We found that auth0-ext-compilers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 40 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.