home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / E_bliss / gigatut.txt < prev    next >
Text File  |  2000-05-25  |  1KB  |  41 lines

  1.      <How to find the right serial in GiGA┤s crackme 1>
  2.  
  3.             --=    Hi again =--
  4. So you didnt manage to crack this one ? Well, hopefully this tut will
  5. help you out a bit. Since the crackme was encrypted or packed, and 
  6. wont go into this it so deep. I will simply tell you how its done.
  7.  
  8.             --= The crack =--
  9. Fireupp the crackme and press ok on the info nag. Then put in your name 
  10. and any serial, dont press ok yet. Switch to softice and set a 
  11. breakpoint on getwindowtexta.
  12.  
  13. :bpx getwindowtexta
  14.  
  15. Switch back and press ok. Boom! Hopefully your now into softice. Press
  16. F5 once and then F11 to load the fake serial and get to the breakpoint.
  17. At this stage you can remove the breakpoint:
  18.  
  19. :bc *
  20.  
  21. Then press F12 once to get to the code we are looking for. Continue 
  22. the pressing, but use F10 instead and trace down the code until you
  23. come to something that looks like this:
  24.  
  25. 0040164C    MOV    EAX,[EDI+64]  ;Our serial into eax
  26. 0040164F     MOV    ESI,00403100  ;The real serial into esi
  27. .........
  28.  
  29. Below this, it starts comparing our serial against the real one, 
  30. but since we already go the serial, i dont have to write anymore.
  31. Just do:
  32.  
  33. :d esi 
  34.  
  35. and you will se the correct serial :) 
  36.  
  37. Hope you had fun!
  38.  
  39. tarq
  40.             
  41.