home *** CD-ROM | disk | FTP | other *** search
/ RBBS in a Box Volume 1 #2 / RBBS_vol1_no2.iso / 009z / msword.unp < prev    next >
Text File  |  1984-01-07  |  2KB  |  63 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, it wont work.
  11.  
  12. The best way around this is to modify the MWCOPY program so it
  13. will let you make more than one copy.  The below mods will let
  14. you make as many backups as you want (and you can leave the 
  15. write protect tab on your master disk).  Of course, this method
  16. should only be used by registered owners of Word.  If you, or any
  17. of your IMF force is killed, the secretary will disavow any 
  18. knowledge of these patches.
  19.  
  20. We will copy MWCOPY to another disk, using another name (MWCP) so
  21. you'll know it's the special version, and then modify MWCP.
  22.  
  23. (with master disk in A:, B: has any disk with debug on it)
  24. A>copy mwcopy.com b:mwcp.com
  25. A>b:
  26. B>debug mwcp.com
  27. -e103
  28. xxxx:0103  0x.00
  29. -e148
  30. xxxx:0148  A5.a7
  31. -e194
  32. xxxx:0194  02.04
  33. -e32a
  34. xxxx:032A  1C.1e
  35. -e32e
  36. xxxx:032E  1C.1e
  37. -e3372
  38. xxxx:3372  01.03
  39. -ecfe
  40. xxxx:0CFE  CD.90<space>26.90<space>
  41. xxxx:0D00  5B.90
  42. -e4ab
  43. xxxx:04AB  1B.84
  44. -e69a
  45. xxxx:069A  C1.b9<space>38.ff<space>28.b9
  46. -e7b3
  47. xxxx:07B3  A2.5f<space>08.e9
  48. -e66f
  49. xxxx:066F  E5.d8<space>
  50. xxxx:0670  94.29<space>90.ff<space>29.b9
  51. -w
  52. Writing 332D bytes
  53. -q
  54. B>mwcp      (try making a copy..remember,
  55.              leave the write-protect on the master)
  56.    (Just follow the prompts in the program, except when they ask
  57.     you to remove the write protect tab)
  58.  
  59. I think this will also work for the hard disk copy portion.  Another
  60. way to unprotect Word gets rid of the need for any weird disk formats.
  61. But it is MUCH more complicated to do.  Enjoy!
  62.     Dave Alverson
  63.