SNIPPETS stringlengths 2 1.64k | INTENTS stringlengths 4 1.66k |
|---|---|
write: | define write label |
write: | declare the write label |
writestring: | define _writestring label |
writestring: | define writestring function |
writestring: | declare the writestring label |
x dw ? | declare a word uninitialized value referred to as location x |
x dw ? | declare an uninitialized word labeled x |
xchg [ebp+16], ecx | swap the address [ebp+16] with the contents of the ecx register |
xchg [ebp+16], ecx | swap the contents in ebp+16 and ecx |
xchg byte [esi+1], al | swap al value with next byte value (esi+1) |
xchg eax, ebx | exchange ebx with eax content |
xchg eax, ebx | put socket descriptor in ebx and 0x5 in eax |
xchg eax, ebx | exchange ebx with eax contents |
xchg eax, ebx | exchange eax with ebx contents |
xchg eax, ebx | swap the contents of eax and ebx |
xchg eax, ebx | swap the contents of the eax register with the contents of the ebx register |
xchg eax, ebx | exchange eax with ebx |
xchg eax, ecx | exchange ecx with eax content |
xchg eax, ecx | swap the contents of the eax register with the contents of the ecx register |
xchg eax, edx | exchange edx with eax contents |
xchg eax, edx | swap the contents of the eax register with the contents of the edx register |
xchg eax, esi | save sockfd |
xchg eax, esi | swap the contents of eax and esi |
xchg eax, esi | swap the contents of the eax register with the contents of the esi register |
xchg eax, esi \n int 0x80 | execute close syscall |
xchg ebx, eax | save the socket descriptor stored in eax in ebx |
xchg ebx, eax | move the return value of socket from eax to ebx ready for the next syscalls |
xchg ebx, eax | exchange the content of eax with ebx so now ebx holds the new sockfd that was accepted |
xchg ebx, eax | exchange ebx with eax contents |
xchg ebx, eax | save fd in ebx |
xchg ebx, eax | transfer the descriptor for the accepted socket from eax into ebx |
xchg ebx, eax | store sockfd from eax in ebx |
xchg ebx, eax | swap the contents of the ebx register with the contents of the eax register |
xchg ebx, eax | swap the values of ebx and eax |
xchg ebx, eax | swap the values of ebx and eax registers |
xchg ebx, eax | exchange the contents of the ebx register with the contents of the eax register |
xchg ebx, ebx | execute no operation |
xchg ebx, ecx | exchange ebx with ecx |
xchg ebx, edx | exchange ebx with edx content |
xchg ebx, edx | set ebx=2 and edx=sockfd |
xchg ebx, edx | swap the contents of the ebx register with the contents of the edx register |
xchg ebx, esp | swap the contents of the ebx register with the contents of the esp register |
xchg ebx, esp | swap the values of ebx and esp registers |
xchg ebx,eax | exchange eax content with ebx content |
xchg ebx,eax | save client_sockfd exchanging eax content with ebx content |
xchg ebx,eax | save clientfd from eax to ebx |
xchg ebx,eax | exchange eax content with ebx content (save clientfd from eax to ebx) |
xchg ebx,eax | exchange eax contet with ebx content |
xchg ebx,esp | exchange esp content with ebx content |
xchg ebx,esp | save stack pointer to ebx |
xchg ecx, edx | exchange edx with ecx content |
xchg ecx, edx | exchange ecx with edx |
xchg ecx, edx | swap the contents of the ecx register with the contents of the edx register |
xchg ecx,eax | exchange eax content with ecx content |
xchg ecx,edx | exchange edx contents with ecx contents |
xchg edi, eax | transfer file descriptor to edi |
xchg edi, eax | swap the contents of the edi register with the contents of the eax register |
xchg edi, eax | swap the values of edi and eax registers |
xchg edi,eax | exchange eax content with edi content |
xchg edi,eax | save the socket descriptor stored in eax in edi |
xchg edx, eax | swap the values of edx and eax registers |
xchg edx, eax | exchange edx with eax |
xchg edx, ebx | swap the values of edx and ebx registers |
xchg edx,eax | exchange eax with edx content |
xchg edx,eax | exchange eax and edx content |
xchg edx,eax | execute no operation |
xchg esi, eax | save the socket descriptor stored in eax in esi |
xchg esi, eax | load the socket file desriptor from eax into esi register |
xchg esi, eax | save sock result from eax into esi |
xchg esi, eax | saving sockfd |
xchg esi, eax | swap the contents of the esi register with the contents of the eax register |
xchg esi, eax | swap the values of esi and eax |
xchg esi, eax \n int 0x80 | execute exit syscall |
xchg esi, ebx | swap the values of esi and ebx |
xchg esi,eax | save the socket descriptor stored in eax in esi |
xchg esi,eax | load host_sockfd stored in eax to esi |
xchg esi,eax \n xor eax,eax | load the sockfd sotred in eax to esi register and then clean eax register |
xchg esp, esi | swap the values of esp and esi registers |
xchg esp,eax | exchange eax and esp content |
xchg si, bx | swap the values si ebx and bx registers |
xor [ebx], word __flag_byte | perform xor operation between ebx register and the word __flag_byte and save the result in ebx |
xor [ecx + 116], bh | perform xor operation between the value stored at the location ecx+116 and bh |
xor [ecx + 116], bh | perform a logical xor between the address specified by [ecx + 116] and the bh register and save the result in [ecx + 116] |
xor [ecx + 116], dh | perform xor operation between the value stored at the location ecx+116 and dh |
xor [ecx + 116], dh | perform a logical xor between the address specified by [ecx + 116] and the dh register and save the result in [ecx + 116] |
xor [ecx], bh | perform the xor operation between the value stored at the location ecx and bh |
xor [ecx], dh | perform the xor operation between the value stored at the location ecx and dh |
xor ah, ah | zero out ah register |
xor ah, ah | clear the ah register |
xor al, 0e9h | xoring al content with 0xe9 |
xor al, 0e9h | perform a logical xor between the al register and 0e9h and save the result in al |
xor al, 0x30 | run xor operation between the value 48 and al register contents |
xor al, 0x30 | run xor operation between al regsiter and the hexadeciaml value 0x30 |
xor al, 0x30 | perform the xor operation between the al register and the value 0x30 |
xor al, 0x41 | perform the xor operation between the al register and the value 0x41 |
xor al, 0x4a | perform the xor operation between the al register and the value 0x4a |
xor al, 0x4a \n xor al, 0x41 | run xor operation between al regsiter and the hexadecimal values 0x4a and 0x41 |
xor al, bl | xoring al register with bl register |
xor al, bl \n jz short shellcode | perform xor between al and bl and jump short to shellcode if the result is zero |
xor al,0x12 | xoring hexadecimal value 0x12 with al register |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.