Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proposal: the application must belong/covered to the HSTS preload list (probably level 3) #1941

Open
elarlang opened this issue Apr 30, 2024 · 28 comments · Fixed by #1952
Open
Labels
1) Discussion ongoing Issue is opened and assigned but no clear proposal yet Community wanted We would like feedback from the community to guide our decision otherwise we will progress next meeting Filter for leaders V50 Group issues related to Web Frontend _5.0 - prep This needs to be addressed to prepare 5.0

Comments

@elarlang
Copy link
Collaborator

The topic is discussed before - #966, but as there is offtopic noise, I open a new issue.

Problem to solve: if the browser makes the first HTTP request to the application domain, it must be forced over HTTPS connection. That can be achieved by registering the main domain (if not covered by TLD) to the HSTS preload list.

Note, that just adding the preload directive into the Strict-Transport-Security HTTP response header does not have any effect. Although related, it also means, that the requirement does not fit the section "V50.2 Browser Security Mechanism Headers". As it is browser related, it should belong to the paragraph "V50 Web Frontend Security".

Now the challenge is how to write it as a requirement. We can not ask the application hostname to be in the preload list. It can be covered by the main domain or by the TLD (.dev)

@elarlang elarlang added the V50 Group issues related to Web Frontend label Apr 30, 2024
@tghosth tghosth added 1) Discussion ongoing Issue is opened and assigned but no clear proposal yet _5.0 - prep This needs to be addressed to prepare 5.0 labels May 5, 2024
@tghosth
Copy link
Collaborator

tghosth commented May 5, 2024

This is quite high effort for a relatively small benefit (basically the first website load per browser)

Not sure I would want to mandate it.

@elarlang
Copy link
Collaborator Author

elarlang commented May 5, 2024

basically the first website load per browser

Just in case - it is valid only for one application context.

HSTS preload covers a larger scope than just one application, it's more a company or organization-level guarantee, that everything goes over HTTPS.

@jmanico
Copy link
Member

jmanico commented May 5, 2024 via email

@elarlang
Copy link
Collaborator Author

elarlang commented May 5, 2024

It is not organization wide when an organization manages multiple domains.

Oh well. My point is, that the company or organization can manage larger risks at once by adding an entire domain to the HSTS preload list.

In my opinion, banks, governments, etc should have it set. Is it worth a requirement - I think a level 3 requirement would be reasonable, but I'm ok with a recommendation row as well.

It must be deployed on a domain-by-domain basis.

It may also include TLD.

@tghosth
Copy link
Collaborator

tghosth commented May 6, 2024

I'm leaning towards a recommendation. Aside from anything else there is also the "bricking" risk if it is done unwisely.

@tghosth
Copy link
Collaborator

tghosth commented May 6, 2024

Opened #1952

@elarlang elarlang added the next meeting Filter for leaders label May 7, 2024
@tghosth tghosth removed the next meeting Filter for leaders label May 9, 2024
tghosth added a commit that referenced this issue May 9, 2024
* Add a recommendation on the HSTS preload list to resolve #1941

* Clarify wording
@elarlang
Copy link
Collaborator Author

I was thinking more about it and I'm leaning towards level 3 requirement, I think recommendation is not enough.

From @tghosth

This is quite high effort for a relatively small benefit (basically the first website load per browser)

What I did not point out clearly, is that without HSTS preload it is possible to serve any HTTP service from the Same-Site scope with the critical application. This is a way more important vector to eliminate compared to the first HTTP request to the application.

Let's say there is an application served from https://www.bank.tld and an attacker can serve http://random.bank.tld from their own-controlled or manipulated network. Same-Site scope means, that you can write cookies, which are valid for any *.bank.tld site, and if cookies do not use the __Host- prefix, you can manipulate cookie values for any application in the scope (using the same name, the same domain, and matching path).

Does it change your mind, @tghosth ?

@elarlang elarlang reopened this May 17, 2024
@jmanico
Copy link
Member

jmanico commented May 17, 2024 via email

@tghosth
Copy link
Collaborator

tghosth commented May 19, 2024

@elarlang if I understand correctly, the main problem here is that the domain does not have HSTS with sub-domains set at https://bank.tld

If it did have that (and the user was guaranteed to get there on first load), then your scenario would only work if the user had never been to https://bank.tld before.

Is that correct?

See for example that when you browse to https://www.stripe.com, the very first thing it does is redirect you to https://stripe.com which has an HSTS header

image

image

@elarlang
Copy link
Collaborator Author

If it did have that (and the user was guaranteed to get there on first load), then your scenario would only work if the user had never been to https://bank.tld/ before.

Is that correct?

The boolean answer is true, but it requires some context.

For this "guaranteed redirect scenario" through the main domain, the preload directive is not even needed to cover all subdomains.

But if you do so, then any given arguments against preload are also taken down - in this case you also need to have all (including internal) services using correct certificates and served over https:.

The main topic here is that it is easy to understand and implement if it is www.site.tld and you redirect through site.tld. You don't get that covered from all subdomains, e.g. selfservice.site.tld, backoffice.site.tld etc.

But @tghosth - just in case, you asked a question, but what was your point and message behind that?

I was thinking about it more and actually, there is a good question, is it in the scope for the application, which is served from backoffice.site.tld, as it requires configuration somewhere else? On the other hand, it is in the scope from "architecture choices" point of view, that you need to be sure you serve only trusted services from same-origin and same-site scope.

@tghosth
Copy link
Collaborator

tghosth commented May 19, 2024

I was thinking about it more and actually, there is a good question, is it in the scope for the application, which is served from backoffice.site.tld, as it requires configuration somewhere else? On the other hand, it is in the scope from "architecture choices" point of view, that you need to be sure you serve only trusted services from same-origin and same-site scope.

So this complexity makes me feel even more uncomfortable about mandating HSTS at the root tld level. The number of moving parts to implement HSTS and preload at the site.tld level might be to large, even for L3.

@elarlang elarlang added the next meeting Filter for leaders label May 19, 2024
@elarlang
Copy link
Collaborator Author

I agree, that effort can be huge for some legacy systems, when you have "mess in the house".

At the same time, for new organisations and application, it must be cornerstone for building things.

The price is clear - control over Same-Site scope. Then no-one can use trusted domain for phisnig (yes, it does not stop phising), no cookie manipulation for apps, no cookie leakage for apps (in case those are misconfigured with Domain=.site.tld).

Also note, that we give similar direction with other requirement:

50.1.1 [ADDED, DEPRECATES 3.4.5] Verify that separate applications are hosted on different hostnames to benefit from the restrictions provided by the "same-origin policy" including how documents or scripts loaded by one origin can interact with resources from another origin and hostname restrictions on cookies.

Me and you can theorize here further, but I think we need some additional views. Probably it's worth asking in social media, why big companies use or don't use the preload directive. Maybe there are some new arguments to discover.

@tghosth tghosth added the Community wanted We would like feedback from the community to guide our decision otherwise we will progress label May 20, 2024
@tghosth
Copy link
Collaborator

tghosth commented May 20, 2024

OK so I think these are our possible suggestions:

  1. HSTS preload at the top level (i.e. site.tld) with the subdomains attribute should be a recommendation.
  2. HSTS preload at the top level (i.e. site.tld) with the subdomains attribute should be an L3 requirement.
  3. The app should always redirect to the top level (i.e. site.tld) which should have HSTS configured with the subdomains attribute (but we don't mandate preload).
  4. HSTS preload for the application domain with the subdomains attribute should be an L3 requirement.

If I understand correctly, you support 2) and I am most incline to support a combination of 1) and 4).

Do you agree with my interpretation? If so, I will try and get wider feedback.

@elarlang
Copy link
Collaborator Author

I think we have only 2 options - 1 and 2.

Option 3 is something that I could call the "development stage" for implementing HSTS preload. The entire redirection thingy seems risky, but - technically, (I have not tested it) - is there a navigation request required to have the HSTS statement set to the browser, or for example, loading an image is enough? E. g. if from application.domain.tld there is HTML at the beginning of the document:

<img src="https://domain.tld/preload.jpg">

Option 4 is not supported by HSTS preload list. If you try to check the subdomain (which is not www., you'll get an error message:

subdomain.domain.tld is a subdomain. Please preload domain.tld instead. (Due to the size of the preload list and the behaviour of cookies across subdomains, we only accept automated preload list submissions of whole registered domains.)

Note: "...with the subdomains attribute" - using the preload directive requires, that includeSubDomains is set

The includeSubDomains directive must be specified.

So, in my opinion - our options are simple - should we only recommend it or can we require it?

For the perspective - most likely the new ASVS version will be valid for "non-braking-changes" for many years, this is something to keep in mind.

@elarlang
Copy link
Collaborator Author

elarlang commented May 20, 2024

From my point of view, the question should be: Are there any valid reasons not to have HSTS preload as a requirement?

Context: level 3 requirement for applications with critical business value and/or highly sensitive data.

@tghosth
Copy link
Collaborator

tghosth commented May 20, 2024

Ok so the basic question is, should HSTS preload at the top level domain be a L3 requirement or a recommendation?

Curious to see what @jmanico @ryarmst @Sjord @ImanSharaf @EnigmaRosa @csfreak92 @meghanjacquot have to say

@elarlang
Copy link
Collaborator Author

My mindset for requirements that may be difficult or complicated for legacy systems.

Legacy systems are built in their time and are expected to be not compatible by default with new requirements. It is the same way everywhere - take for example requirements for new cars, requirements for building new houses, etc. There are reasons for having new requirements.

If those new requirements are reasonable to require for new systems that are built today and from scratch, we should have those requirements in. We don't need to legalize old and insecure systems to be compatible with new standards.

@jmanico
Copy link
Member

jmanico commented May 20, 2024 via email

@randomstuff
Copy link

See https://hstspreload.org/ :

If you maintain a project that provides HTTPS configuration advice or provides an option to enable HSTS, do not include the preload directive by default. We get regular emails from site operators who tried out HSTS this way, only to find themselves on the preload list by the time they find they need to remove HSTS to access certain subdomains. Removal tends to be slow and painful for those sites.

This might be a good reason for not mandating this.

@elarlang
Copy link
Collaborator Author

This might be a good reason for not mandating this.

I watch a bit differently - it says clearly, do not include it by default. It is recommendation about the process, how to implement HSTS preload into your infrastructure. It does not say "don't use it".

@randomstuff - The main question for me is from (#1941 (comment)): is there any good reason to say, that why you should not use it when you start building your company or organization from a blank page e.g. you don't have any legacy to carry? What is your opinion on this?

@tghosth
Copy link
Collaborator

tghosth commented Jun 2, 2024

Ok so both @elarlang and @jmanico say it should be a requirement so I am ok to go with that.

@elarlang do you want to open a PR to V50?

@Sjord
Copy link
Contributor

Sjord commented Jun 3, 2024

There is a tradeoff here where requiring HSTS preload can lead to worse security.

For example, bank.tld has a customer portal on my.bank.tld and a legacy application on legacy.bank.tld. They cannot put HSTS preload on bank.tld, as that would break their legacy application. However, ASVS L3 says that their company portal should have HSTS preload. The "solution" is to move it to another domain, mybankonline.tld, and enable HSTS preload there. However, this is exactly what a phishing attack looks like: a similar but different domain, which makes it impossible to verify if the customer portal is actually owned by bank.tld. So this would give the wrong signal to customers, that not only bank.tld is trustworthy, but other domains that look similar as well.

This is not uncommon in the real world, for example with microsoftonline.com being an actual Microsoft domain. But I think this is not desirable from a security perspective.

@jmanico
Copy link
Member

jmanico commented Jun 3, 2024 via email

@Sjord
Copy link
Contributor

Sjord commented Jun 3, 2024

An alternative way to use HTTPS immediately (including the first request) is to use a HTTPS RR DNS record. This is pretty new, but seems to be supported by Chrome and Firefox. This is specific to domains instead of sites, solving the tradeoff I mentioned earlier. I feel like this scales better and is more flexible, since site administrators can configure this themselves instead of requesting a change in the preload database. Of course, DNSSEC is required for optimal security.

@jmanico
Copy link
Member

jmanico commented Jun 3, 2024 via email

@elarlang
Copy link
Collaborator Author

elarlang commented Jun 3, 2024

Hi @Sjord,

as I understand, then domain based solution does not solve the "control your same-site scope" effect. Correct? (See my comment here: #1941 (comment))

I don't want to have too much impact from "Let's do the legacy legal" behavior and I have the question to you: Is there any good reason to say, that why you should not use HSTS preload when you start building your company or organization from a blank page e.g. you don't have any legacy to carry? What is your opinion on this?

@jmanico
Copy link
Member

jmanico commented Jun 3, 2024 via email

@tghosth
Copy link
Collaborator

tghosth commented Jun 11, 2024

Yeah it does seem like HTTPS RR doesn't solve the problem that elar mentions in his comment: #1941 (comment)

Is that correct @Sjord?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
1) Discussion ongoing Issue is opened and assigned but no clear proposal yet Community wanted We would like feedback from the community to guide our decision otherwise we will progress next meeting Filter for leaders V50 Group issues related to Web Frontend _5.0 - prep This needs to be addressed to prepare 5.0
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants