This question is more or less for Joel Spolsky, but if anyone else has an answer, they are welcome!

If you ship the source code, like in FogBugz [1], and you allow the costumer to modify it; how do you avoid the costumer from unblocking how many users can use it (and thus, destroying your business model)?

[1] I seem to recall when you buy FogBugz you can modify the source code and that they sell it by the user. If that's not correct I'm still interesting in the situation I'm describing and not FogBugz in particular.

link|improve this question

1  
"How to avoid piracy when shipping source code?" - Take off the eye patch and parrot? – Mitch Wheat Mar 3 '09 at 0:51
feedback

closed as not constructive by casperOne Mar 14 at 13:14

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

7 Answers

up vote 6 down vote accepted

We encode a single "license" file that contains information about the customers license (how many users they can create, for example). The rest of the source code is visible and editable, but the one license file isn't. The license file isn't just a bunch of information, but actually contains code used throughout the application.

It is of course possible to go around everywhere and modify places that use the routines defined within the license file, but from our experience, people would rather just pay to upgrade their plan. Considering how often code changes (new releases, new plugins etc) it'd be a really big chore to continuously reverse engineer it.

link|improve this answer
There was a recent question at the podcast where Joel explained what they do with FogBugz and it was essentially this. – J. Pablo Fernández Jan 12 '09 at 14:37
feedback

Include a license agreement with your code.

This is a legal issue, not a technological issue. Most people who end up knowingly stealing software never had any intention to pay for it, so it is misleading to view this theft as lost revenue.

Ask yourself this: If there were a techno-magical solution to prevent unlicensed use (along the lines of Trusted Computing), how much would sales increase? No matter how annoying you make your copy protection, the "thieving scumbag" demographic is never going to be a real moneymaker. However, you can definitely curtail sales in an otherwise lucrative market by incorporating burdensome copy protection.

Instead, focus on making it easy for the average person to acquire and account for the licenses they need. It doesn't need to be ultra-secure, just enough to thwart inadvertent violations. A simple "license key", issued with no questions asked for each new machine, actually simplifies bookkeeping for your business customers.

link|improve this answer
Well put. No need to abuse your best customers with draconian DRM that won't work anyway. – Kiv Jan 1 '09 at 20:28
feedback

In decreasing order of effectiveness:

  • Don't ship through the area around Somalia.
  • Aquire international maritime protection before entering dangerous waters.
  • Use a fast boat.
  • Constant vigilance!

In short:

  • Try to avoid using terms implying murder and violence when describing white-collar crimes.

[posted as wiki-answer to avoid skewing my rep with humour]

link|improve this answer
1  
Thank you. That was roughly my thought as well. – Dave Sherohman Feb 4 '09 at 0:38
awesome answer. I had a question like this - tagged boat-programming and it was a question about piracy. It got deleted unfortunately... – Tim Jul 3 '09 at 0:44
I'm not sure if you're just having fun here or you're seriously objecting to references to murder and violence. If the latter, you must find this a tough field to be in. We're constantly talking about "killing a task", "aborting a process", "destroying an object", etc etc. I think people routinely use violent language like this in many fields -- "that violinist murdered Beethoven last night", "the new pricing policy really cuts our sales reps off at the knees", etc. – Jay Feb 18 '10 at 17:22
1  
@Jay: you are missing the point. When I kill a child (process) I'm not trying to protect my outdated business model from innovation by trying to criminalize breaches of civil law by pouring millions into lobbying instead of innovating. I'm pretty serious about not abusing terms in such a blatant orwellian newspeak way. See also en.wikipedia.org/wiki/Newspeak – David Schmitt Feb 18 '10 at 20:25
1  
@Jay: I will accept that you follow the music industry's kool aid. I still prefer non-exaggerating terms. – David Schmitt Feb 20 '10 at 8:37
show 7 more comments
feedback

Well, I would gather that the customers that Fog Creek cares about would be the ones that are just mildly inconvenienced by the activation step, just enough to purchase the number of of user licenses they require.

The licenses aren't that expensive either.

And then I would gather that the people that would go to lengths in order to get a free copy of Fog Bugz would probably not be worth any time at all for Fog Creek to consider, much less work hard to counter.

link|improve this answer
feedback

I'm not sure whether you're asking how to crack Fogbugz (or why people is not actively cracking Fogbugz), or how to protect your own software, so i'll answer both.


Fogbugz in particular has a couple mystical DLLs that do license control, and a few other vital things... (Most web based commercial software that you host in your own server work like this, with varying degrees of ASP/Compiled ratios)

Now, you can theoretically find all the calls from ASP into DLLs, and re-wire/re-write them, in the cases where the DLL just does license control.
There's also a Windows service... I'm not sure how vital it is to the workings of the system, but it's definitely compiled (although it seems to be .Net, so it's easier to decompile and crack).

And as usual, you can disassemble the DLLs and just crack them. But it's probably more work than the cost of the licenses.


Now, on the lines of protecting your own software...

The one thing that Fog Creek does, that in my opinion is INCREDIBLY smart, and it's also probably the main reason why Fogbugz isn't cracked, is to just not give you the source code for free in the first place.
This is resourcefully expensive to pull off the first time, but it seems to me like it's very effective.

You HAVE to buy at least ONE license to get your hands on the product and start checking it out. You can't just download a free version and try to crack it, as with a lot of software out there.

Now, the reason I say this is expensive to pull off is that to be able to actually sell your software, it's a very good idea to let people try it before buying. And the only way to do that without having them download it is to provide it in a hosted environment (like Fogbugz On Demand).

Which is not exactly rocket-science if your software is already browser-based, but if you have a product that people just download and install, then the extra effort to also host it yourself, and automatically add instances (create databases, users, etc, etc) as people request demos, etc, etc is non-trivial.

I'm really curious what they did from the "demo" point of view before OnDemand existed.

Just my 2 cents.

link|improve this answer
feedback

(original answer removed)

Update: Joel Spolsky in one of his podcasts was talking about this. The trick is to price your software the way that it's easier for employee (developer) to go through company's ordering process than fiddling around with source code. If your software is expensive, you will need to make your source code more difficult to crack.

Of course there will be still some companies that make it so hard for employees to purchase any expensive software whatsoever that any kind of protection will fail no matter what if employees really need it.

So selling the software for lower price is probably the key.

link|improve this answer
Inadvertant piracy by businesses is fairly common. If you have no controls on usage an individual at a company will often copy software rather than go through the company's ordering process. – DJClayworth Mar 2 '09 at 22:54
you're right. joel spolsky was talking exactly about this and it makes sense. – lubos hasko Mar 3 '09 at 0:40
feedback

Easy way could be to have a module linked via Fog Creek servers. If this downloadable piece of code is not available [this may well be used to check your license], the application refuses to work :)

In essence, even if you possess the source code, all you will know is the URL from which the code module is downloaded. If the software verifies for a signature, even subverting the URL wouldn't work.

link|improve this answer
Unless you comment out the verification section... – ine Nov 15 '08 at 0:02
So what happens when the internet is broken ? – mP. Aug 23 '09 at 1:42
@mP: Allow access for sometime (say a week) and then refuse to work – Vyas Bharghava Aug 29 '09 at 4:30
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.