Jump to content

Getting information about facebook and other accounts a user is logged into


CrimpJiggler

Recommended Posts

I read a security article a while ago that claimed it is dangerous to browse the web while you are logged into gmail, facebook, whatever because any website can get the profile ID of these accounts if you are logged into them. That sounds like bs to me, but the article seemed relatively legitimate so I'm wondering about this. Can you, with PHP or javascript get the profile ID of social media/whatever accounts a user is logged into?

Link to comment
Share on other sites

A website owner can use the api's from other sites and then add a script their own sites to detect if logged in or not.

What that api reveals about a user could vary.

 

Website owner would apply and get an app id.

 

For facebook they have a login app.

https://developers.facebook.com/products/login/

 

And in more detail

https://developers.facebook.com/products/login/

 

Now what's interesting here is just intended to detect if a person logged in or not and give them a login button.

There is additionally the api for doing logins another site which sends a token,email and users id.

FB.api('/me', function(response) {
    console.log(JSON.stringify(response));
});

Which returns

{
  "id":"101540562372987329832845483",
  "email":"example@example.com",
  "first_name":"Bob",
  [ ... ]
}

I would guess that facebook has some security to not let anyone know your id unless you use that site to log in and they happen to use either a facebook login button or some custom one of theirs that is really facebook, Not to mention if you used same login credentials as facebook account.

 

I should hope facebook has some same domain policies for iframes.

 

Anything is possible but it shouldn't be possible to me unless you actually logged in through their system, not merely visiting.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.