Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
persona
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hexang 息壤平台
persona
Commits
04aafe83
Commit
04aafe83
authored
13 years ago
by
Lloyd Hilaiel
Browse files
Options
Downloads
Patches
Plain Diff
be a bit more strinigent in our CSRF token checking per @benadida's recommendation
parent
49e0a849
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
browserid/app.js
+18
-0
18 additions, 0 deletions
browserid/app.js
browserid/lib/wsapi.js
+0
-13
0 additions, 13 deletions
browserid/lib/wsapi.js
with
18 additions
and
13 deletions
browserid/app.js
+
18
−
0
View file @
04aafe83
...
...
@@ -188,6 +188,24 @@ exports.setup = function(server) {
server
.
use
(
express
.
bodyParser
());
// Check CSRF token early. POST requests are only allowed to
// /wsapi and they always must have a valid csrf token
server
.
use
(
function
(
req
,
resp
,
next
)
{
// only on POSTs
if
(
req
.
method
==
"
POST
"
)
{
if
(
!
/^
\/
wsapi/
.
test
(
req
.
url
)
||
// post requests only allowed to /wsapi
req
.
session
===
undefined
||
// there must be a session
typeof
req
.
session
.
csrf
!==
'
string
'
||
// the session must have a csrf token
req
.
body
.
csrf
!=
req
.
session
.
csrf
)
// and the token must match what is sent in the post body
{
// if any of these things are false, then we'll block the request
logger
.
warn
(
"
CSRF validation failure.
"
);
return
httputils
.
badRequest
(
resp
,
"
CSRF violation
"
);
}
}
return
next
();
});
// a tweak to get the content type of host-meta correct
server
.
use
(
function
(
req
,
resp
,
next
)
{
if
(
req
.
url
===
'
/.well-known/host-meta
'
)
{
...
...
This diff is collapsed.
Click to expand it.
browserid/lib/wsapi.js
+
0
−
13
View file @
04aafe83
...
...
@@ -85,19 +85,6 @@ function checkAuthed(req, resp, next) {
}
function
setup
(
app
)
{
// check CSRF token before routing the request to the proper handler
// (iff the request is to /wsapi AND it's a post)
app
.
use
(
function
(
req
,
resp
,
next
)
{
// only on POSTs to /wsapi
if
(
req
.
method
==
"
POST
"
&&
/^
\/
wsapi/
.
test
(
req
.
url
)
&&
req
.
body
.
csrf
!=
req
.
session
.
csrf
)
{
// error, problem with CSRF
logger
.
warn
(
"
CSRF token mismatch. got:
"
+
req
.
body
.
csrf
+
"
wanted:
"
+
req
.
session
.
csrf
);
httputils
.
badRequest
(
resp
,
"
CSRF violation
"
);
}
else
{
next
();
}
});
// return the CSRF token
// IMPORTANT: this should be safe because it's only readable by same-origin code
// but we must be careful that this is never a JSON structure that could be hijacked
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment