home *** CD-ROM | disk | FTP | other *** search
/ The Elite Hackers Toolkit / TheEliteHackersToolkitVolume1_1998.rar / HACKERS.BIN / appcraks / MSICE29K.ZIP / MSICE129.ASM < prev    next >
Assembly Source File  |  1998-01-04  |  1KB  |  67 lines

  1. crlf    EQU    13,10
  2. .model    TINY
  3. .code
  4. .startup
  5. .386
  6.         Mov    ah, 9
  7.         Mov    dx, offset Copyr
  8.         Int    21h
  9.         Mov    ah, 0Ah
  10.         Mov    dx, offset UserN
  11.         Int    21h
  12.         movzx    ax, byte ptr UserN+1
  13.         or    al, al
  14.         jz    Exit_p
  15.         cld
  16.         mov    si, offset UserN+2
  17.         push    si
  18.         push    si
  19.         pop    dx
  20.         add    dx, ax
  21.         xchg    ax, cx
  22.         xor    bx, bx
  23.         
  24. L1:        cmp    si, dx
  25.         jl    L1_1
  26.         pop    si
  27.         push    si
  28. L1_1:        
  29.         lodsb
  30.         add    [offset RName+bx], al
  31.         inc    bx
  32.         and    bx, 7
  33.         loop    L1
  34. LenOk:        
  35.         mov    si, offset RName
  36.         mov    di, offset RegCode
  37.         mov    cx, 8
  38.         mov    bl, 1Ah
  39. L2:        xor    ax, ax
  40.         lodsb
  41.         idiv    bl
  42.         add    ah, 'A'
  43.         add    [di], ah
  44.         inc    di
  45.         loop    L2
  46.         mov    ah, 9
  47.         mov    dx, offset RegNumMsg
  48.         int    21h
  49. Exit_p:        
  50.         Int    20h
  51.  
  52. Copyr           db    crlf,'----------------------------------------------------------------'
  53.         db      crlf,'■ Description   : [W95] MSICE Cache Explorer v1.29 (01-Jan-1998)'
  54.         db    crlf,'■ Crack subject : Password generator'
  55.         db    crlf,'■ Crack made by : KrK //UCL//SSC'
  56.         db    crlf,'■ Crack made at : Jan 3 1998 21:10'
  57.         db    crlf,'■ Type of hack  : Password generator'
  58.         db    crlf,'■ Price         : 20 US dollars'
  59.         db    crlf,'■ Used tools    : Win-Ice/95 v3.22, IDA 3.7, HiEW v5.65, TASM 4'
  60.         db    crlf,'----------------------------------------------------------------'
  61.         db      crlf,'■ User name : $'
  62. RegNumMsg      db    crlf,'■ Password  : '
  63. RegCode        db    09,05,05,05,05,01,02,02,crlf,'$'
  64. RName        db    8 dup (0)
  65. UserN        db    32
  66. end
  67.