Which of the following does NOT help to protect against session hijacking and fixation attacks?
Use SSL and set the $secure cookie parameter to true .
Set the session.use_only_cookies php.ini parameter to 1 .
Set the session.cookie_lifetime php.ini parameter to 0 .
Protect against XSS vulnerabilities in the application.
Rotate the session id on successful login and logout using session_regenerate_id()
Submit