SNIPPETS
stringlengths 2
1.64k
| INTENTS
stringlengths 4
1.66k
|
|---|---|
xor ebx, ebx \n mov bl, [esi+1]
|
zero out the ebx register and move the next byte of the shellcode into the lower byte of the register
|
xor ebx, ebx \n mov bl, [esi+1]
|
clean the ebx register and move the next byte of the shellcode into the lower byte of the register
|
xor ebx, ebx \n mov bl, [esi+1]
|
clear the ebx register and move the next byte of the shellcode into the lower byte of the register
|
xor ebx, ebx \n mov bl, 0x3
|
set ebx to the old socket fd = 3
|
xor ebx, ebx \n mov bl, 0x3
|
zero out ebx and move 0x3 in the lowest byte of the register
|
xor ebx, ebx \n mov bl, 0x4
|
clear ebx and move 0x4 in the lowest byte of the register
|
xor ebx, ebx \n mov bl, 2
|
clear the ebx register and move 2 in the lowest byte of the register
|
xor ebx, ebx \n mov bl, 5
|
clean the ebx register and move 5 in the lowest byte of the register
|
xor ebx, ebx \n mov ebx, eax
|
clear ebx and copy the eax contents in it
|
xor ebx, ebx \n mul ebx
|
zero out ebx and eax
|
xor ebx, ebx \n mul ebx
|
zero out ebx, eax and edx
|
xor ebx, ebx \n mul ebx
|
zero out the eax and ebx register
|
xor ebx, ebx \n mul ebx
|
zero out the eax register and the ebx register
|
xor ebx, ebx \n mul ebx
|
clear ecx and eax
|
xor ebx, ebx \n mul ebx
|
zero out ecx, edx and eax
|
xor ebx, ebx \n mul ebx
|
clean eax and edx
|
xor ebx, ebx \n mul ebx
|
zero out eax and edx
|
xor ebx, ebx \n pop ebx
|
clear ebx and pop it from the stack
|
xor ebx, ebx \n push dword ebx
|
clear ebx register and put its content as a double word on stack
|
xor ebx, ebx \n push ebx
|
zero out the ebx register and push zero onto the stack
|
xor ebx, ebx \n push ebx
|
push zero onto the stack
|
xor ebx, ebx \n push ebx
|
clear the ebx register and push its contents onto the stack
|
xor ebx, ebx \n xor ecx, ecx
|
zro out ebx and ecx register
|
xor ebx, ebx \n xor ecx, ecx
|
clean ebx and ecx
|
xor ebx, ebx \n xor ecx, ecx \n mul ecx
|
clear ebx, ecx and eax regsiters
|
xor ebx, ebx \n xor ecx, ecx \n xor edx, edx
|
clear ebx, ecx, edx
|
xor ebx, ebx \n xor edx, edx
|
clear the ebx and edx registers
|
xor ebx, ebx \n xor edx, edx
|
zero out ebx and edx
|
xor ebx, word __flag_byte
|
perform a logical xor between the ebx register and the word __flag_byte and save the result in ebx
|
xor ebx,eax
|
xoring ebx with eax
|
xor ebx,ebx
|
clear ebx
|
xor ebx,ebx
|
zero out ebx register
|
xor ebx,ebx
|
cler ebx
|
xor ebx,ebx
|
clear ebx regsiter
|
xor ebx,ebx
|
zero out ebx
|
xor ebx,ebx
|
clear ebx register
|
xor ebx,ebx \n mul ebx
|
put zero into ebx and eax
|
xor ebx,ebx \n xor eax,eax
|
clear ebx and eax register
|
xor ecx, bh
|
perform a logical xor between the ecx register and the bh register and save the result in ecx
|
xor ecx, dh
|
perform a logical xor between the ecx register and the dh register and save the result in ecx
|
xor ecx, ecx
|
zero out ecx register
|
xor ecx, ecx
|
clear ecx
|
xor ecx, ecx
|
cleat ecx
|
xor ecx, ecx
|
xoring ecx
|
xor ecx, ecx
|
clear ecx register
|
xor ecx, ecx
|
zero out ecx
|
xor ecx, ecx
|
define o_rdonly, ecx = 0
|
xor ecx, ecx
|
null ecx
|
xor ecx, ecx
|
zeroing ecx register
|
xor ecx, ecx
|
xor to clear out ecx
|
xor ecx, ecx
|
clean ecx
|
xor ecx, ecx
|
zero out loop counter ecx
|
xor ecx, ecx
|
initialize ecx to zero
|
xor ecx, ecx
|
initialize ecx with decimal value 0
|
xor ecx, ecx
|
reset both lower and uppper bytes of ecx to be 0
|
xor ecx, ecx
|
set the ecx register to null
|
xor ecx, ecx
|
zero out the ecx register
|
xor ecx, ecx
|
reset ecx to 0
|
xor ecx, ecx
|
clear the ecx register
|
xor ecx, ecx \n cmp ebx, ecx \n je l1
|
zero out the ecx register and jump to the l1 label if the contents of the ebx register is equal to the contents of the ecx register
|
xor ecx, ecx \n cmp ebx, ecx \n jne l1
|
zero out the ecx register and jump to the l1 label if the contents of the ebx register is not equal to the contents of the ecx register
|
xor ecx, ecx \n mov cl, [esi+1]
|
clean the ecx register and move the next byte of the shellcode into the lower byte of the register
|
xor ecx, ecx \n mov cl, [esi+1]
|
clear the ecx register and move the next byte of the shellcode into the lower byte of the register
|
xor ecx, ecx \n mov cl, [esi+1]
|
zero out the ecx register and move the next byte of the shellcode into the lower byte of the register
|
xor ecx, ecx \n mov cl, 0x19
|
zero out the ecx register and move 0x19 into the lower byte of the register
|
xor ecx, ecx \n mov cl, 0x1e
|
clear the counter and move 0x1e into the first byte of the register
|
xor ecx, ecx \n mov cl, 0x3
|
init new socket fd
|
xor ecx, ecx \n mov cl, 0x3
|
clear ecx and save the number of loops, 3, in it
|
xor ecx, ecx \n mov cl, 0x3
|
zero out ecx and move 0x3 in the lowest byte of the register
|
xor ecx, ecx \n mov cl, 0x4
|
clear ecx and move 0x4 in the lowest byte of the register
|
xor ecx, ecx \n mov cl, 2
|
clear the ecx register and move 2 in the lowest byte of the register
|
xor ecx, ecx \n mov cl, 23
|
zero out the ecx register and move 23 into the lower byte of the register
|
xor ecx, ecx \n mov cl, 25
|
zero out the ecx register and move 25 in the lower 8 bits of the register
|
xor ecx, ecx \n mov cl, 3
|
clear ecx and move the value 3 in it
|
xor ecx, ecx \n mov cl, 5
|
clean the ecx register and move 5 in the lowest byte of the register
|
xor ecx, ecx \n mov cl, shellcode_length
|
zero out the loop counter and move shellcode_length in the first byte
|
xor ecx, ecx \n mov cx, 0x1ff
|
clear ecx and move the value 0777 in it ( set file permissions to 777 so anyone can do anything (read, write, or execute))
|
xor ecx, ecx \n mov cx, 0x1ff
|
clear ecx and set file permissions to 777
|
xor ecx, ecx \n mul ecx
|
zero out ecx and eax register
|
xor ecx, ecx \n mul ecx
|
zero out eax ecx register
|
xor ecx, ecx \n mul ecx
|
zero out ecx and eax registers
|
xor ecx, ecx \n mul ecx
|
clear ecx and eax register
|
xor ecx, ecx \n mul ecx
|
clear eax and ebx registers
|
xor ecx, ecx \n mul ecx
|
trick to clear eax and ecx
|
xor ecx, ecx \n mul ecx
|
zero out eax and ecx
|
xor ecx, ecx \n mul ecx
|
zero out the eax register and the ecx register
|
xor ecx, ecx \n mul ecx
|
cause both eax and edx to become zero
|
xor ecx, ecx \n mul ecx
|
zero out eax and edx registers
|
xor ecx, ecx \n mul ecx
|
clear ecx and eax
|
xor ecx, ecx \n mul ecx
|
zero out ecx, edx and eax
|
xor ecx, ecx \n mul ecx
|
clean eax and edx
|
xor ecx, ecx \n mul ecx
|
zero out eax and edx
|
xor ecx, ecx \n push ecx
|
push zero onto the stack
|
xor ecx, ecx \n push ecx
|
clear the ecx register and push its contents onto the stack
|
xor ecx, ecx \n push ecx
|
zero out the ecx register and push zero onto the stack
|
xor ecx, ecx \n xor eax, eax
|
zero out ecx and eax register
|
xor ecx, ecx \n xor eax, eax
|
zero out ecx and eax
|
xor ecx, ecx \n xor eax, eax \n xor edx, edx
|
clear ecx, eax and edx
|
xor ecx, ecx \n xor ebx, ebx \n xor eax, eax
|
clear ecx, ebx and eax
|
xor ecx, ecx \n xor edx, edx
|
zero out ecx and edx register
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.