Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[koa-session] security example for app.keys #137

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion csrf/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ const koaBody = require('koa-body');
const session = require('koa-session');
const CSRF = require('koa-csrf');
const router = require('koa-router')();
const Keygrip = require('keygrip');

const app = module.exports = new Koa();

/**
* csrf need session
*/

app.keys = ['session key', 'csrf example'];
app.keys = new Keygrip(['insert 64 bytes random string', 'insert another 64 bytes random string'], 'sha512');
app.use(session(app));
app.use(koaBody());

Expand Down
3 changes: 2 additions & 1 deletion flash-messages/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
const Koa = require('koa');
const rawBody = require('raw-body');
const session = require('koa-session');
const Keygrip = require('keygrip');

const app = module.exports = new Koa();

// required for signed cookie sessions
app.keys = ['key1', 'key2'];
app.keys = new Keygrip(['insert 64 bytes random string', 'insert another 64 bytes random string'], 'sha512');
app.use(session(app));

app.use(async function(ctx, next) {
Expand Down