I'd like to add an dynamic header to my hx-headers in htmx like so.
<form
hx-post="api/auth/login-signup"
hx-headers='js:{"Authorization": localStorage.accessToken}'
I want to make sure that this will not be vulnerable to XSS. I assume that if I sanitize the Authorization header on the server I will be ok?
Use session bro.
In the conf of you server.js Eg:
After you can manage the session like that Eg:
& you check the validity like that Eg:
Calling the authorization inside your backend methode eg:
So u store the & eveyone Will be happy (your RSSI also)
ps: exemple with nodeJS, Express & HTMX