Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Could you explain a bit more? You want them to log in with their credentials, through your interface? Sounds a bit shady. If it's giving them a login with your credentials, hence why you need to hide your password, please say so as well. In that case the method may vary depending what sites you're logging into. – Tesserex Dec 16 '10 at 16:02
No. for example, i have a rapidshare account. And i want the users to log in with this account, but i don't want to provide the password, because thay can change it. So i want to login them with my account, but they shouldn't see the login details. – wintercounter Dec 16 '10 at 16:04

3 Answers

up vote 2 down vote accepted

Not unless you proxy the entire session through your server.

share|improve this answer
I should need a cross site solution, so i guess the answer is no. Thanks for the replies. – wintercounter Dec 16 '10 at 16:08

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 header('Location: http://someothersite.com?PHPSESSID=_____'); to the user and assume it just picks up with that session.

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
b) the server's IP is different than the users.

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.

share|improve this answer

SAML is often used for signle sign on (SSO) - http://en.wikipedia.org/wiki/Security_Assertion_Markup_Language

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.