as you can see it is a normal activity that handles the login process but there is one interesting method to look at which is onLoginFinished(). This method is responsible for redirecting the user after login. It is a good example for a proxy method implementation and the intent redirection attack. private void onLoginFinished() {Intent redirectIntent = (Intent) getIntent().getParcelableExtra(INTENT_REDIRECT_KEY);if (redirectIntent …
Read More »