
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
passport-salesforce-oauth2
Advanced tools
Passport strategy for authenticating with Saleforce using the OAuth 2.0 API.
This module lets you authenticate using Saleforce in your Node.js applications. By plugging into Passport, Saleforce authentication can be easily and unobtrusively integrated into any application or framework that supports Connect-style middleware, including Express.
$ npm install passport-salesforce-oauth2
The Salesforce authentication strategy authenticates users using a Salesforce
account and OAuth 2.0 tokens. The Consumer Key and Consumer secret obtained when creating an
application are supplied as options when creating the strategy. The strategy
also requires a verify
callback, which receives the access token and optional
refresh token, as well as profile
which contains the authenticated user's
Salesforce profile. The verify
callback must call cb
providing a user to
complete authentication.
passport.use(new Strategy({
clientID: CLIENT_ID,
clientSecret: CLIENT_SECRET,
callbackURL: "http://localhost:3000/auth/salesforce/callback"
},
function(accessToken, refreshToken, profile, done) {
done(null, profile);
}
));
Use passport.authenticate()
, specifying the 'salesforce'
strategy, to
authenticate requests.
For example, as route middleware in an Express application:
app.get('/auth/salesforce',
passport.authenticate('salesforce'));
app.get('/auth/salesforce/callback',
passport.authenticate('salesforce', { failureRedirect: '/login' }),
function(req, res) {
// Successful authentication, redirect home.
res.redirect('/');
});
Developers using the popular Express web framework can refer to an example as a starting point for their own web applications.
Copyright (c) 2016 Shahid Iqbal
FAQs
Saleforce authentication strategy for Passport.
The npm package passport-salesforce-oauth2 receives a total of 322 weekly downloads. As such, passport-salesforce-oauth2 popularity was classified as not popular.
We found that passport-salesforce-oauth2 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.