adspace


Is it more secure to use cookies to transfer session ids?

Answer Posted / Mubarak Hussain

Using cookies for transferring session IDs is considered relatively safe if you properly implement HTTP-only, Secure and SameSite attributes. However, it's essential to follow security best practices such as setting a session time-out, using a secure connection (HTTPS), and protecting against Cross-Site Scripting (XSS) attacks.nnHere's an example of how to set HttpOnly and Secure flags in PHP:nn```phpnsession_set_cookie_params(60 * 60, '/', '.', 'localhost', true, true);nsession_start();``

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain me is it possible to destroy a cookie?

1025


Name and explain five of the PHP error constants?

1033


List some features of php that are deprecated in php7?

1021


Which variable declarations within a class is invalid in php?

1047


hello all, I need some sample placement papers in lion bridge.. can anyone help me?

2175


How to calculate the difference between two dates using php?

1142


What is the current stable version of php? What advance thing in php7?

1094


What is the current stable version of php?

1122


What is difference between static and final in php?

1107


What sized websites have you worked on in the past?

1084


What is trait in php?

1065


how to detect a mobile device using php

1173


sort term descripttion form, report and uery

2254


What does $_files means?

1162


Write a program using while loop?

1115