Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
1d41cb540e | |||
818263b15c | |||
3d45129ce1 |
44
.idea/workspace.xml
generated
Normal file
44
.idea/workspace.xml
generated
Normal file
@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="60ecbf83-4bba-4fa7-aaf1-2762f3154f8b" name="Default Changelist" comment="" />
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
||||
<option name="LAST_RESOLUTION" value="IGNORE" />
|
||||
</component>
|
||||
<component name="Git.Settings">
|
||||
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
||||
</component>
|
||||
<component name="ProjectId" id="1sx0rQiSITjAkuVuRgoetALRiBd" />
|
||||
<component name="ProjectViewState">
|
||||
<option name="hideEmptyMiddlePackages" value="true" />
|
||||
<option name="showLibraryContents" value="true" />
|
||||
</component>
|
||||
<component name="PropertiesComponent">
|
||||
<property name="RunOnceActivity.OpenProjectViewOnStart" value="true" />
|
||||
<property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
|
||||
<property name="WebServerToolWindowFactoryState" value="false" />
|
||||
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
||||
<property name="nodejs_package_manager_path" value="npm" />
|
||||
<property name="settings.editor.selected.configurable" value="preferences.pluginManager" />
|
||||
<property name="vue.rearranger.settings.migration" value="true" />
|
||||
</component>
|
||||
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
||||
<component name="TaskManager">
|
||||
<task active="true" id="Default" summary="Default task">
|
||||
<changelist id="60ecbf83-4bba-4fa7-aaf1-2762f3154f8b" name="Default Changelist" comment="" />
|
||||
<created>1621799132070</created>
|
||||
<option name="number" value="Default" />
|
||||
<option name="presentableId" value="Default" />
|
||||
<updated>1621799132070</updated>
|
||||
<workItem from="1621799133598" duration="9079000" />
|
||||
<workItem from="1621945982621" duration="1195000" />
|
||||
<workItem from="1622217873429" duration="2448000" />
|
||||
</task>
|
||||
<servers />
|
||||
</component>
|
||||
<component name="TypeScriptGeneratedFilesManager">
|
||||
<option name="version" value="3" />
|
||||
</component>
|
||||
</project>
|
9
LICENSE
Normal file
9
LICENSE
Normal file
@ -0,0 +1,9 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) <year> <copyright holders>
|
||||
|
||||
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.
|
@ -1,10 +1,6 @@
|
||||
# LoginDemo
|
||||
|
||||
Es gibt 2 Versionen, eine lässt CSRF zu die andere nicht
|
||||
|
||||
* [NO_CSRF](https://git.dergeorg.at/dergeorg/LoginDemo/src/branch/NO_CSRF)
|
||||
* [CSRF_erlaubt](https://git.dergeorg.at/dergeorg/LoginDemo/src/branch/CSRF_erlaubt)
|
||||
|
||||
CSRF ist hier blockiert
|
||||
|
||||
Google Auth +
|
||||
Digest +
|
||||
|
1
db/index.js
Normal file
1
db/index.js
Normal file
@ -0,0 +1 @@
|
||||
exports.users = require('./users');
|
64
db/users.js
Normal file
64
db/users.js
Normal file
@ -0,0 +1,64 @@
|
||||
exports.createUser = function(userobj, cb) {
|
||||
process.nextTick(function (){
|
||||
var lastId = records[records.length - 1].id
|
||||
userobj.id = lastId+1;
|
||||
records.push(userobj)
|
||||
return cb(null, userobj)
|
||||
})
|
||||
}
|
||||
|
||||
exports.findByUsernameGoogle = function(userobj, cb) {
|
||||
process.nextTick(function (){
|
||||
console.log(userobj)
|
||||
for (var i = 0, len = records.length; i < len; i++) {
|
||||
var record = records[i];
|
||||
if (record.googleId === userobj.googleId) {
|
||||
return cb(null, record);
|
||||
}
|
||||
}
|
||||
return cb(null, null);
|
||||
})
|
||||
}
|
||||
|
||||
exports.findByToken = function(userobj, cb) {
|
||||
process.nextTick(function (){
|
||||
console.log(userobj)
|
||||
for (var i = 0, len = records.length; i < len; i++) {
|
||||
var record = records[i];
|
||||
if (record.token === userobj.token) {
|
||||
return cb(null, record);
|
||||
}
|
||||
}
|
||||
return cb(null, null);
|
||||
})
|
||||
}
|
||||
|
||||
var records = [
|
||||
{ id: 1, username: 'jack', password: 'secret', displayName: 'Jack', emails: [ { value: 'jack@example.com' } ], googleId: 1 }
|
||||
, { id: 2, username: 'jill', password: 'birthday', displayName: 'Jill', emails: [ { value: 'jill@example.com' } ], googleId: 2 }
|
||||
];
|
||||
|
||||
exports.findById = function(id, cb) {
|
||||
process.nextTick(function() {
|
||||
var idx = id - 1;
|
||||
if (records[idx]) {
|
||||
cb(null, records[idx]);
|
||||
} else {
|
||||
cb(new Error('User ' + id + ' does not exist'));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
exports.findByUsername = function(username, cb) {
|
||||
process.nextTick(function() {
|
||||
for (var i = 0, len = records.length; i < len; i++) {
|
||||
var record = records[i];
|
||||
console.log("Username")
|
||||
console.log(username)
|
||||
if (record.username === username) {
|
||||
return cb(null, record);
|
||||
}
|
||||
}
|
||||
return cb(null, null);
|
||||
});
|
||||
}
|
1540
package-lock.json
generated
Normal file
1540
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
38
package.json
Normal file
38
package.json
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
"name": "express-4.x-local-example",
|
||||
"version": "0.0.0",
|
||||
"description": "Express 4.x app using Passport for authentication with username and password.",
|
||||
"keywords": [
|
||||
"example",
|
||||
"express",
|
||||
"passport"
|
||||
],
|
||||
"author": "Jared Hanson",
|
||||
"license": "Unlicense",
|
||||
"homepage": "https://github.com/passport/express-4.x-local-example",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/passport/express-4.x-local-example.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/passport/express-4.x-local-example/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"body-parser": "^1.19.0",
|
||||
"connect-ensure-login": "^0.1.1",
|
||||
"cookie-session": "^1.4.0",
|
||||
"csurf": "^1.11.0",
|
||||
"ejs": "^2.6.2",
|
||||
"express": "^4.17.1",
|
||||
"express-session": "^1.16.1",
|
||||
"morgan": "^1.9.1",
|
||||
"passport": "^0.4.0",
|
||||
"passport-cookie": "^1.0.9",
|
||||
"passport-google-oauth": "^2.0.0",
|
||||
"passport-http": "^0.3.0",
|
||||
"passport-local": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"cookie-parser": "^1.4.5"
|
||||
}
|
||||
}
|
178
server.js
Normal file
178
server.js
Normal file
@ -0,0 +1,178 @@
|
||||
var express = require('express');
|
||||
var passport = require('passport');
|
||||
var Strategy = require('passport-local').Strategy;
|
||||
var db = require('./db');
|
||||
|
||||
// Google
|
||||
var GoogleStrategy = require('passport-google-oauth').OAuth2Strategy;
|
||||
|
||||
//Digest
|
||||
var DigestStrategy = require('passport-http').DigestStrategy
|
||||
|
||||
// NO CSRF
|
||||
var bodyParser = require('body-parser')
|
||||
var csrf = require('csurf')
|
||||
var csrfProtection = csrf({ cookie: true })
|
||||
var cookieParser = require('cookie-parser')
|
||||
var parseForm = bodyParser.urlencoded({ extended: false })
|
||||
|
||||
passport.use(new DigestStrategy({ qop: 'auth' },
|
||||
function(username, done) {
|
||||
db.users.findByUsername(username, function (err, user) {
|
||||
console.log("User")
|
||||
console.log(user)
|
||||
if (err) { return done(err); }
|
||||
if (!user) { return done(null, false); }
|
||||
return done(null, user, user.password);
|
||||
});
|
||||
}
|
||||
));
|
||||
|
||||
// Configure the local strategy for use by Passport.
|
||||
//
|
||||
// The local strategy requires a `verify` function which receives the credentials
|
||||
// (`username` and `password`) submitted by the user. The function must verify
|
||||
// that the password is correct and then invoke `cb` with a user object, which
|
||||
// will be set at `req.user` in route handlers after authentication.
|
||||
passport.use(new Strategy(
|
||||
function(username, password, cb) {
|
||||
db.users.findByUsername(username, function(err, user) {
|
||||
if (err) { return cb(err); }
|
||||
if (!user) { return cb(null, false); }
|
||||
if (user.password != password) { return cb(null, false); }
|
||||
return cb(null, user);
|
||||
});
|
||||
}));
|
||||
|
||||
// Use the GoogleStrategy within Passport.
|
||||
// Strategies in passport require a `verify` function, which accept
|
||||
// credentials (in this case, a token, tokenSecret, and Google profile), and
|
||||
// invoke a callback with a user object.
|
||||
passport.use(new GoogleStrategy({
|
||||
clientSecret: 'YEMhoekMa89lFFGesgx7o23L',
|
||||
clientID: '796153694464-k1qqko2fgqtqg3n5teiq2pape1cjkaud.apps.googleusercontent.com',
|
||||
callbackURL: "http://localhost:4000/auth/google/callback"
|
||||
},
|
||||
function(token, tokenSecret, profile, done) {
|
||||
console.log("pro")
|
||||
console.log(profile)
|
||||
db.users.findByUsernameGoogle({ googleId: profile.id }, function (err, user) {
|
||||
console.log("user")
|
||||
console.log(user)
|
||||
if (err) { return done(err); }
|
||||
if(user == null || user == {}){
|
||||
var newUser = {username: profile.name.givenName, passwort: '', displayName: profile.displayName, emails: [{value: 'ONLY Google Login'}], googleId: '108136196294121041031'}
|
||||
db.users.createUser(newUser, function (err, user){
|
||||
return done(err, user)
|
||||
})
|
||||
}else {
|
||||
return done(err, user);
|
||||
}
|
||||
});
|
||||
}
|
||||
));
|
||||
|
||||
|
||||
|
||||
// Configure Passport authenticated session persistence.
|
||||
//
|
||||
// In order to restore authentication state across HTTP requests, Passport needs
|
||||
// to serialize users into and deserialize users out of the session. The
|
||||
// typical implementation of this is as simple as supplying the user ID when
|
||||
// serializing, and querying the user record by ID from the database when
|
||||
// deserializing.
|
||||
passport.serializeUser(function(user, cb) {
|
||||
cb(null, user.id);
|
||||
});
|
||||
|
||||
passport.deserializeUser(function(id, cb) {
|
||||
db.users.findById(id, function (err, user) {
|
||||
if (err) { return cb(err); }
|
||||
cb(null, user);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
// Create a new Express application.
|
||||
var app = express();
|
||||
|
||||
// Configure view engine to render EJS templates.
|
||||
app.set('views', __dirname + '/views');
|
||||
app.set('view engine', 'ejs');
|
||||
|
||||
// Use application-level middleware for common functionality, including
|
||||
// logging, parsing, and session handling.
|
||||
app.use(require('morgan')('combined'));
|
||||
// app.use(require('body-parser').urlencoded({ extended: true }));
|
||||
app.use(require('express-session')({ secret: 'keyboard cat', resave: false, saveUninitialized: false }));
|
||||
|
||||
// parse cookies
|
||||
// we need this because "cookie" is true in csrfProtection
|
||||
app.use(cookieParser())
|
||||
|
||||
|
||||
// Initialize Passport and restore authentication state, if any, from the
|
||||
// session.
|
||||
app.use(passport.initialize());
|
||||
app.use(passport.session());
|
||||
|
||||
|
||||
// Define routes.
|
||||
app.get('/',
|
||||
function(req, res) {
|
||||
res.render('home', { user: req.user });
|
||||
});
|
||||
|
||||
app.get('/login', csrfProtection,
|
||||
function(req, res){
|
||||
console.log("CSRF TOKEN")
|
||||
console.log(req.csrfToken())
|
||||
res.render('login', {csrfToken: req.csrfToken()});
|
||||
});
|
||||
|
||||
app.post('/login', parseForm, csrfProtection,
|
||||
passport.authenticate('local', { failureRedirect: '/login' }),
|
||||
function(req, res) {
|
||||
res.redirect('/');
|
||||
});
|
||||
|
||||
app.get('/logout',
|
||||
function(req, res){
|
||||
req.logout();
|
||||
res.redirect('/');
|
||||
});
|
||||
|
||||
app.get('/profile',
|
||||
require('connect-ensure-login').ensureLoggedIn(),
|
||||
function(req, res){
|
||||
res.render('profile', { user: req.user });
|
||||
});
|
||||
|
||||
app.get('/digest',
|
||||
passport.authenticate('digest', { session: false }),
|
||||
function(req, res) {
|
||||
res.send("<a href=\"/logout\"><button>Logout</button></a> Hallo: " + req.user.displayName);
|
||||
});
|
||||
|
||||
|
||||
// GET /auth/google
|
||||
// Use passport.authenticate() as route middleware to authenticate the
|
||||
// request. The first step in Google authentication will involve redirecting
|
||||
// the user to google.com. After authorization, Google will redirect the user
|
||||
// back to this application at /auth/google/callback
|
||||
app.get('/auth/google',
|
||||
passport.authenticate('google', { scope: 'https://www.googleapis.com/auth/plus.login' }));
|
||||
|
||||
// GET /auth/google/callback
|
||||
// Use passport.authenticate() as route middleware to authenticate the
|
||||
// request. If authentication fails, the user will be redirected back to the
|
||||
// login page. Otherwise, the primary route function function will be called,
|
||||
// which, in this example, will redirect the user to the home page.
|
||||
app.get('/auth/google/callback',
|
||||
passport.authenticate('google', { failureRedirect: '/' }),
|
||||
function(req, res) {
|
||||
res.redirect('/');
|
||||
});
|
||||
app.listen(4000);
|
9
views/home.ejs
Normal file
9
views/home.ejs
Normal file
@ -0,0 +1,9 @@
|
||||
<% if (!user) { %>
|
||||
<p>Willkommen! <br></p>
|
||||
<p><a href="/login"><button>Email Login per Formular</button></a></p>
|
||||
<p><br><a href="/auth/google"><button>Google Login</button></a></p>
|
||||
<p><br><a href="/digest"><button>Digest Login</button></a></p>
|
||||
<% } else { %>
|
||||
<p>Hello, <%= user.username %>. View your <a href="/profile"><button>Profile</button></a>.</p>
|
||||
<p><a href="/logout"><button>Log out</button></a></p>
|
||||
<% } %>
|
16
views/login.ejs
Normal file
16
views/login.ejs
Normal file
@ -0,0 +1,16 @@
|
||||
<form action="/login" method="post">
|
||||
<input type="hidden" name="_csrf" value="<%= csrfToken %>">
|
||||
<div>
|
||||
<label>Username:</label>
|
||||
<input type="text" name="username"/><br/>
|
||||
</div>
|
||||
<div>
|
||||
<label>Password:</label>
|
||||
<input type="password" name="password"/>
|
||||
</div>
|
||||
<div>
|
||||
<input type="submit" value="Submit"/>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<a href="/auth/google"><button>Zum Google Login</button></a>
|
12
views/profile.ejs
Normal file
12
views/profile.ejs
Normal file
@ -0,0 +1,12 @@
|
||||
<p>
|
||||
ID: <%= user.id %><br/>
|
||||
Username: <%= user.username %><br/>
|
||||
Name: <%= user.displayName %><br/>
|
||||
GoogleId: <%= user.googleId %><br/>
|
||||
<% if (user.emails) { %>
|
||||
Email: <%= user.emails[0].value %><br/>
|
||||
<% } %>
|
||||
</p>
|
||||
<p><a href="/logout"><button>Log out</button></a></p>
|
||||
|
||||
<p><a href="/"><button>Home</button></a></p>
|
Loading…
x
Reference in New Issue
Block a user