I'm currently enrolled in an online PDF course where they've mentioned embedding some hidden trackers in their documents to prevent sharing. As a non-techie, I'm curious about how to identify these hidden trackers or metadata in the PDFs. I'm particularly concerned if any trackers might contain my personal information like my phone number or email. I've tried searching online, but I haven't had any success so far. Also, I don't have Adobe Acrobat and usually view PDFs in MS Edge, so I'd appreciate any advice relevant to that setup.
5 Answers
I’d put my money on the idea that they’re mainly using watermarks. If you read the fine print, it usually says they’ll track sharing, but that doesn’t mean they can actually prove it unless you share it directly with someone. There's probably nothing to worry about unless you actively share it and they can link it back to you—even then, it’s probably just to discourage sharing.
If you can extract an HTML version of the PDF, check it for any script tags or external URLs that may be trackers. A script running in a PDF can sometimes do similar things as it does in a web browser. Just be cautious with anything that loads images remotely; 1x1 pixel images are typically used for tracking purposes.
Just make sure not to share it too widely if you're concerned. If they genuinely have trackers in place, it could be a headache later on, even if it's just watermarks. But I doubt they'd have anything too invasive embedded in the document.
Here's a simple guide with free tools you can use, regardless of your operating system. First, you'll want to check the metadata of your PDF with ExifTool. Just install it and run `exiftool yourfile.pdf` in your command prompt. Look for fields like Author and Custom fields that might show your info.
Next, use Poppler tools to dump PDF info. Install it, and then run `pdfinfo yourfile.pdf` and `pdftotext yourfile.pdf output.txt` to view all visible and hidden text, which can include watermarks.
Additionally, check for scripts using `pdfid.py` to flag anything that might be tracking you. You can also make the PDF easier to read with QPDF by running `qpdf --qdf --object-streams=disable yourfile.pdf out.pdf` and inspect the contents in a text editor. Finally, look for your personal details by copying all text and searching for your name or email. While it might seem daunting, these steps can help you find what you're looking for!
Honestly, a lot of times, these claims about tracking can just be exaggerations. They might just watermark the PDFs. Check if there are any shallow watermarks or unique identifiers mixed in with the text. But it might just be fear tactics on their part to prevent sharing.
Also, if you upload the PDF to VirusTotal, you can see if there’s any suspicious behavior flagged. But yeah, do keep your eyes peeled for those watermarks!

Thanks for this detailed guide! Health is wealth, and I definitely want to avoid any surprises. I’ll give this a shot.