TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

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

6 pointsby twa927almost 9 years ago
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 comments

joshdevalmost 9 years ago
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.
twa927almost 9 years ago
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.
mbrockalmost 9 years ago
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>
throwaway2016aalmost 9 years ago
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.
alkchralmost 9 years ago
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>
notduncansmithalmost 9 years ago
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.
hakanderyalalmost 9 years ago
Since the hardware is under control of the provider, there isn&#x27;t any practical way to <i>really</i> ensure anything.