I know Calibre can remove DRM, but it seems that Calibre does not remove things like watermarks, references to the buyer by name, etc. Now maybe I can try to find those manually, but that is an error prone process. Plus, what if they embed a unique digital signature that ties back to me? I understand that this is a very uncommon practice, but I do not want to find myself in a bad place.

I suppose the only way to remove a digital signature of any sort is to buy two of the same e-book by different people, diff them, and remove anything that differentiates them.

Is there any tool that does this or automates the process? am I being too paranoid, and this is not a real threat?

  • Olivia
    link
    fedilink
    English
    582 months ago

    The bad news is that uploading e-books will involve programming on your part (for your sanity at least).

    The good news is that it should be far easier than other mediums.

    If you are approaching from a complete safety perspective (cause you live in a fiefdom that owes tribute to the publishers guild), then you’re going to want to OCR the pages of the book and use the text to make a brand new book free from metadata. I’m pretty sure a python crash course could get you up and running in a month or 6.

    If you want what’s closest to the original product, then you’ll need a python script that strips everything from the book into just a text document, then re-convert back into your own book. You’ll have to review the text document to see if any random code was included in the book like invisible text.

    Both options are so simple from a programming perspective that I’ve never seen scripts to strip e-book protections. A real (the solution is left un-worked as a challenge for the reader). And from what I know, the publishers have switched to focusing on selling hard copies as their bread and butter, and striking deals with libraries for other revenue. Big money is still in mandatory university textbooks.

    Source: Never actually done what you’re asking for

    • @matcha_addictOP
      link
      English
      282 months ago

      Thanks for your advice. I am a programmer by craft so I can definitely do that. I think the only issue may be books with any important content that is not text, i.e. graphics and images (and unfortunately, many of the books I am interested in have that). If I understood what you said correctly.

      • Lemongrab
        link
        fedilink
        English
        122 months ago

        Pymupdf has options to handle images. Good package.

            • @FierySpectre@lemmy.world
              link
              fedilink
              English
              82 months ago

              There are so many ways to encode information into an image without changing its look that I doubt you’ll find most of them by “changing levels”

              • @conciselyverbose@sh.itjust.works
                link
                fedilink
                English
                32 months ago

                I’d personally be a lot more likely to blur and add random noise, then use lossy compression if I wanted to mitigate steganography, but even then, they don’t need to encode a lot of information and they have a base image and secrets to compare to. It’s entirely possible for them to have chosen something reasonably robust through random edits like that.

          • Lemongrab
            link
            fedilink
            English
            22 months ago

            Theoretically, yes. Handling of images programmatically could allow for some simple lossy compression which would help.

      • @Kindness@lemmy.ml
        link
        fedilink
        English
        22 months ago

        gImageReader or ocrmypdf will get you the pdf text, but after the text will need fiddling with and cleaning. Use LibreOffice, languagetool, write-good, etc to make finding the oddballs easy.

        pdftk is what you want for editing pdf metadata.

        Gimp is what you’ll need for editing images, Looking for watermarks, smoothing edges, lowering quality, introducing random noise, etc.

        exiftool is what you’ll need for image metadata. Or take a screenshot, add a bit of noise or de-noise, and add back to the new pdf.

        Scrivener or LibreOffice if you want to polish/republish, though that’s a ton of work.

    • @reddithalation@sopuli.xyz
      link
      fedilink
      English
      82 months ago

      I converted a pdf book scan to epub with tessaract ocr and calibre, it didn’t need any programming, but the end result did have a typo every few paragraphs. Most were very similar to each other though, so a few hours cleaning it up would’ve made it pretty readable.

    • Redjard
      link
      fedilink
      English
      52 months ago

      Even with OCR, couldn’t your copy at least in theory be laced with strategically placed minor word changes? Say throughout the book you pick 30 spots to change a word without changing the meaning of the text, or you introduce a typo. If every copy gets a different set of those that would be a unique identifier.
      I think I have heard that being done with imperceptable changes in films sent for showings in theaters.

      • Olivia
        link
        fedilink
        English
        62 months ago

        @matcha_addict@lemy.lol In this situation, I’d advise acquiring a copy from an alternative source, then just compare the texts of the two.

        In practicality though, if you’re already going the OCR route then just utility knife cut the pages from a real book and feed them into a feeder scanner. All they get to know is that some asshole cyberpunk script kiddie jacked your book while you were waiting at a bus stop.

  • @smb@lemmy.ml
    link
    fedilink
    English
    282 months ago

    have a look on “snowdrop” (search together with “steganography”), its basically the opposite of what you want, but worth mentioning here. watermarks could be placed into whitespace (not limited to actual spaces or linebreaks, intentionally changed usage of paragraphs, tabs or even page boundaries could possibly be detected after scanning andeven after OCR. IMHO snowdrop uses -depending on choosen operation mode- small errors like misspelled words, commata etc but also has a mode that comes along with fine grammar and without misspelled words…

    how do you make sure that by diff’ing two versions you do cover "everything’ that has been deliberately placed into both documents but share literally the same informations?

    lets say you bought two books at two different stores with two different watermarks. if the watermark contains the date and time of the purchase and the only difference of this were the minutes because you bought them within the same hour, the remaining watermark would point to all buyers that bought exactly this book in this hour - worldwide. but still it could be “very” precise depending on all other(!) buyers, if they exist at all within that timeframe. what if the watermark includes unix epoch? then the part which is the same in both watermarks would not be bound by hours, but by seconds, 10seconds, 100seconds etc.

    and you could not know if there were other watermarks hidden that just happened to be the same for your two (three.?) purchases (same country, continent, payment method, credit card holder name, name of internet provider used during purchase, browser used etc.) it fully depends on the creator of the watermark what would be included and what not. if you happem to know all that (without any possibleexemptions) you might be on the safe side, but if not…

    my general suggestion here is:

    • if you want to be sure to not getting into trouble, then just don’t do it.
    • if that book is too expensive compared to its content, just not buying it possibly also helps the market to fix the problem.
    • save that time and instead help those who already fight for a better world.
    • search already licence free books (or such as “cc” licensed) and promote those instead, help improving free resources like openstreetmap, wiki* but do not publish licence-poisoned content there, wtite it yourself, alway.
    • write your own book and publish it free.

    just to mention… the “safe” side sometimes seems limited but maybe is actually not, if you really look at it.

    • @matcha_addictOP
      link
      English
      82 months ago

      Diffing should reveal any differences, even white space. I suppose with white space it may be harder to fix, as you have to figure out the neutral state. But it is still possible.

      Regarding the time stamp, I actually did think of this and you’re right. It would work especially for a small online bookstore. I believe the two books just have to be bought at very different times and ideally different other things, like people with different last name and even general location of billing address.

      Regarding your other points… You make good points, so I will consider.

      • @smb@lemmy.ml
        link
        fedilink
        English
        3
        edit-2
        2 months ago

        i have to admit, that my point ‘just don’t do it’ in reality does not garantee to prevent any trouble. it still is possible to be sued for things someone else did.

        also one suggestion to think about:

        if the seller just sprays some random changes over a book for every sold version, one would have differences in “every” sold version to every other sold version. by blindly changing those parts to something else you could reveal which exact two/three versions you had for diffing.

        UPDATE: someone else here had the same thought a bit earlier…

        my suggestion to not do it stays the same ;-)

        it could be interesting to figure things out how they work, what could be done to prevent or circumvent such prevention, but actually doing it seems risky no matter what.

  • @strahlemann@feddit.de
    link
    fedilink
    English
    202 months ago

    buy the same book with another account and compare them. then you should be able to find out where the fingerprint is.

  • @viking@infosec.pub
    link
    fedilink
    English
    182 months ago

    Just use calibre to change the format to rtf or even txt, and then back to mobi or epub, and poof.

    Neither of those formats store any significant metadata, with rtf the original formatting gets preserved though.

    • calm.like.a.bomb
      link
      fedilink
      English
      282 months ago

      This is such a bad idea! The formatting will be lost and the resulting document will look like shit! Especially for books where they use graphics.

  • m-p{3}
    link
    fedilink
    English
    162 months ago

    What’s the original format of the ebook? Cleaning up a PDF won’t have the same process as cleaning up an epub.

    • @matcha_addictOP
      link
      English
      82 months ago

      Most of the books are pdf due to the inclusion of graphics and diagrams. Some are epub too.

  • shameless
    link
    fedilink
    English
    52 months ago

    I’m an idiot so excuse me if this is just way too simple. If you’re able to remove DRM and get the file, is it not just possible to copy the content out of the file and make a brand new file?

    I know I’m probably over simplifying things but I know if I’m paranoid about stuff like exif data in an image, if I’m in a pinch I’ll just screenshot the original image instead.

    • @matcha_addictOP
      link
      English
      82 months ago

      What if the signature is embedded in the content and I missed it? Maybe it’s just a hash in some footnote with white text color.

      Screenshotting the photo would work, but it would be difficult doing that for every page.