
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.
passport-firebase-authentication
Advanced tools
Firebase Strategy base on firebase authentication
You must call firebase.initializeApp before use this Strategy.
$ npm install passport-firebase-auth
Before using passport-firebase-auth
, you must register an application with
Firebase. If you have not already done so, a new project can be created in the
Firebase Developers Console.
The Firebase authentication strategy authenticates users using a Firebase Token.
You must call
firebase.initializeApp({
serviceAccount: "path/to/serviceAccountCredentials.json",
databaseURL: "https://databaseName.firebaseio.com"
});
before using this strategy.
var FirebaseStrategy = require('passport-firebase-auth').Strategy;
passport.use(new FirebaseStrategy({
firebaseProjectId: "project-id",
authorizationURL: 'https://account.example.net/auth',
callbackURL: 'https://www.example.net/auth/firebase/callback'
},
function(accessToken, refreshToken, decodedToken, cb) {
User.findOrCreate(..., function (err, user) {
return cb(err, user);
});
}
));
Use passport.authenticate()
, specifying the 'firebaseauth'
strategy, to
authenticate requests.
For example, as route middleware in an Express application:
app.get('/auth/firebase',
passport.authenticate('firebaseauth', { }));
app.get('/auth/firebase/callback',
passport.authenticate('firebaseauth', { failureRedirect: '/login' }),
function(req, res) {
// Successful authentication, redirect home.
res.redirect('/');
});
FAQs
Firebase Strategy
The npm package passport-firebase-authentication receives a total of 0 weekly downloads. As such, passport-firebase-authentication popularity was classified as not popular.
We found that passport-firebase-authentication 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
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.