About 6,250 results
Open links in new tab
  1. Any reason NOT to set all cookies to use httponly and secure

    May 25, 2018 · When the httponly flag is not set on the cookie value, the malicious javascript injected into the application due to an application level flaw could end up sabotaging the …

  2. Is it possible to bypass httponly? - Information Security Stack …

    Dec 14, 2020 · One method is to check if the server supports TRACE method. TRACE method is used for debugging mainly. The response contains the cookies even HttpOnly ones. Then with …

  3. HTTPonly token without CSRF is safe? - Information Security Stack …

    Jan 7, 2024 · The HttpOnly flag only prevents script from reading the cookie; it does not prevent script from sending the cookie along with requests (if it did, many modern websites simply …

  4. Does a CSRF cookie need to be HttpOnly? - Information Security …

    Dec 15, 2017 · The httpOnly flag, in general, does provide value in that it prevents client access to those cookies, and if your server returns any cookies, you should probably make them …

  5. httpOnly Session Cookies in an iframe context in the future w/o ...

    Apr 21, 2024 · My website is using session cookies (w/ SameSite=Lax, secure, httpOnly attributes) and a CSRF Token stored in localStorage. Recently I developed a teams app, …

  6. Does setting httponly prevent stealing a session using XSS?

    Oct 8, 2013 · If done correctly, HttpOnly prevents an attacker stealing the cookie. However, they can still perform arbitrary web requests impersonating the victim users, and extract the …

  7. Is a secure cookie without the HttpOnly flag a problem?

    Apr 11, 2017 · 4 HTTPonly cookie flag acts as a security control for session cookies as it prevents client side scripts from accessing the cookie value. This is effective in case an attacker …

  8. web - Can Javascript overwrite a HTTPOnly cookie? - Information ...

    May 13, 2020 · Can Javascript overwrite or delete a HTTPOnly cookie? In more detail: Suppose the user's browser has a cookie for example.com with the HTTPOnly flag set, say …

  9. xss - Should sensitive tokens be stored in localStorage or an …

    Dec 11, 2018 · In the context of a web application... should sensitive tokens, such as those used for sessions, authentication and/or authorization, be stored in localStorage or an HTTPOnly …

  10. authentication - Is it possible to set an HttpOnly Cookie from one ...

    Oct 2, 2021 · The goal of an httpOnly cookie is that it can't be manipulated on the client side. If you were able to access cookies across a domain, this would put a whole in that built in bit of …