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

Update .env.sample to include csrf_secret and then also update code i… #986

Merged
merged 1 commit into from
Jan 2, 2025
Merged
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
1 change: 1 addition & 0 deletions Tombolo/.env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ API_KEY_DURATION=
# Authentication and Authorization Configuration
JWT_SECRET=
JWT_REFRESH_SECRET=
CSRF_SECRET=

# OAuth 2.0 - Azure
TENENT_ID=
Expand Down
4 changes: 3 additions & 1 deletion Tombolo/server/middlewares/csrfMiddleware.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ const csrf = doubleCsrf({

const decoded = verifyToken(token, process.env.JWT_SECRET);

const secret = process.env.CSRF_SECRET + decoded.id;
const secret = process.env.CSRF_SECRET
? process.env.CSRF_SECRET
: "secret" + decoded.id;

return secret;
} catch (e) {
Expand Down
Loading