-
Notifications
You must be signed in to change notification settings - Fork 34
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
Add some nuance to 'drop the feature' #72
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ Former Editor: Lukasz Olejnik, Independent researcher, https://lukaszolejnik.com | |
Former Editor: Mike West, Google Inc., [email protected] | ||
Group: tag | ||
Indent: 2 | ||
Markup Shorthands: css no | ||
Markup Shorthands: css no, markdown yes | ||
Abstract: | ||
This document provides help in considering the privacy impact of | ||
a new feature or specification as well as common mitigation strategies for | ||
|
@@ -870,18 +870,39 @@ The audience of this document is general: | |
Drop the feature | ||
</h3> | ||
|
||
The simplest way to mitigate potential negative security or privacy impacts | ||
of a feature is to drop the feature. | ||
Every feature in a spec should be seen as potentially adding security and/or | ||
privacy risk until proven otherwise. | ||
Discussing dropping the feature as a mitigation for security or privacy | ||
impacts is a helpful exercise as it helps illuminate the tradeoffs between | ||
the feature, whether it is exposing the minimum amount of data necessary, | ||
and other possibly mitigations. | ||
Possibly the simplest way | ||
to mitigate potential negative security or privacy impacts of a feature | ||
is to drop the feature, | ||
though you should keep in mind that some security or privacy risks | ||
may be removed or mitigated | ||
by adding features to the platform. | ||
Every feature in a spec | ||
should be seen as | ||
potentially adding security and/or privacy risk | ||
until proven otherwise. | ||
Discussing dropping the feature | ||
as a mitigation for security or privacy impacts | ||
is a helpful exercise | ||
as it helps illuminate the tradeoffs | ||
between the feature, | ||
whether it is exposing the minimum amount of data necessary, | ||
and other possible mitigations. | ||
|
||
Consider also the cumulative effect | ||
of feature addition | ||
to the overall impression that users have | ||
that [it is safe to visit a web page](https://w3ctag.github.io/design-principles/#safe-to-browse). | ||
Doing things that complicate users' understanding | ||
that it is safe to visit websites, | ||
or that complicate what users need to understand | ||
about the safety of the web | ||
(e.g., adding features that are less safe) | ||
reduces the ability of users | ||
to act based on that understanding of safety, | ||
or to act in ways that correctly reflect the safety that exists. | ||
|
||
Every specification should seek to be as small as possible, even if only | ||
for the reasons of reducing and minimizing security/privacy attack surface(s). | ||
|
||
By doing so we can reduce the overall security and privacy attack surface | ||
of not only a particular feature, but of a module (related set of | ||
features), a specification, and the overall web platform. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder a little bit whether it's good to focus particularly on data minimization rather than all the other points in the mitigations section other than this one. (Although "default privacy settings" and "making a privacy impact assessment" don't really feel like mitigations, the others do...)