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-atlassian-crowd
Advanced tools
Password authentication strategy using Atlassian Crowd for Passport
Passport strategy for authenticating Atlassian Crowd given a username and password.
This module lets you authenticate using a username and password in your Node.js applications. By plugging into Passport, atlassian crowd authentication can be easily and unobtrusively integrated into any application or framework that supports Connect-style middleware, including Express.
$ npm install passport-atlassian-crowd
The atlassian-crowd authentication strategy authenticates users using a username and
password via a REST call to your Crowd server. The strategy requires a verify
callback, which accepts these
credentials and calls done
providing a user. This strategy can also be used with JIRA running as a crowd server.
A valid application will have to be configured in Atlassian Crowd to be allowed to make requests.
Pass an optional retrieveGroupMemberships:true
flag to populate a groups
array on the userprofile
with all the groups the user is a member of in Crowd.
passport.use(new AtlassianCrowdStrategy({
crowdServer:"http://localhost:2990/jira",
crowdApplication:"nodejs",
crowdApplicationPassword:"password",
retrieveGroupMemberships:false
},
function (userprofile, done) {
Users.findOrCreate(userprofile, function(err,user) {
if(err) return done(err);
return done(null, user);
});
}
));
Use passport.authenticate()
, specifying the 'atlassian-crowd'
strategy, to
authenticate requests.
For example, as route middleware in an Express application:
app.post('/login',
passport.authenticate('atlassian-crowd', { failureRedirect: '/login' }),
function(req, res) {
res.redirect('/');
});
For a complete, working example, refer to the login example.
(The MIT License)
Copyright (c) 2012 Andreas Knecht
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Password authentication strategy using Atlassian Crowd for Passport
The npm package passport-atlassian-crowd receives a total of 1 weekly downloads. As such, passport-atlassian-crowd popularity was classified as not popular.
We found that passport-atlassian-crowd 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
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.