home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Disk&HD / CLE-DPT2.LHA / DiskProtector / DiskProtector2.readme < prev    next >
Encoding:
Text File  |  1994-10-04  |  7.5 KB  |  179 lines

  1.  
  2. Peter van Campen's Disk Protector 2  29-9-94
  3.  
  4. This util puts a copy-protection on any disk you like.
  5. Use it on "NO-DOS" disks for optimal effect.
  6. The disk is protected against al hardware-copiers & nibblers.
  7. There is no error-track on disk. Just try it out, it's great.
  8. Be careful with this ! Only spread it to good contacts...
  9.  
  10. Signed: Peter van Campen (RattleHead), Tuinstraat 17 
  11.         1944 VT Beverwijk, The Netherlands.          
  12. peter_van_campen@f130.n1017.z60.pvcampen.wlink.nl   
  13.  
  14. LEFT-MOUSE: Protect disk in DF0:     RIGHT-MOUSE: Quit
  15.  
  16. ------------------------------------------------------------------
  17.  
  18. 15 april 1991 I wrote Disk Protector v1.0, with the making of
  19. a copy protection for RattleCopy I got the knowledge to do this.
  20. It got spread very well and I got letters like:
  21.  
  22. "Dear Rattle, I buy pirated games for $5 dollar from somebody
  23. in my town but I can't copy them because of your Protector.
  24. Can I get a deprotector for it ?"
  25.  
  26. I didn't make the program with some masterplan at the time, I
  27. did it because I thought it was a funny trick.
  28.  
  29. Some time later Kickstart v2.0 came out and I found out that
  30. it didn't work on it.
  31.  
  32. I wasn't the only one, I got a load of letters from guys who
  33. made a lot of money selling reprotected disks to local kids.
  34. They begged for an update and offered amounts like $100 dollars
  35. for this update.
  36.  
  37. At that time, and until recently, I hated these criminals and
  38. I never made an update.
  39.  
  40. About 6 months ago I red a plan of some pirate to stop selling
  41. pirate-disks to local kids and keep them in the scene. The scene
  42. is about 10% of the total Amiga market. The idea was that those
  43. kids (90%) whould buy the games and the Amiga market whould
  44. grow again. I thought it was a nice idea to try, and forgot it.
  45.  
  46. Some days ago, I started to write to another programmer, he
  47. wanted to make a diskprotection utility, he probably never heard
  48. of DiskProtector and we chatted along like this:
  49.  
  50. ------------------------------------------------------------------
  51.  
  52. Message 1:
  53.  
  54.  Him> and he knows someone in some company
  55.  Him> and wants a program to read the bootblock write it to
  56.  
  57. I also got 2 letters from a guy in the oil-region (bahgrein ?) and he
  58. asked the same thing, I wrote "Diskprotector" once, an utility that
  59. copyprotected normal amiga-dos disks, but it didn't work on kick v2.0.
  60. He offered me money and stuff but I decided not to do it, I quit the
  61. pirate-scene, they're all selfish criminals who think they're cool
  62. 'cause they can crack a little, pathetic.
  63. The guy is probably a local spreader who wants to earn big money by
  64. selling re-protected warez, and when you make that program, you help
  65. the killing of Amiga. Do you want that ? I guess not,
  66.  
  67.  Mcc> Also you said something about the RattleCopy protection?
  68.  Mcc> I'd love to how it was implemented (to work) and what it did..
  69.  
  70. Diskdrive motors are mechanical, so they have little speederrors.
  71. One drivemotor can be a little faster than another drivemotor.
  72. When data is written, the drive uses a timerpulse.
  73. The average number of bytes is $3200 on a track, when the drivemotor
  74. is faster, this becomes lower, like $3100, when the drive is slower,
  75. this becomes higher, like $3300.
  76. When data is red, the drive uses the bitsize on the disk as pulse,
  77. that's the reason why MFM-coding is used. It changes the data to
  78. as much different bits as possible. Data like 000011110001111111000
  79. is changed to 110100110010100101, so it's easier for the drive to
  80. get the correct pulse. (bit-example is made up, not correct)
  81.  
  82. Protection trick: when I write tracks on my drive, they are always
  83. the same length, give or take 2 bytes, 'cause of the speed of my
  84. drive. Let's say it's $3268.
  85. I wrote RattleCopy v2.2 in strange-format tracks, after I did this
  86. I checked all track-lenghts, and put them in the boot-track.
  87. Example: $3268,$3268,$326a,$3266,$3268 etcetra.
  88. When the program is loaded, these lengths are checked.
  89. When somebody gets this disk, and COPIES it, the lengths will be
  90. different due to the speed of his drive. Like $3286.
  91. This trick even fools hardware-copiers, it is also used in
  92. commercial game protections but they use margins like $3260-$3280
  93. 'cause they have to copy a lot of disks on different hardware, this
  94. kills the trick a bit because a lot of drives are in this region.
  95. It's a cool trick for hobby-coders products.
  96.  
  97. (To technicians: this is the way I understand it, some things may
  98. be wrong)
  99.  
  100. ------------------------------------------------------------------
  101.  
  102. Message 2:
  103.  
  104.  Him> but the program is going to
  105.  Him> be useless anyway as anyone can copy track 81 with xcopy, and
  106.  Him> will probably try when doscopy doesn't work.
  107.  
  108. And now the big solution: (drums !)
  109.  
  110. We know that drivemotors have different speeds, so when we write
  111. data to a disk, we need some overlap-data in the data we write.
  112. The true data is $2f00 bytes, we add overlap-space (empty data)
  113. of $400 bytes, making $3300 bytes of data.
  114. This overlap-space is called "The gap".
  115. You write $3300 bytes of data to the disk, the Gap first ($400 and
  116. $2f00 in that order) because the end of the true data will
  117. overwrite the Gap.
  118.  
  119. "Diskprotector" used the following trick:
  120.  
  121. About 512 bytes of the bootblock was copied in the Gap of track 0,
  122. this could be done because the Gap of the Amiga format is big
  123. enough. (RattleCopy does the same thing with the RattleMap)
  124. The 512 bytes of the bootblock was replaced by the
  125. protection-routine, it also did the tracklength-check trick.
  126. This resulted in a normal-formatted LOOKING disk, because Amigados
  127. ignored the stuff in the Gap.
  128. It couldn't be copied because (hardware) nibblers got tricked by
  129. the track-length counter, normal doscopiers didn't copy the gap,
  130. so copies would guru.
  131. This also solves the problem that some drives can't copy track
  132. 80-81.
  133.  
  134. (I'm not having an ego-trip, I just love hacks like this.)
  135.  
  136. ------------------------------------------------------------------
  137.  
  138. After these messages I started thinking: Disk Protector could make
  139. the plan of stopping-local-spreading work. It did in 1991 in a 
  140. big way, I got letters even this year complaining about the bug.
  141. Ofcourse somebody will make a deprotector again, a friend of mine
  142. made one back in 1991, after I told him he couldn't do it. :-)
  143. But that deprotector was never spread in a big way, I think the
  144. local pirates stopped it to prevent it to go to the local kids.
  145.  
  146. So here it is, Disk Protector 2, it is tested on Kickstart 1.3, 2.0
  147. and 3.0. I lost the sources, so I had to debug it with changing
  148. things in the executable file. :-)
  149.  
  150. Why I write so much text ? I want a lot of people to use it, so
  151. we can see if it will help the selling of Amiga software.
  152. This will mostly be games, because the trick only works well
  153. on no-dos disks, so mostly cracked games that only can be
  154. started with bootblock-loading. These games are also the most
  155. copied software.
  156.  
  157. IMPORTANT When you try this program, remember:
  158.  
  159. When you nibble-copy the protected disk, and you write to the SAME
  160. drive that is used to PROTECT the disk, the chance is high that
  161. the copy works, the trick is that it can't be copied with
  162. ANOTHER drive, due to the speed of the drivemotors !!!
  163. Copy it to another drive, or to a friends drive to see that it
  164. really works.
  165.  
  166. Disclaimer:
  167. I'm not responsible for the destruction of any data due to the use
  168. of this program.
  169. This program is ment to prevent piracy, not making pirates richer. 
  170.  
  171.  (I hope it sounds important enough)
  172.  
  173. ------------------------------------------------------------------
  174.  
  175.  R/\77L[}{[/\D   VideoTracker, RattleCopy, PacManCopy, Slayer.
  176.  GAT d-- H-- s++:+ g- a24 w++ C++++ E- N++ K- W--- po- Y-- t+ j-
  177.  R- G''' tv+ b+ D+ B+++ e-(*) u++(*) h+ f- n-- y+*>++
  178.  
  179.