TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Why do app permissions tell what is accessed and not what is transmitted?

8 点作者 tangerine_beet超过 5 年前
Why do permissions of apps listed in Google Play, as well as Firefox extensions, etc., tell what data the app can access but never whether or not the data is actually transmitted from your computer to the developer or a 3rd party? As a user, I find it frustrating to read "This app/extension can access your data for all websites" because I can understand why the functioning of some apps would need access to such data, but not necessarily need to send it to a remote server. I understand Google and Mozilla execute some kind of vetting process for their apps/extensions. Is it impossible to detemine by automated analysis of code whether or not the apps send user data to a remote server?

1 comment

sebst超过 5 年前
Simply because technically you can block access to specific parts of data relatively easy.<p>To limit what is being transmitted, you&#x27;d have to not only inspect the submission, but also think of any obfuscation method.<p>So, if your browser asked you to limit transmission of certain parts of data, you as a user could not rely on that info, because a malicious app developer could easily circumvent the limitation.