It's so far an academic tool created by a research lab and not used much in the wild [?]. So it needs more funding, or someone to adopt it for regular real-world usage:
Someone should make something like this that could be given an arbitrary file and simply removes metadata from it. For example, remove GPS and camera data from pics or author license key info from Word docs and PDFs.
Wouldn't such a tool have to be based on easily outdated or broken blacklists of parts of the file? Complex file formats like DOC can leak data in an immense number of ways.
10 comments
[ 4.8 ms ] story [ 45.3 ms ] threadSome related things are discussed here: https://github.com/psal/anonymouth/issues/6
Would definitely love to see progress be made on this or a similar tool!
[1] http://www.sno.phy.queensu.ca/%7Ephil/exiftool/, seems to be down currently though
https://web.archive.org/web/20160816014908/http://www.sno.ph...
https://github.com/kanzure/pdfparanoia
Wouldn't such a tool have to be based on easily outdated or broken blacklists of parts of the file? Complex file formats like DOC can leak data in an immense number of ways.
Here's a stupid but effective way I came up with to delete the data in files when they are too large to be stored in RAM:
Use dd on the device where the file is stored.
Files intended for eventual deletion can be stored on their own dedicated virtual block devices, or "file-backed virtual disks".
Unless things have changed, on OpenBSD these virtual block devices can be created from /dev/vnd.
To create a location to store the file(s) at, create an empty "backing" file with dd, associate it with a vnd, newfs the vnd and mount it.
To delete all the files on the mounted vnd, either umount and dd if=/dev/zero of=/dev/vnd{no}d or dd if=/dev/zero of=rvnd{no}d and umount.
One can also configure a cryptographic disk device over the vnd using a random throwaway password.