Is it possible for an malicious user to set the $_SESSION (in php) variable to any value he wants?
相关问题
- Views base64 encoded blob in HTML with PHP
- Angular RxJS mergeMap types
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
Not typically, but they could if, for instance, you had a remote code execution vulnerability in your PHP.
Yes, by using another user's session data, as shown here: http://phpsec.org/projects/guide/4.html
Yes, when REGISTER_GLOBALS in on.