home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Stone / junk / fprot.asm < prev    next >
Encoding:
Assembly Source File  |  2000-05-25  |  585 b   |  30 lines

  1. ; Stupid F-Prot virusshield dector.. made on a night of boredom ;)
  2. ; This actually never was supposed to be released.. but hey..I need
  3. ; something on my home page: www.one.se/~stone/index.htm
  4.   DumbVirus segment
  5.   Assume    CS:DumbVirus
  6.   Org 100h                 ; account for PSP
  7.   
  8.   
  9.   Start:  
  10. mov ax,4653h
  11. xor bx,bx
  12. mov cx,9h
  13. int 2fh
  14. cmp ax,5346h
  15. jnz endit
  16. cmp bx,20ah
  17. jnz endit
  18.  
  19. mov ah,9
  20. mov dx, offset flaf
  21. int 21h
  22.  
  23. endit:
  24. mov ax,4c00h
  25. int 21h
  26. flaf db 'F-Prot something shield found in memory! :)'
  27.  
  28.   DumbVirus    ENDS
  29.                END     Start
  30.