Live data from Hacker News

PC Floppy Copy Protection: Vault Prolok

martypc.blogspot.com

11–17 of 17 posts

Re: PC Floppy Copy Protection: Vault Prolok

#11

Maybe my reading comprehension can't grok it, but it appears defeat-able by MFM reading and recreation like almost every other form of "special disk" modification. Kyroflux, greaseweazle, Copy II PC Option Board, etc.

My understanding is that it worked by doing read/write on a known bad sector to verify that the physical defect is there. Replicating that on normal discs sounds hard.

Re: PC Floppy Copy Protection: Vault Prolok

#13

Maybe my reading comprehension can't grok it, but it appears defeat-able by MFM reading and recreation like almost every other form of "special disk" modification. Kyroflux, greaseweazle, Copy II PC Option Board, etc.

My understanding is that it worked by doing read/write on a known bad sector to verify that the physical defect is there. Replicating that on normal discs sounds hard.

The problem with all these protection schemes is somewhere in the code they could usually be bypassed by turning a JNE to an unconditional jump.

So you had to add code to detect modifications which itself could be bypassed.

Re: PC Floppy Copy Protection: Vault Prolok

#14
post #13

Earlier quoted context omitted.

My understanding is that it worked by doing read/write on a known bad sector to verify that the physical defect is there. Replicating that on normal discs sounds hard.

The problem with all these protection schemes is somewhere in the code they could usually be bypassed by turning a JNE to an unconditional jump. So you had to add code to detect modifications which itself could be bypassed.

>So you had to add code to detect modifications which itself could be bypassed.

Right, which is why DRM schemes aren't typically implemented in a straightforward way. Instead license checks are added to critical program logic so you can't easily skip it, anti-tamper/debug is added to thwart runtime analysis, and on top of all of this the code is obfuscated to thwart analysis even further. You might be eventually be able to figure it out, but it's designed to make it enough of a slog that nobody bothers to work through it all.

Re: PC Floppy Copy Protection: Vault Prolok

#15

The scheme to damage hardware or data when Prolok Plus thinks someone's using a pirated copy seems ludicrous. Who wants to deal with the liability when this goes wrong due to a bug or unexpected circumstances?

I remember it being referred to in the press as Killer Prolok at the time but can't find any references from a quick Google, presumably because it was all on dead trees rather than online. I'd never heard the Prolok Plus name until now.

Re: PC Floppy Copy Protection: Vault Prolok

#16
post #13

Earlier quoted context omitted.

My understanding is that it worked by doing read/write on a known bad sector to verify that the physical defect is there. Replicating that on normal discs sounds hard.

The problem with all these protection schemes is somewhere in the code they could usually be bypassed by turning a JNE to an unconditional jump. So you had to add code to detect modifications which itself could be bypassed.

There's many ways to do it: JMP (absolute or relative), NOP if fall-through is acceptance, or less favorably: invert the JMPcc such that invalid input becomes valid.

If I were a paranoid DOS-compatible publisher of expensive software, I would add layers of checks:

- checksum the entire executable on disk, at different points

- checksum the entire program resident in memory, at different points

- use a serial number and activation verification system based on public key cryptography and hardware attributes, and spread those checks around critical functionality. Store the activation code in the end of the root directory as phantom deleted file entries.

Ultimately though, does the increase in hassles and decrease in goodwill create more sales than it pushes away? I'd argue that intentionally no-DRM/no-cp software (GOG style) encourages brand goodwill and loyalty and there's even a nonzero conversion funnel from warez to paying customers. Cp is, thus, mostly an exercise in the practice of footgunnery by performative restrictions that do not deter technically-inclined persons. But like a sign that says "restroom for customers only", it doesn't add positive value. If they had instead spent more engineering time on the software and making the software priced for normal humans, they would have had more customers and more profits.

Re: PC Floppy Copy Protection: Vault Prolok

#17
post #12

ha I had one of those "Copy II PC Option Board" and remember TRANSCOPY it could pretty much copy anything copying disks in 1980s was like radar vs radar-detector battle, always escalating https://www.robcraig.com/wiki/copy2pc-option-board-status/

Central Point Software, the makers of Copy II PC, was one of our customers (we created back office software, order processing etc.).

It was a pretty healthy business, not just for the copy protection breaking but also the general tools software.

Funny story:

I was at their offices working on a project when they were getting ready to ship out the new version. Their warehouse was connected to the office building and they were producing all of the final copies and loading them on trucks to get sent to the distributors.

In the morning they gave the all clear for the first wave of trucks to leave, then about 4 hours later someone found a bug and they had to call all of the trucks back to the warehouse, unload, re-create new clean product etc.

They did this about 3 times before that version finally made it to the distributors.

Post reply on HN