Is there any way to login users to other sites using PHP with cURL or something else? I want to provide logins for my users to other sites, but i don't want to show them the password, so they cannot change it on the other sites.
|
|
Not unless you proxy the entire session through your server. |
|||
|
|
My guess is it depends on the site. Websites have a variety of ways to authenticate a user. If the website uses a session identifier in the URL, you could login for them, then pass a If they use cookies or IP-based system, it won't work because a) you can't pass another domain's cookie on to the end-user (this would be a X-site attack), and You might be able to fake that you're a proxy and use X-FORWARDED-FOR in your request, but even still that's a stretch. |
|||
|
|
|
SAML is often used for signle sign on (SSO) - http://en.wikipedia.org/wiki/Security_Assertion_Markup_Language |
||||
|
|
