find_login_page
Discover login/sign-in pages for a website by checking sitemap and common paths.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
url | string | Yes | Base URL of the site (e.g. https://myapp.com) |
Example
Find the login page for https://myapp.comHow It Works
- Sitemap check — Fetches
/sitemap.xmland/sitemap_index.xml, scans all<loc>entries for URLs containinglogin,signin,sign-in,auth,account, orsso - Common path probing — Sends HEAD requests to 20 common login paths:
/login,/signin,/sign-in,/auth/login,/auth/signin/account/login,/user/login,/users/sign_in/admin/login,/admin,/wp-login.php,/wp-admin/dashboard/login,/portal/login,/sso/login/auth,/session/new,/log-in,/member/login
- Deduplication — Results are deduplicated by URL
Response
Returns a list of candidate login URLs with how they were found (sitemap or common-path) and HTTP status code.
If no login pages are found, suggests asking the user for the exact URL.
Notes
- This tool does not attempt to log in — it only discovers login page URLs
- Use the result with
browser_navigateandbrowser_fillto complete the login flow - See also:
smart_loginfor automated login attempts