
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@envoy/express-envoy-auth
Advanced tools
Middleware to authenticate an Express application with Envoy
Middleware to authenticate a Express application with Envoy.
$ npm install @envoy/express-envoy-auth
import envoyAuth from "@envoy/express-envoy-auth";
Returns an authentication middleware taking up (by default) the routes /auth
and /auth/callback
.
app.use(
envoyAuth({
// optional. if specified, constructs OAuth and GraphQL URLs
// against this base host. Defaults to envoy.com
host: "envoy.dev",
// optional. if specified, mounts the routes off of the given path
// eg. /envoy/auth, /envoy/auth/callback
// defaults to ''
prefix: "/envoy",
// required. your envoy client ID
clientID: ENVOY_CLIENT_ID,
// required. your envoy client secret
secret: ENVOY_SECRET,
// required. scopes to request on the user
scopes: ["public"],
// optional. if specified, redirects to this URL after OAuth 2.0 authorize.
// Defaults to to <host>/auth/callback
callback: "https://www.example.com/envoy/auth/callback",
// optional. if specified, `afterAuth` is called when auth is
// completed. middleware will redirect to "/" by
// default
afterAuth(req, res) {
const { accessToken } = req.session;
console.log("We did it!", accessToken);
res.redirect("/");
},
})
);
/auth
This route starts the oauth process.
/auth/callback
You should never have to manually go here. This route is purely for Envoy to send data back during the oauth process.
import express from "express";
import session from "express-session";
import envoyAuth from "@envoy/express-envoy-auth";
const { ENVOY_CLIENT_ID, ENVOY_SECRET } = process.env;
const app = express();
app.use(
session({
secret: ENVOY_SECRET,
saveUninitialized: true,
resave: true,
})
);
// everything after this point will require authentication
app.use(
envoyAuth({
clientID: ENVOY_CLIENT_ID,
secret: ENVOY_SECRET,
scopes: ["public"],
callback: "https://plugin-home.ngrok.io/auth/callback",
afterAuth(req, res) {
const {
session: { accessToken },
user,
} = req;
console.log("Logged in", { accessToken, user });
res.redirect("/");
},
})
);
// application code
app.use((req, res) => {
res.send("🎉");
});
FAQs
Middleware to authenticate an Express application with Envoy
The npm package @envoy/express-envoy-auth receives a total of 0 weekly downloads. As such, @envoy/express-envoy-auth popularity was classified as not popular.
We found that @envoy/express-envoy-auth demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.