Is it possible in PHP to edit another users session other than the current user? If so how?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is possible to edit another users session in php through couple of ways:
1st way is to you have to get SessionID of the user for which you want to edit session;
If you are storing your session data in database then it would be even easier to manipulate data directly in database which would update user session when application will request data again.
Remember you can play with user session up to any level the only thing required is SESSION_ID.
If you got that you won the game;