This is a part of Gunner's code that creates a unistring.
I want to make it print out 'B','E', instead of the letters surrrounded by double quotes.
I think this is the section to change.
@@:
mov al, byte ptr [esi]
inc esi
cmp al, 00H
je Done
mov byte ptr [edi],'"'
inc edi
mov byte ptr [edi], al
inc edi
mov byte ptr [edi],'"'
inc edi
mov byte ptr [edi],','
inc edi
jmp @B
Have you tried changing and see what happens?
You could do 1 of 2 things:
mov byte ptr [edi], 27H
or
mov byte ptr [edi], "'"
I tried the second one already, will try the first.