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

  1. Greetings...
  2.  
  3.   I just, out of boredom, solved BuLLeT's Crackme 8.0
  4.  
  5.   First of all, the only tools you'll need is a hexadecimal calculator, a
  6.   HEX-DEC converter (CCONVERT comes in handy after all :), and a
  7.   brain...I'm sure that there is a way to do this using Soft-ICE, but I
  8.   did it without---I discovered the algo by luck (sort of)...Okay I saw
  9.   that you needed to type a serial into the first dialouge box and then a
  10.   Registration number will appear, and it needs to match the one
  11.   shown...So basically, it takes the value you put into the serial number
  12.   box, does some manipulations with it, and if after the manipulations it
  13.   matches the reg. number, your serial is valid :)  So just to experiment,
  14.   I typed a '0' into the serial box, and clicked on the 'Spider' button.
  15.   The registration number was 0. With a 1 for serial, the reg number was
  16.   3. With a 2, it was 6. With a 3 it was 9 (I think your starting to
  17.   notice the pattern here). With a 4, it was C...Wait a second, that's not
  18.   a decimal character! I typed a hex number into the serial box (123CA4)
  19.   and it said "Not a valid integer!" This told me that you must enter a
  20.   Decimal number, it will be manipulated then converted to hex---So since
  21.   I knew the generation routine (Increment by 3 for each decimal
  22.   increment), I pulled out my Hexadecimal calculator, and divided the
  23.   given reg. number that your serial when manipulated needs to equal, and
  24.   divided it by three. I got a Hex value...So I went into my base
  25.   converter, typed that number into the hex box, and then typed the
  26.   Decimal value given into the Serial box in the crackme....And voila, job
  27.   done :) (If you don't have a base converter, use the calculator that
  28.   comes with windows 95/98 I think)
  29.  
  30.   This was a fast job and may not be very well written/easy to understand
  31.   --- If so, sorry
  32.  
  33. Craftie