-
Notifications
You must be signed in to change notification settings - Fork 21
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
Fix #13: Expand Security and Privacy Considerations #33
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 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 |
---|---|---|
|
@@ -33,6 +33,9 @@ urlPrefix: https://w3c.github.io/sensors; spec: GENERIC-SENSOR | |
text: reporting mode; url: reporting-modes | ||
text: auto | ||
text: construct a sensor object; url: construct-sensor-object | ||
text: limit maximum sampling frequency; url: limit-max-frequency | ||
text: reduce accuracy; url: reduce-accuracy | ||
text: mitigation strategies; url: mitigation-strategies | ||
</pre> | ||
|
||
Introduction {#intro} | ||
|
@@ -71,8 +74,32 @@ Examples {#examples} | |
Security and Privacy Considerations {#security-and-privacy} | ||
=================================== | ||
|
||
There are no specific security and privacy considerations | ||
beyond those described in the Generic Sensor API [[!GENERIC-SENSOR]]. | ||
Ambient Light Sensor provides information about lighting conditions near | ||
the device environment. Potential privacy risks include: | ||
|
||
- Information leaks about the user’s surrounding and work habits. | ||
- Profiling. Readout from Ambient Light Sensor can potentially induce | ||
information leaks about the user’s interests, web use and work | ||
habits, as well as the users’ surrounding. This information might be used | ||
to enhance the user profiling and behavioral analysis. | ||
- Cross-device linking and tracking. Access to sufficiently precise readouts | ||
of Ambient Light Sensor potentially enhance cross-device linking | ||
techniques. Such situation may arise if two different devices access web | ||
sites including same third-party scripts that compare lighting levels over | ||
time. | ||
- Cross-device communication. Verbose readout of Ambient Light Sensor could | ||
be applied to receive messages emitted by other devices in nearby | ||
location. A simple messaging method could arise by multiple devices | ||
flashing their screens or camera LEDs and reading out responses with | ||
Ambient Light Sensors. | ||
|
||
To mitigate these Ambient Light Sensor specific threats, user agents should | ||
use the following mitigation strategies: | ||
- <a>limit maximum sampling frequency</a>, and | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should it be "and or"? At the moment, it sounds that UA should use both simultaneously. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See 6cb119e |
||
- <a>reduce accuracy</a> of sensor readings. | ||
|
||
The generic <a>mitigation strategies</a> are described in the Generic Sensor | ||
API [[!GENERIC-SENSOR]]. | ||
|
||
Model {#model} | ||
===== | ||
|
@@ -141,6 +168,8 @@ Paul Bakaus for the LightLevelSensor idea. | |
|
||
Mikhail Pozdnyakov and Alexander Shalamov for the use cases and requirements. | ||
|
||
Lukasz Olejnik for the privacy risk assessment. | ||
|
||
Conformance {#conformance} | ||
=========== | ||
|
||
|
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.
"web use" - Is there such term?
"work habits" - was in previous bullet.
"Information leaks about .... users’ surrounding" - was in previous bullet.
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'll let @lknik comment on this text (a copy-paste from #13 (comment) with some very minor copyediting).
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.
Hello indeed those were too elaborate. Feel free to simplify, i.e.
"work habits" -> "use patterns"
Profiing - you are right, unnecessary repeat.