home *** CD-ROM | disk | FTP | other *** search
- ; Stupid F-Prot virusshield dector.. made on a night of boredom ;)
- ; This actually never was supposed to be released.. but hey..I need
- ; something on my home page: www.one.se/~stone/index.htm
- DumbVirus segment
- Assume CS:DumbVirus
- Org 100h ; account for PSP
-
-
- Start:
- mov ax,4653h
- xor bx,bx
- mov cx,9h
- int 2fh
- cmp ax,5346h
- jnz endit
- cmp bx,20ah
- jnz endit
-
- mov ah,9
- mov dx, offset flaf
- int 21h
-
- endit:
- mov ax,4c00h
- int 21h
- flaf db 'F-Prot something shield found in memory! :)'
-
- DumbVirus ENDS
- END Start
-