Preferences

quickthrowman parent
The only foolproof way I trust is to redact it digitally, print it on paper, and scan it.

I’ve used bad redaction to my advantage at work to make money, I’m all for other people using bad redaction techniques :)


kevin_thibedeau
Print single-sided. Otherwise there's a risk that nominally invisible bleed through from the other side can be enhanced. It's better to just convert a PDF to images directly and redact that.
mjevans
That is the EXACT process I automated the non-redacting parts of using cron jobs and task folders at a past job.

Flatten everything to a set of just images.

Have normal human staff draw black boxes over anything to be redacted.

Compose a new 'PDF' that's a set of 'scanned' images.

nkrisc
I wonder if using certain kinds of inks could cause slight differences in reflectivity over the redacted text, leaving artifacts that could be used to reconstruct the text in scanned documents? Seems like applying strips of opaque tape over the redacted text might be the most certain method, though maybe overkill after all.
3eb7988a1663
This was sort-of the winning solution to an underhanded C contest to redact an image. Hazily remembered, but the winner used a trick where already black pixels got redacted to one color black and already white pixels got to an ever so slightly different black. Reversing the image would then make it trivial to read the original black-on-white text.
moefh
I remember that one: the two blacks were not slightly different, they were both exactly black but written in different ways.

The image was in PPM format, which stores the color components of the pixels as ASCII text (so a white pixel is stored as "255 255 255" and a black one is "0 0 0"). To redact the image, the code replaced every digit of the numbers with '0', so white became "000 000 000" and black stayed as "0 0 0". Both are black and indistinguishable if you're viewing the image, but you can tell them apart by looking at the file text.

Sadly the UCC homepage seems to have vanished, but I found this account from the author: http://notanumber.net/archives/54/underhanded-c-the-leaky-re...

IshKebab
You don't need to be that paranoid. Converting to a raster image format is sufficient.
What if you just block out text in PDF, then Print to PDF - does that retain the text behind the black block?

If it does, then Export to PNG almost certainly removes it (while also removing all other selectable text)

capitainenemo
That sounds pretty foolproof so long as your black box fill method doesn't fill with a 99% opacity, or a flood fill leaves behind a few invisible anti-aliased pixels, or the merge operation of the black box doesn't result in some multiplication leaving a few bits of difference. Even if you erased the layer below, then filled above, I've had erasures vary in the bits outside the alpha channel messing up games using the texture info.

Overall, I kind of understand the paranoia even though in principle it does sound pretty foolproof.

Wouldn’t all those fears apply to printing as well?
capitainenemo
The alpha channel ones would not apply to printing, and overall printing is an extremely lossy operation, where all those minute details get washed out in approximate ink levels and the muddiness of the physical world. It might not be totally foolproof, esp for a very accurate print process (don't use your photo printer maybe), but it's probably many orders of magnitude noisier..

I think if you're really concerned, you'd print it once, apply physical black tape on it (or cut out with a razor), then scan that :)

Akronymus
Printing would presumably have enough imprecision to mask those.
tonyedgecombe
>What if you just block out text in PDF, then Print to PDF - does that retain the text behind the black block?

Possibly depending on the application you use to print and the printer driver. Acrobat has some unexpected behaviours when printing.

bqmjjx0kac
> I’ve used bad redaction to my advantage at work to make money

You've certainly piqued my curiosity. Can you say any more?

quickthrowman OP
I sell construction work. Sometimes my customers will have me price up something that someone else priced to them and they will send me a competitor’s redacted scope letter with the pricing blanked out so I can bid ‘apples to apples’ aka the same scope of work.

I’ve unredacted proposals using the ‘unflatten’ command in Bluebeam Revu (which is by far the best PDF editor) which allowed me to underbid my competitor and win the job (and at a higher price than I would’ve submitted).

Definitely an ethical grey area, but an edge is an edge ;)

aeonik
I really don't think this is grey, I think these cases have clear legal implications, though I'm not a lawyer. You are circumventing redaction, regardless of how boneheaded it is, the intent was clear.

I'd not do this if I were you.

quickthrowman OP
The information was in the document they sent me, they should’ve removed it completely if they didn’t want me to see it. The situation is identical to them mailing me a paper copy with a black piece of paper scotch taped over the price.

There are zero legal implications, it was a private contract. My customers regularly tell me the exact price that my competitors have submitted to them and that isn’t illegal.

Probably there are legal implications for attorneys circumventing redaction in legal documents but construction proposal letters have no protections against unredaction.

dghlsakjg
Morally gray, sure.

Legally, I can't see what's wrong with using information that you have, even if the other party didn't intend for you to have it. Lawyers themselves will use information in court that was accidentally sent to them by a counter-party, and that the other lawyer never intended them to have.

Spooky23
It may be technically an issue with some government bids, if you need to file an affidavit certifying you had no such knowledge.

But how would they prove it? And, doing so would reveal that they fucked up in the first place by sending it to you.

IshKebab
I would be really surprised if there was a law against this, and even if there was who really cares? As long as you don't make it super obvious (like consistently bid 1p under the competition) nobody will know.
aprilthird2021
There's no way there's a legal case that can be made against him imo
rogerrogerr
Probably trading of some sort?

This item has no comments currently.