home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / IVM.ZIP / DUMMY.ASM < prev    next >
Assembly Source File  |  1992-12-27  |  847b  |  30 lines

  1. ;****************************************************************************
  2. ; Use this to infect and get an encrypted copy of your newly made virus.
  3. ; To compile use TASM Dummy.asm and Tlink /T Dummy.asm
  4. ;                                or TLINK Dummy.asm for an EXE file.
  5. ;****************************************************************************
  6.  
  7.         .model tiny
  8.         .code
  9.         org 100h
  10.  
  11. start:
  12.         mov     ah,9
  13.         mov     dx,offset messege
  14.         int     21h
  15.  
  16.         int     20h
  17.  
  18.         .data
  19. messege db      'Infected with an IVP created file',10,13
  20.         db      'Curtesy of Admiral Bailey - Youngsters Against McAfee',10,13
  21.         db      '$'
  22.  
  23. filler  db      1 dup (90)
  24.  
  25.         ; change the number before the dup to change the size of the
  26.         ; file.
  27.  
  28.         end     start
  29.  
  30.