문제

In my website I am not using any kind of cookies, everything goes through server-side session handling. (no setcookie instruction at all)

But still, using Acunetix website vulnerability checker, I get a report about "Session cookie without httpOnly flag set"

Is there something I'm missing? Are there any implicit cookies anyway?

Thank you

도움이 되었습니까?

해결책

Sessions are using cookies! Unless you transport the session id in URLs (which isn't good either), a session sets a cookie. A session consists of the server-side data storage and a session cookie, which contains a random id associating the client with the server-side data.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top