home *** CD-ROM | disk | FTP | other *** search
/ Hacks & Cracks / Hacks_and_Cracks.iso / hackersclub / km / library / hack / copy.txt < prev    next >
Text File  |  1998-03-25  |  989b  |  16 lines

  1. 31. How do I defeat Copy Protection?
  2.  
  3. There are two common methods of defeating copy protection. The first is to
  4. use a program that removes copy protection. Popular programs that do this
  5. are CopyIIPC from Central Point Software and CopyWrite from Quaid Software.
  6. The second method involves patching the copy protected program. For popular
  7. software, you may be able to locate a ready made patch. You can them apply
  8. the patch using any hex editor, such as debug or the Peter Norton's
  9. DiskEdit. If you cannot, you must patch the software yourself.
  10. Writing a patch requires a debugger, such as Soft-Ice or Sourcer. It also
  11. requires some knowledge of assembly language. Load the protected program
  12. under the debugger and watch for it to check the protection mechanism. When
  13. it does, change that portion of the code. The code can be changed from JE
  14. (Jump on Equal) or JNE (Jump On Not Equal) to JMP (Jump Unconditionally).
  15. Or the code may simply be replaced with NOP (No Operation) instructions.
  16.