Sends a CORS preflight request ahead of any private network requests for subresources, asking for explicit permission from the target server. A private network request is any request from a public website to a private IP address or localhost, or from a private website (e.g. intranet) to localhost. Sending a preflight request mitigates the risk of cross-site request forgery attacks against private network devices such as routers, which are often not prepared to defend against this threat.
The main interoperability risk, as always, is if other browser engines do not implement this. Compat risk is straightforward: web servers that do not handle the new preflight requests will eventually break, once the feature ships. The plan to address this is as follows: 1. Send preflight request, ignore result, always send actual request. Failed preflight requests will result in a warning being shown in devtools. 2. Wait for 3 milestones. 3. Gate actual request on preflight request success, with deprecation trial for developers to buy some more time. 4. End deprecation trial 4 milestones later. UseCounters: https://chromestatus.com/metrics/feature/timeline/popularity/3753 https://chromestatus.com/metrics/feature/timeline/popularity/3755 https://chromestatus.com/metrics/feature/timeline/popularity/3757 The above measure pages that make at least one private network request for which we would now send a preflight request.
None.
Gating access to the private network overnight on preflight requests would likely result in widespread breakage. This is why the plan is to first send requests but not act on their result, giving server developers time to implement code handling these requests. Deprecation warnings will be surfaced in DevTools to alert web/client developers when the potential for breakage later on is detected. Enforcement will be turned on later (aiming for 3 milestones), along with a deprecation trial for impacted web developers to buy themselves some more time. Experience suggests a large fraction of developers will not notice the advance deprecation warnings until things break.
This change aims to be security-positive, preventing CSRF attacks against soft and juicy targets such as router admin interfaces. It does not cover navigation requests and workers, which are to be addressed in followup launches. DNS rebinding threats were of particular concern during the design of this feature: https://docs.google.com/document/d/1FYPIeP90MQ_pQ6UAo0mCB3g2Z_AynfPWHbDnHIST6VI/edit#heading=h.189j5gnadts9
Does this intent deprecate or change behavior of existing APIs, such that it has potentially high risk for Android WebView-based applications?
Relevant information (client and resource IP address space) is already piped into the DevTools network panel. Deprecation warnings and errors will be surfaced in the DevTools issues panel explaining the problem when it arises.
Not on Android WebView given previous difficulty in supporting PNA changes due to the lack of support for deprecation trials. Support for WebView will be considered separately.
OriginTrial desktop last | 112 |
OriginTrial desktop first | 109 |
DevTrial on desktop | 98 |
OriginTrial Android last | 112 |
OriginTrial Android first | 109 |
DevTrial on Android | 98 |
TL;DR: We'd like to set up a deprecation trial for the following feature from M109 to M112.
Context: Since M104, we've started sending preflight requests before private network access, but ignoring the preflight result (or the lack of it). After analyzing the URL-keyed metrics, we found that none of them
--
You received this message because you are subscribed to the Google Groups "blink-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to blink-dev+...@chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/blink-dev/CAOC%3DiP%2Bew8hADZkdQ3AO6P9WzfGuzLPp9JjJZqztV5oZmaK8oQ%40mail.gmail.com.
Thanks for pushing this! :)On Fri, Sep 30, 2022 at 5:13 PM Jonathan Hao <ph...@chromium.org> wrote:TL;DR: We'd like to set up a deprecation trial for the following feature from M109 to M112.
What's the timeline for actual enforcement of preflights here? Are you also asking for approvals for that, or would it be covered by a separate intent?
Context: Since M104, we've started sending preflight requests before private network access, but ignoring the preflight result (or the lack of it). After analyzing the URL-keyed metrics, we found that none of them
Can you clarify who "them" is? Is it URLs that fail the preflight?
On Wed, Oct 5, 2022 at 9:34 AM Yoav Weiss <yoav...@chromium.org> wrote:Thanks for pushing this! :)On Fri, Sep 30, 2022 at 5:13 PM Jonathan Hao <ph...@chromium.org> wrote:TL;DR: We'd like to set up a deprecation trial for the following feature from M109 to M112.
What's the timeline for actual enforcement of preflights here? Are you also asking for approvals for that, or would it be covered by a separate intent?Sorry I didn't make it clear. We want to start the enforcement of preflights from M109, but also set up a deprecation trial that websites can sign up if they're affected and need time to fix it.
On Wed, Oct 5, 2022 at 11:30 AM Jonathan Hao <ph...@chromium.org> wrote:On Wed, Oct 5, 2022 at 9:34 AM Yoav Weiss <yoav...@chromium.org> wrote:Thanks for pushing this! :)On Fri, Sep 30, 2022 at 5:13 PM Jonathan Hao <ph...@chromium.org> wrote:TL;DR: We'd like to set up a deprecation trial for the following feature from M109 to M112.
What's the timeline for actual enforcement of preflights here? Are you also asking for approvals for that, or would it be covered by a separate intent?Sorry I didn't make it clear. We want to start the enforcement of preflights from M109, but also set up a deprecation trial that websites can sign up if they're affected and need time to fix it.I think it'd be better to send a separate intent to remove that functionality, to make it obvious to observers that we're talking about a removal.
Did current preflight failures go through deprecation reports or some other means to inform relevant developers?
Do we have means to outreach to impacted developers and inform them about the deprecation trial?
Also, might be better to have the trial enabled before going ahead with the removal.
On Wed, Oct 5, 2022 at 12:00 PM Yoav Weiss <yoav...@chromium.org> wrote:On Wed, Oct 5, 2022 at 11:30 AM Jonathan Hao <ph...@chromium.org> wrote:On Wed, Oct 5, 2022 at 9:34 AM Yoav Weiss <yoav...@chromium.org> wrote:Thanks for pushing this! :)On Fri, Sep 30, 2022 at 5:13 PM Jonathan Hao <ph...@chromium.org> wrote:TL;DR: We'd like to set up a deprecation trial for the following feature from M109 to M112.
What's the timeline for actual enforcement of preflights here? Are you also asking for approvals for that, or would it be covered by a separate intent?Sorry I didn't make it clear. We want to start the enforcement of preflights from M109, but also set up a deprecation trial that websites can sign up if they're affected and need time to fix it.I think it'd be better to send a separate intent to remove that functionality, to make it obvious to observers that we're talking about a removal.Sure, we can do that.Did current preflight failures go through deprecation reports or some other means to inform relevant developers?No deprecation reports, because it would reveal cross-origin information to the fetch client. We surface warnings in DevTools issues and network panels instead.Do we have means to outreach to impacted developers and inform them about the deprecation trial?We have consulted the list of impacted websites through UKMs and found that the majority of uses (out of ~0.1% of page visits affected) look illegitimate - those seem to be precisely the kind of requests we wish to prevent with this change. Out of the remaining websites, only a couple stood out as worth reaching out to given usage metrics. We tried to reach out and finally decided against it for reasons I can explain off-list.Instead, we are updating the PNA preflight blog post on developer.chrome.com to mention the rollout timeline and deprecation trial.Also, might be better to have the trial enabled before going ahead with the removal.For sure. We would like to start the trial as soon as we gather 3 LGTMs here, though it will be useless until 109 rolls out with enforcement enabled. At that point, developers will be able to use dev and beta builds to make sure their websites are correctly enrolled in the trial before stable rolls out.