Can you hide data in text? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:17:41Z http://stackoverflow.com/feeds/question/345562 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/345562/can-you-hide-data-in-text 3 Can you hide data in text? Guy 2008-12-06T00:03:39Z 2009-05-01T00:41:27Z <p>I wish to put some text on a page and hide some data in that text. Does anybody know of any methods / patterns that have been used in the past to solve this problem?</p> <p>Example: I have the following text: "The cat sat on the dog and was happy."</p> <p>I also have the number 123. I want to hide this number in that sentence such that the sentence can be placed on a web page and only someone in the know would be able to find the data.</p> http://stackoverflow.com/questions/345562/can-you-hide-data-in-text/345567#345567 0 Answer by Gunny for Can you hide data in text? Gunny 2008-12-06T00:06:31Z 2008-12-06T00:06:31Z <p>Well, you could try something like <a href="https://www.spammimic.com/" rel="nofollow">this</a>...not sure if that's exactly what you're looking for, though.</p> http://stackoverflow.com/questions/345562/can-you-hide-data-in-text/345569#345569 0 Answer by dicroce for Can you hide data in text? dicroce 2008-12-06T00:07:12Z 2008-12-06T00:07:12Z <p>There may be an algorithm that can turn that sentence into 123, but I think in general you're going to need to accept some modifications to the text if you need to store any possible numerical value!</p> http://stackoverflow.com/questions/345562/can-you-hide-data-in-text/345573#345573 2 Answer by torial for Can you hide data in text? torial 2008-12-06T00:08:08Z 2008-12-06T00:08:08Z <p>I think at a high level what you are talking about is steganography. <a href="http://en.wikipedia.org/wiki/Steganography" rel="nofollow">http://en.wikipedia.org/wiki/Steganography</a></p> <p>The section on modern techniques should get you started: <a href="http://en.wikipedia.org/wiki/Steganography#Modern_steganographic_techniques" rel="nofollow">http://en.wikipedia.org/wiki/Steganography#Modern_steganographic_techniques</a></p> http://stackoverflow.com/questions/345562/can-you-hide-data-in-text/345575#345575 1 Answer by Jeremy Wiebe for Can you hide data in text? Jeremy Wiebe 2008-12-06T00:08:12Z 2008-12-06T00:08:12Z <p>I think what you're looking for is something called Steganography. Corinna John has an excellent collection of articles on the subject up on CodeProject.</p> <p><a href="http://www.codeproject.com/script/Articles/MemberArticles.aspx?amid=475133" rel="nofollow">http://www.codeproject.com/script/Articles/MemberArticles.aspx?amid=475133</a></p> http://stackoverflow.com/questions/345562/can-you-hide-data-in-text/345584#345584 6 Answer by Lasse V. Karlsen for Can you hide data in text? Lasse V. Karlsen 2008-12-06T00:10:30Z 2008-12-06T00:18:06Z <p>Of course this can be done.</p> <p>What you are describing is in a broad description called <a href="http://en.wikipedia.org/wiki/Steganography" rel="nofollow">Steganography</a>.</p> <p>For instance, you might encode a number in such a way that you count the number of words until you see the letter B, in which case 123 could be encoded as:</p> <pre><code>You belong to the beautiful group of people being elite. </code></pre> <p>The thing is, the person wanting to decode your <em>message</em> must know your algorithm.</p> <p><strong>Edit</strong> I notice that my numbers are off by one. Start counting at 0 and you'll see the number 123.</p> http://stackoverflow.com/questions/345562/can-you-hide-data-in-text/345585#345585 0 Answer by Brabster for Can you hide data in text? Brabster 2008-12-06T00:10:45Z 2008-12-06T00:10:45Z <p>If the 'text' was actually an image, then you could hide data in that using <a href="http://lifehacker.com/software/privacy/geek-to-live--hide-data-in-files-with-easy-steganography-tools-230915.php" rel="nofollow">steganography</a> - the data is hidden in the binary image file without affecting the way the image looks.</p> http://stackoverflow.com/questions/345562/can-you-hide-data-in-text/345598#345598 0 Answer by VonC for Can you hide data in text? VonC 2008-12-06T00:14:38Z 2008-12-06T00:14:38Z <p>According to this <a href="http://www.watermarkingworld.org/WMMLArchive/0112/msg00024.html" rel="nofollow">thread</a>:</p> <p>Prof. <a href="http://www.cs.purdue.edu/people/faculty/mja/" rel="nofollow">Mikhail Atallah</a> et. al. here at Purdue did a lot of research on <strong><a href="http://www.springerlink.com/content/3qxf4rjkh7pecqu6/" rel="nofollow">watermarking text</a></strong>.</p> <p>The approach uses TMRs (<a href="http://crl.nmsu.edu/Research/Projects/mikro/htmls/oldstuff-htmls/tmr-intro.html" rel="nofollow">Text Meaning Representation</a>) of phrases to encode bits by performing minor transformations positioning the TMR at a certain distance from a defined canonical form.</p> <p>(another method to watermark text is <a href="http://www.google.fr/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.cs.usyd.edu.au%2F~vip2000%2Fpapers%2Fhuang_watermark.doc&amp;ei=HcQ5SdWEBoau0gWtz-mxBQ&amp;usg=AFQjCNEtvP45_vSuDrn8XOOBljY0U69LxQ&amp;sig2=hXqGIxwm-UEFjcvn3qqbeg" rel="nofollow">presented here</a>)</p> <p>It may be another way to hide text within text, along with the Steganograph method described in the other answers.</p> http://stackoverflow.com/questions/345562/can-you-hide-data-in-text/346085#346085 3 Answer by Jon Skeet for Can you hide data in text? Jon Skeet 2008-12-06T08:18:43Z 2008-12-06T08:18:43Z <p>HTML makes it quite easy to do this, actually. No need for really cunning amounts of steganography, etc. Let's see:</p> <p>This sentence embeds 123 and then stops embedding.</p> <p>This sentence embeds 0102 and then stops embedding.</p> <p>(We'll have to see whether it actually works in markdown, but I suspect so.) Admittedly it's pretty obvious if you know that there's <em>something</em> to look for, but I think you'll agree it's not obvious to casual observers.</p> <p>I've left it as a little puzzle to work out the scheme, but add a comment if you want it to be explicitly explained.</p> http://stackoverflow.com/questions/345562/can-you-hide-data-in-text/349152#349152 1 Answer by Mecki for Can you hide data in text? Mecki 2008-12-08T10:50:50Z 2008-12-08T10:50:50Z <p>There are very complicated approaches to this problem, however you can probably go with a very simple one. E.g. define an adjective for every number:</p> <pre><code>0. beautiful 1. harmless 2. evil 3. colorful 4. weird </code></pre> <p>and so on. Now select sentences of your choice and put place holders into the sentences where adjectives belong.</p> <pre><code>"The {adj} cat sat on the {adj} dog and the {adj} cat was happy." </code></pre> <p>Your number is 123, so your sentence is</p> <pre><code>"The harmless cat sat on the evil dog and the colorful cat was happy." </code></pre> <p>A parser can easily take the sentence, split it up into words, find adjectives on the table above, and convert them back to numbers.</p> <pre><code>The -&gt; ? harmless -&gt; 1 cat -&gt; ? sat -&gt; ? on -&gt; ? the -&gt; ? evil -&gt; 2 : </code></pre> <p>at the end you have 123 again.</p> <p>As soon people know that there is information hidden in the sentence, the algorithm is easily broken. You can make it harder to break if you add variation by defining multiple adjectives per number. Instead of</p> <pre><code>1. harmless </code></pre> <p>you can define</p> <pre><code>1. harmless/stupid/blue/fashionable </code></pre> <p>when you need to encode 1, randomly pick any of the words above. As these all map to the number 1, the reverse parser won't care which of the words is printed there, the result will always be one. This randomization will make it harder to reverse engineer the algorithm.</p>