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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Proof that SaaS is running specific source code checkout?

6 点作者 twa927将近 9 年前
There are SaaSes with open sourced code, claiming the benefits coming from this: the code can be reviewed by anyone (to check for backdoors/security issues). However, it looks to me it's impossible to prove that the actual SaaS is running specific source code checkout. The open sourced code is just a static dump and the service is a dynamic "black box". Do you know any approach to resolve this?

7 条评论

joshdev将近 9 年前
Based on my experience with SaaS, those that do offer Open Source software, are only open sourcing the core of their product. There is typically a whole suite of tools and add ons that expand their core offering into something that makes it more beneficial for companies to just go with the SaaS offering. Deployment and monitoring are two pieces that come to mind.
twa927将近 9 年前
One possibility would be to have a third-party service that would handle the instantiation of a service from some declarative description. Say, you specify a docker container and the service would run it and would tell the given server is running as the specific docker container. (so it would depend on the authority of the service).<p>However, you wouldn&#x27;t have a possibility to &quot;log in&quot; to a container or interfere with it in any deep way, because it would break the concept.<p>I think that the &quot;serverless&quot; concept already treats the running service as an immutable thing so probably adding the proof of running from a specific checkout would be easier there.
mbrock将近 9 年前
GNU has a page about the problems of SaaSS (&quot;Service as a Software Substitute&quot;) going into the problems you mention.<p><a href="https:&#x2F;&#x2F;www.gnu.org&#x2F;philosophy&#x2F;who-does-that-server-really-serve.en.html" rel="nofollow">https:&#x2F;&#x2F;www.gnu.org&#x2F;philosophy&#x2F;who-does-that-server-really-s...</a>
throwaway2016a将近 9 年前
While I agree with another commenter that in all likelihood it isn&#x27;t running the same software but rather the core is opened sourced and they have proprietary value added tools.<p>For example, many OSS SaaS products I&#x27;ve seen have an open source version that only supports running a single user or single company but their deployed SaaS version is multi tenant.<p>So if you&#x27;re really concerned about SaaS products slipping in back doors or something like that that defeats the &quot;publicly audit-able&quot; condition (if I&#x27;m reading your concern right) you can&#x27;t do anything about it except run the OSS code yourself and not use the SaaS.
alkchr将近 9 年前
There was a similar discussion on HN. And somebody posted a link to the &quot;CloudProxy Tao for Trustworthy Computing&quot; [1]. I have no idea how it works though.<p>[1]: <a href="https:&#x2F;&#x2F;github.com&#x2F;jlmucb&#x2F;cloudproxy" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;jlmucb&#x2F;cloudproxy</a>
notduncansmith将近 9 年前
It&#x27;d be expensive to run a full SaaS, but technically you could do it on Ethereum, and the execution would be verified by the blockchain.
hakanderyal将近 9 年前
Since the hardware is under control of the provider, there isn&#x27;t any practical way to <i>really</i> ensure anything.