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

Enable CSRF in spring security #10

Open
Questlog opened this issue Sep 17, 2023 · 1 comment
Open

Enable CSRF in spring security #10

Questlog opened this issue Sep 17, 2023 · 1 comment

Comments

@Questlog
Copy link

Hey, a downside of HTMX is that it is does not send CSRF tokens per default. I had some troubles with that.

I would advise against disabling CSRF in the spring security config and instead use this in the thymleaf layout:

<script th:inline="javascript">
    document.body.addEventListener('htmx:configRequest', (event) => {
        event.detail.headers[ [[${_csrf.headerName}]] ] = [[${_csrf.token}]];
    })
</script>
@wiverson
Copy link
Owner

Totally - want to send a PR?

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

No branches or pull requests

2 participants