Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
What cookies and/or session variables are set upon login?
Can anyone tell me what cookies and or session variables get set when a user successfully logs in? And how can I print these out so I can see them?
Thank you in advance,
Robert
Thank you in advance,
Robert
Tagged:
0
Best Answer
-
Todd Vanilla Staff
This is a config setting, but the defaults are "Vanilla", "Vanilla-Volatile", and "Vanilla-SessionID.".
You can justprint_r($_COOKIE)
to see the values.0
Answers
You can just
print_r($_COOKIE)
to see the values.thank you Todd!