To prevent session hijacking, it's a good practice to bind the session to the user's ________.
- IP Address
- Hardware Token
- Browser Fingerprint
- User Credentials
To prevent session hijacking, binding the session to the user's "Browser Fingerprint" is recommended. This involves tracking unique characteristics of the user's browser to ensure session continuity and security.
Loading...
Related Quiz
- You need to execute a block of code at least once in your PHP script, then repeat it as long as a certain condition is true. Which type of loop would you use and why?
- Imagine you're building a multi-step form in PHP. At the third step, you need to access data from the first step without re-submitting the form. Which PHP feature would allow you to do this?
- In PHP, the * operator is used for ______.
- You are using a switch statement in your PHP script and you want to execute the same block of code for multiple cases. How would you do this?
- You have a while loop in your PHP script that is not terminating as expected. What could be the possible reasons and how would you debug this?