home *** CD-ROM | disk | FTP | other *** search
/ KeyGen Studio 2002 / KeyGen_Studio_2002.iso / Tutorials / CrackMesCbjNet / sf-fuzz3.txt < prev    next >
Encoding:
Text File  |  2001-09-21  |  3.7 KB  |  83 lines

  1. The III CrackMe by FuzzyCat/Da Breaker Crew 
  2.  
  3. --------------------------------------------------------------------------------
  4. Author: stealthFIGHTER 
  5. Target: FuzzyCat's Crackme III 
  6. Where: CrackMes.cjb.net 
  7. Tools: SoftIce 
  8. Protection: Name/Company/Serial 
  9. Level: 1/10 
  10.  
  11. --------------------------------------------------------------------------------
  12.  
  13. --------------------------------------------------------------------------------
  14. Run Crackme >>> fill your details (For me name: stealthFIGHTER, company: WWW, serial: 2319998) >>> push 'Check' button >>> nothing happens. Go to SoftIce set breakpoint: bpx GetDlgItemTextA >>> go back and push button again >>> we are in SoftIce. Crackme breaks 3 times because we have 3 input boxes. In SoftIce press twice F5 and then F11 to see the caller. You should be here:
  15.  
  16. --------------------------------------------------------------------------------
  17.  
  18. :00401187 E846000000 call 004011D2 ; Here is the CALL 
  19. :0040118C 33D2 xor edx, edx ; 'Clear' EDX 
  20. :0040118E 8B154E324000 mov edx, dword ptr [0040324E] ; Move fake serial in EDX 
  21. :00401194 391546324000 cmp dword ptr [00403246], edx ; Compare fake serial with real serial 
  22. :0040119A 7526 jne 004011C2 ; If they are different jump to bad cracker 
  23. :0040119C 6A30 push 00000030   
  24.  
  25.  
  26. --------------------------------------------------------------------------------
  27. Trace and stop at cmp dword ptr [00403246], edx. Here Crackme compares our serials. In EDX we have fake serial and in [00403246] we have real serial. In your Register Window you should see:
  28.  
  29. --------------------------------------------------------------------------------
  30.  
  31. ----------------------------------------------------------------------------------
  32. EAX=xxxxxxxx EBX=xxxxxxxx ECX=xxxxxxxx EDX=39313332 <= my fake serial
  33. EDI=xxxxxxxx EBP=xxxxxxxx ESP=xxxxxxxx EIP=xxxxxxxx
  34. CX=xxxx DS=xxxx SS=xxxx ES=xxxx FS=xxxx GS=xxxx DS:00403246=DF740F2F <= our serial
  35. ----------------------------------------------------------------------------------
  36.  
  37.  
  38. --------------------------------------------------------------------------------
  39. When you type ? EDX you'll see your serial, for me it is:
  40.  
  41. --------------------------------------------------------------------------------
  42.  
  43. 39313332 0959525682 "9132"
  44.  
  45.  
  46. --------------------------------------------------------------------------------
  47. 39313332 := HexaDecimal value of fake serial
  48. 959525682 := Decimal value of f.s.
  49. 9132 := backward ASCII value
  50.  
  51. --------------------------------------------------------------------------------
  52. Now to see real serial do the same: type ? DF740F2F (remember at the Register Window) and you'll get:
  53.  
  54. --------------------------------------------------------------------------------
  55.  
  56. DF740F2F 3748925231 (-546042055) "▀t/!"
  57.  
  58.  
  59. --------------------------------------------------------------------------------
  60. ▀t/! := backward ASCII value, so the real serial is: !/t▀
  61.  
  62. --------------------------------------------------------------------------------
  63. Disable all breakpoints and as serial type: !/t▀ >>> Yeahhh!! Registered!!. When you enter different names and companies and the same serial it will accept it >>> no need to code a keygen.
  64.  
  65. --------------------------------------------------------------------------------
  66. Crackme cracked!
  67.  
  68. --------------------------------------------------------------------------------
  69.  
  70. --------------------------------------------------------------------------------
  71. If I make a mistake please mail me: 
  72. stealthFIGHTER 
  73. Or visit my page: 
  74. nitrous.hop.to (popup window) 
  75. stealthfighter.cjb.net (sometimes down) 
  76.  
  77. --------------------------------------------------------------------------------
  78.  
  79. --------------------------------------------------------------------------------
  80.