Put a stop to software espionage by watermarking source code

Put a stop to software espionage by watermarking source code

I suspect someone in my software company is stealing software secrets. I can't seem to catch him or her in any traditional way. Specifically, they are copying entire lines of source code from a remote location and I can't figure out what their intentions might be. Is there a way to tag my coding without it being recognized by my co-workers? I just want to stop this internal espionage as soon as possible.

    Requires Free Membership to View

    When you register, you'll receive targeted emails designed to keep you informed of the most relevant information on Agile development, application security, testing & QA, software requirements, and more.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchSoftwareQuality.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchSoftwareQuality.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

Unfortunately, this happens more often than I'd like to admit and is a serious problem and cause for concern. Luckily there are things you can do to put an end to code smuggling and with luck sometimes you can track where your stolen code is being used. Here is what to do:

You can tag your source code with certain keywords i.e. sourcesource or characters i.e. ##$$, so you can track them down in the future via internal searches, Google, etc. The true reality however is that it is hard to prevent code smuggling without having data leakage prevention controls on each workstation and server. Installing such controls now may not help you with past/existing issues but it can help protect you from future mishaps.

I would recommend reading this chapter excerpt SearchSoftwareQuality promoted, How to make your software tamperproof. Inside you will learn about watermarking and tamperproofing, which is basically checking to make sure all of your coding is in solid, good-working order and then adding characters to personalize it. This makes it very recognizable to the original coder and would confuse others trying to use it of what the function of each line of code is.

This was first published in November 2009