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

Async csrf improvements #17054

Draft
wants to merge 3 commits into
base: 5.x
Choose a base branch
from
Draft

Conversation

brianjhanson
Copy link
Contributor

Description

Related issues

fetchCsrfData().then(({csrfTokenName, csrfTokenValue}) => {
const input = createHiddenInput({name: csrfTokenName, value: csrfTokenValue});
asyncInput.replaceWith(input);
});
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we also need to defer/debounce submit events that come in between focusin and injecting the input.

Over a slow connection, you could interact with the form and submit before the CSRF has been injected, resulting in a CSRF error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants