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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Do Parse's secret URLs provide reasonable security?

10 点作者 kabell超过 12 年前
I am considering using Parse for a web/mobile app, and it appears that they use "secret urls" as the primary security measure for accessing parse files. Obviously this isn't SUPER secure, but it does seem to be a fairly common way to limit access to, say "private photos" (e.g. flickr does it). Would you consider this "commercially reasonable" attempt to protect private data?

2 条评论

hnwebservices超过 12 年前
This method seems fine for protecting data as far as I can tell.<p>I would definitely recommend using https though because only the hostname is sent in plain text, the URL should be fully encrypted in an https request.<p>On the other hand, I'm not sure how reasonable this method is from a liability perspective. If a client accidentally forwards a secure url to someone who causes them to lose money, then there might be a chance that you could be liable for not securing your product effectively.
logn超过 12 年前
There might be more attack vectors with this, but generating a long random string is the basis of a lot of security mechanisms.