I have some special cookies. I need those cookie was set by server code only. So I need to find out that cookie was set by javascript or server code. Is it possible?
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.
Technically speaking you could not determine this information. One way to try would be to hash the value out using like sha1/md5 and use a session on the server side to store the same value and assert the hashes match.
Could you explain a bit more about what you are trying to do though and perhaps some sort of solution is possible.