Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When requiring the login url from the facebook sdk a state is saved in the session to prevent CSRF, this is done in the Facebook class setPersistentData($key, $value) method:

$session_var_name = $this->constructSessionVariableName($key);
$_SESSION[$session_var_name] = $value;

After that, I made a var_dump of $_SESSION and exit; to be sure it's in there and nothing can alter the $_SESSION array. And voila, it's there:

...
'fb_451994004840680_state' => string '6de843508d52d3d4926275ab49280cef' (length=32)
...

So I change the index.php file to

session_start();
var_dump($_SESSION);
exit;

and refresh. All previously set session elements are there, but not the facebook state.

So I tried the following: I added another (dummy state) key in the setPersistentData($key, $value) method:

$_SESSION[$session_var_name] = $value;
$_SESSION['fb_1234567890_state'] = '848a87592acd';
var_dump($_SESSION);
exit;

and both are set directly after var_dump:

'fb_451994004840680_state' => string '6de843508d52d3d4926275ab49280cef' (length=32)
'fb_1234567890_state' => string '848a87592acd' (length=12)

After refresh and var dumping in the index.php, only the dummy key exists:

'fb_1234567890_state' => string '848a87592acd' (length=12)


How is this possible???

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.