home *** CD-ROM | disk | FTP | other *** search
/ The Hacker's Encyclopedia 1998 / hackers_encyclopedia.iso / pc / crack / wordfind.txt < prev    next >
Encoding:
Text File  |  2003-06-11  |  1.8 KB  |  53 lines

  1. UNPROTECT WORDFINDER (UNIVERSAL VERSION)
  2.  
  3. I figured out the copy protection on Word Finder pretty easily --
  4. it works as follows:
  5.  
  6. The original diskette is physically altered to be recognizable
  7. (not prolock, but similar).
  8.  
  9. The WFINSTAL.EXE program first checks the SF.EXE program to see
  10. if it has been "customized" with a user's name yet.  If YES, then
  11. it will proceed to let you install SF.EXE for any desired word
  12. processor.  You can switch between different word processors and
  13. can use backup disks without any constraints.
  14.  
  15. If the SF.EXE file has NOT yet been customized with a user's name
  16. then the WFINSTAL.EXE program checks to see if the original disk
  17. is in the current drive.  If not, then you get an error message
  18. and quit.
  19.  
  20. With the following patch, you can modify WFINSTAL.EXE so it will
  21. "customize" even if the original disk is not present.  To do this
  22. you should keep a backup virgin copy of the SF.EXE file, since that
  23. is the only one which gets patched during the customization process. 
  24. Each SF.EXE file can be customized only once with a new user's
  25. name/address, but can then be installed an unlimited number of times.
  26.  
  27. The patch I worked out is as follows:
  28.  
  29. address         old          new
  30. ---------   -----------  ------------
  31. XXXX:03A5   JNZ 3AA      JMP 401
  32. XXXX:03A7   JMP 401      JNZ 3AA
  33.  
  34. ===============================================
  35. ||       APPLY THE PATCH AS FOLLOWS          ||
  36. ===============================================
  37.  
  38. COPY SF.EXE SF.OLD
  39. COPY WFINSTAL.EXE WFINSTAL.OLD
  40. RENAME WFINSTAL.EXE WFINSTAL
  41. DEBUG WFINSTAL
  42. A3A5
  43. JMP 401
  44. JNZ 3AA
  45. <ENTER>
  46. W
  47. Q
  48. RENAME WFINSTAL WFINSTAL.EXE
  49.  
  50. Good luck!
  51.  
  52.                                 -- The Blot
  53.