Opened 14 years ago
Last modified 14 years ago
#15973 closed Bug
Ajax CSRF code in docs doesn't always work. — at Initial Version
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Documentation | Version: | 1.3 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
while making urls are local, simply filtering for relative urls is not sufficient. several libraries may end up requesting a fully qualified url that is in fact local.
my suggestion is to change this line:
/https:.*/.test(settings.url))) { |
to this:
var root = location.protocol + '' + location.host;
/https:.*/.test(settings.url)) | settings.url.substr(0, root.length) === root ) { |
Note:
See TracTickets
for help on using tickets.
modifies the ajax csrf code in the docs to look for the current pages domain as well as relative urls