What are the major flaws with authentication following the following logic.
User logs into a.example.com and clicks "Login to b.example.com". This link generates a random string and saves it in the b.example.com database. It then redirects to b.example.com/remotelogin.php?token=therandomstring which checks the database for that string and logs the user in.
The only problem I could think of that it needs for security is a time limit for the token to be valid, which could be like 30 seconds or something.