home *** CD-ROM | disk | FTP | other *** search
/ Various Unprotection Examples / unprotect.zip / unprotect / COPYPROT / WORD.UNP < prev    next >
Text File  |  1985-03-20  |  2KB  |  62 lines

  1. The protection scheme for MS WORD is quite good.  The last track
  2. is formatted with 256 byte sectors.  One sector, however, has
  3. an ID that says it is a 1K sector.  If you try to read it as a 256
  4. byte sector, you'll get a sector not found.  You can read it as a
  5. 1K sector with a guaranteed CRC error, and you will get the data
  6. and other sector overhead from 3+ sectors.  They read it as 1K, and
  7. use the bytes after the first 256 for decryption.  These bytes
  8. constitute the post-amble of the sector, the inter-sector gap, and
  9. the preamble to the next 256 byte sector.  If it's not formatted
  10. with the correct inter-sector gap, the decryption key is 
  11. different and the incorrectly decoded program bombs.
  12.  
  13. The best way around this is to modify the MWCOPY program so it
  14. will let you make more than one copy.  The below mods will let
  15. you make as many backups as you want (and you can leave the 
  16. write protect tab on your master disk).  Of course, this method
  17. should only be used by registered owners of Word.  If you, or any
  18. of your IMF force is killed, the secretary will disavow any 
  19. knowledge of these patches.
  20.  
  21. We will copy MWCOPY to another disk, using another name (MWCP) so
  22. you'll know it's the special version, and then modify MWCP.
  23.  
  24. (with master disk in A:, B: has any disk with debug on it)
  25. A>copy mwcopy.com b:mwcp.com
  26. A>b:
  27. B>debug mwcp.com
  28. -e103
  29. xxxx:0103  0x.00
  30. -e148
  31. xxxx:0148  A5.a7
  32. -e194
  33. xxxx:0194  02.04
  34. -e32a
  35. xxxx:032A  1C.1e
  36. -e32e
  37. xxxx:032E  1C.1e
  38. -e3372
  39. xxxx:3372  01.03
  40. -ecfe
  41. xxxx:0CFE  CD.90<space>26.90<space>
  42. xxxx:0D00  5B.90
  43. -e4ab
  44. xxxx:04AB  1B.84
  45. -e69a
  46. xxxx:069A  C1.b9<space>38.ff<space>28.b9
  47. -e7b3
  48. xxxx:07B3  A2.5f<space>08.e9
  49. -e66f
  50. xxxx:066F  E5.d8<space>
  51. xxxx:0670  94.29<space>90.ff<space>29.b9
  52. -w
  53. Writing 332D bytes
  54. -q
  55. B>mwcp      (try making a copy..remember,
  56.              leave the write-protect on the master)
  57.    (Just follow the prompts in the program, except when they ask
  58.     you to remove the write protect tab)
  59.  
  60. I think this will also work for the hard disk copy portion.  Another
  61. way to unprotect Word gets rid of the need for any weird disk formats.
  62. But it is MUCH more complicated to do.  Enjoy!