home *** CD-ROM | disk | FTP | other *** search
/ The Elite Hackers Toolkit / TheEliteHackersToolkitVolume1_1998.rar / HACKERS.BIN / appcraks / PC_BH13.ZIP / README.TXT < prev   
Text File  |  1990-01-01  |  6KB  |  148 lines

  1. ┌──────────────────────────────────────────────────────────────────────────────┐
  2. │                                                                              │
  3. │                 B · Y · T · E ·    · H · U · N · T · E · R ·                 │
  4. │                                                                         v1.3 │
  5. └──────────────────────────────────────────────────────────────────────────────┘
  6.                            
  7.                                 by THE_q and Nop
  8.       
  9.  
  10.  
  11.                          iNTRODUCTiON.................1
  12.  
  13.                          PROGS........................2
  14.  
  15.                          HiSTORY......................3
  16.  
  17.                          CREDiTS......................4
  18.  
  19.  
  20.  
  21.  
  22. ┌────[ iNTRODUCTiON ]───────────────────────────────────────────────────────── 
  23. │ ■ There is more and more program with frequent updates, that mean that
  24. │   when u cracked 1.1, the 1.2 will be out in few days.. Isn't that some
  25. │   lose of time?
  26. │                  
  27. │   So the idea is, instead bytepatch particular offset, to look for a string
  28. │   and replace it with another..
  29. │   There is not so much sources of progs like this, and most of them are 
  30. │   slow.. really slow (TurboPascal suxx sometimes ;)
  31. │ ■ So, we (Nop & THE_q) decided to code one, THE_q do the main work, and i
  32. │   added some improvements, and THE_q finally improved all :)
  33. │ ■ U are allowed to use this sourcecode and all components freely, we only
  34. │   ask that u let the "ByteHunter by Nop and THE_q" in the file... 
  35. │ ■ It's one of the fastest Search & Replace procedure i ever see, and i 
  36. │   think u will be happy to use it.. so take care of it :)
  37. │ ■ I (Nop) want to dedicated this prog to Riz la+ that was looking for one
  38. │   and give me the idea of all this.
  39. └─────────────────────────────────────────────────────────────────────────────┐
  40. ┌────[ PROGS ]────────────────────────────────────────────────────────────────┘
  41. │ ■ Package:
  42. │    FILE_ID.DIZ
  43. │    PC.NFO                               Phrozen Crew Nfo
  44. │    README.TXT                           Main doc
  45. │    \SOURCE\BYTEH.ASM                    Source of the prog
  46. │    \SOURCE\A86.COM                      Compiler
  47. │    \SOURCE\COMPILE.BAT                  just launch that to compile ;)
  48. │    \BH_FILL\BH_FILL.EXE                 easy way to fill ur infos
  49. │    \BH_FILL\BH_FSRC.ZIP                 SourceCode of this prog (Pascal)
  50. │ ■ To make a compilable file, there is 3 steps:
  51. │    - put infos for title, example:
  52. │      text_title db ' FtpVoyager v5.x.x.x crack by Nop'        ,0Dh,0ah
  53. │                 db '─────────────────────────────────────-- -',0Dh,0ah,'$'
  54. │    - Put others infos (filename, string to search, string to put), example:
  55. │      FileName1  db 'FTPVOY~1.EXE',0
  56. │      S2FIND1    db  3                      <--number or bytes to find
  57. │                 db  00Fh,09Ch,0C0h         <--bytes
  58. │      S2PUT1     db  3                      <--number of bytes to put
  59. │                 db  066h,033h,0C0h         <--bytes
  60. │      In the string to find, if the byte is equal to '?' (3fh) then it isn't
  61. │      checked.
  62. │█   Remember this:
  63. │█    First byte=Number of bytes
  64. │█    Then all bytes to use
  65. │█    '?' = Any byte
  66. │   - Then go to the end of the prog to the main prog part (at the end), and
  67. │     put after the
  68. │              ; ■ ENTER REF HERE:
  69. │      all your references like this:
  70. │                     mov ax,offset S2FIND1
  71. │                     mov bx,offset S2PUT1
  72. │                     lea dx,filename1
  73. │                   call goforit
  74. │█   Remember this: 
  75. │█     AX = STRING TO FIND
  76. │█     BX = STRING TO PUT
  77. │█     DX = FILENAME
  78. │      If you have other string to search, other file to modify, add it just
  79. │      after.
  80. │ ■ To compile simply use dosCommandLine "A86.COM BYTEH.ASM" and u will obtain
  81. │   a byteh.com ready to work... and if you are as lazy as me, just launch
  82. │   the COMPILE.BAT ;)
  83. │ ■ And for people more lazy than me, THE_q made a tools, BH_FILL that
  84. │   will ask for all these infos.
  85. │   - Launch BH_FILL.EXE and just put what the prog ask :)
  86. │   Note: u will not have to enter number of byte
  87. │   the \BH_FILL\BH_FSRC.ZIP contain sourcecode of BH_FILL if u want to change
  88. │   some things.   
  89. └─────────────────────────────────────────────────────────────────────────────┐
  90. ┌────[ HiSTORY ]──────────────────────────────────────────────────────────────┘
  91. │  v1.0: Search & replace procedure by THE_q
  92. │  v1.1: comments, multistring and multifiles habilities added by Nop
  93. │  v1.2: BH_FILL added by THE_q
  94. │  *FIRST PUBLiC RELEASE*
  95. │  v1.3: doc wrote by Nop, latest fix by THE_q
  96. └─────────────────────────────────────────────────────────────────────────────┐
  97. ┌────[ CREDiTS ]──────────────────────────────────────────────────────────────┘
  98. │  GROUP GREETS: BS/CORE/GLOW/REVOLT/UCF/X-FORCE
  99. │  PERSONAL GREETS
  100. │    FROM NOP: |mb|, madmax, G-RoM, tHATDUDE, aDancer, Rizla+, hackerjack,
  101. │              Blitz, Random, Baloosh, MiRaMaX, RudeBoy, Teraphy, Klink,
  102. │              STaRDoGG CHaMP, taylor^ (comment ca va cheri? ;), Hetero, tKC,
  103. │              t00nie, Killer+Bee, DaBaptist, Celestial, DaVinci, Superchic,
  104. │              THE_q, and everyone in #PC98... oh yes.. they are all good!!
  105. │  FROM THE_Q: nOP,tKC,Archimede,DaVinci,Antha,Taylor,aDancer,Riz|a,RudeBoy,
  106. │              RayF00,TUC,Zarkman,Klink,Genesis,NiTR8^,Plushmm,t00nie,Saga,
  107. │              Byte-Ripper, and EveryOne on #pc98 that help PC to be the
  108. │              Number #1 CrAcKiNg group ! ;)
  109. └──────────────────────────────────────────────────────────────────────────────
  110.