Tag Archives: Redirection

Android Intent Redirection: A Hacker’s Gateway to Internal Components | by Anas Eladly ( 0x3adly ) | Jan, 2025

Android Intent Redirection: A Hacker’s Gateway to Internal Components | by Anas Eladly ( 0x3adly ) | Jan, 2025

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 »