Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
passport-naver
Advanced tools
Passport strategies for authenticating with Naver using OAuth 2.0.
This module lets you authenticate using Naver in your Node.js applications. By plugging into Passport, Naver authentication can be easily and unobtrusively integrated into any application or framework that supports Connect-style middleware, including Express.
$ npm install passport-naver
The Naver OAuth 2.0 authentication strategy authenticates users using a Naver
account and OAuth 2.0 tokens. The strategy requires a verify
callback, which
accepts these credentials and calls done
providing a user, as well as
options
specifying a client ID, client secret, and callback URL.
var NaverStrategy = require('passport-naver').Strategy;
passport.use(new NaverStrategy({
clientID: config.naver.clientID,
clientSecret: config.naver.clientSecret,
callbackURL: config.naver.callbackURL
},
function(accessToken, refreshToken, profile, done) {
User.findOne({
'naver.id': profile.id
}, function(err, user) {
if (!user) {
user = new User({
name: profile.displayName,
email: profile.emails[0].value,
username: profile.displayName,
provider: 'naver',
naver: profile._json
});
user.save(function(err) {
if (err) console.log(err);
return done(err, user);
});
} else {
return done(err, user);
}
});
}
));
Use passport.authenticate()
, specifying the 'naver'
strategy, to
authenticate requests.
For example, as route middleware in an Express application:
// Setting the naver oauth routes
app.route('/auth/naver')
.get(passport.authenticate('naver', {
failureRedirect: '#!/auth/login'
}), users.signin);
// creates an account if no account of the new user
app.route('/auth/naver/callback')
.get(passport.authenticate('naver', {
failureRedirect: '#!/auth/login'
}), users.createAccount, users.authCallback);
You need to register your application from Naver Developer Center. <Naver Developer Center>
You can get client id & secret for your application after the approval process of Naver Corp.
After the client id & secret are issued, assign them to the following variables.
clientID: config.naver.clientID,
clientSecret: config.naver.clientSecret,
callbackURL: config.naver.callbackURL,
You can execute the following application from the 'examples' directory.
$ npm install
$ node app.js
var express = require('express')
, passport = require('passport')
, session = require('express-session')
, NaverStrategy = require('../lib/index.js').Strategy;
var client_id = '************ your app client id ************';
var client_secret = '************ your app client secret ************';
var callback_url = '************ your app callback url ************';
passport.serializeUser(function(user, done) {
done(null, user);
});
passport.deserializeUser(function(obj, done) {
done(null, obj);
});
passport.use(new NaverStrategy({
clientID: client_id,
clientSecret: client_secret,
callbackURL: callback_url,
svcType: 0 // optional. see http://gamedev.naver.com/index.php/%EC%98%A8%EB%9D%BC%EC%9D%B8%EA%B2%8C%EC%9E%84:OAuth_2.0_API
}, function(accessToken, refreshToken, profile, done) {
process.nextTick(function () {
//console.log("profile=");
//console.log(profile);
// data to be saved in DB
user = {
name: profile.displayName,
email: profile.emails[0].value,
username: profile.displayName,
provider: 'naver',
naver: profile._json
};
//console.log("user=");
//console.log(user);
return done(null, profile);
});
}));
var app = express();
app.use(session({secret: 'keyboard cat'}));
app.use(passport.initialize());
app.use(passport.session());
app.set('view engine', 'jade');
app.set('views', __dirname + '/views/');
app.get('/', function(req, res){
res.render('index', { user: req.user });
});
app.get('/account', ensureAuthenticated, function(req, res) {
console.log(req.user);
res.render('account', { user: req.user });
});
app.get('/login', function(req, res){
res.render('login', { user: req.user });
});
// Setting the naver oauth routes
app.get('/auth/naver',
passport.authenticate('naver', null), function(req, res) {
console.log('/auth/naver failed, stopped');
});
// creates an account if no account of the new user
app.get('/auth/naver/callback',
passport.authenticate('naver', {
failureRedirect: '#!/auth/login'
}), function(req, res) {
res.redirect('/');
});
app.get('/logout', function(req, res){
req.logout();
res.redirect('/');
});
app.listen(3000);
function ensureAuthenticated(req, res, next) {
if (req.isAuthenticated()) { return next(); }
res.redirect('/login');
}
Copyright (c) 2014 Naver Corp.
FAQs
Naver authentication strategy for Passport
The npm package passport-naver receives a total of 14,015 weekly downloads. As such, passport-naver popularity was classified as popular.
We found that passport-naver demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.