SNIPPETS stringlengths 2 1.64k | INTENTS stringlengths 4 1.66k |
|---|---|
add bl, 0x2 | add 2 to bl content |
add bl, 0x2 | add 0x2 to the contents in bl and save the result in bl |
add bx, ax | add ax to bx |
add byte [edi], 0x4 \n not byte [edi] | add 0x4 from the byte at the address edi and negate the result |
add byte [edi], 7 \n not byte [edi] | add the byte at the address edi after subtracting the value 7 |
add byte [edi], 8 \n not byte [edi] | add the value 8 from the byte in edi and negate it |
add byte [esi], 0x02 | add 0x02 to the current byte in esi |
add byte [esi], 0x1 \n not byte [esi] | add 0x1 from the current byte of the shellcode and negate the result |
add byte [esi], 0x1 \n not byte [esi] | add 0x1 from the byte at the address esi and negate the result |
add byte [esi], 0x10 | add 0x10 to the current byte in esi |
add byte [esi], 0x9 \n not byte [esi] | add the value 0x9 from the current byte of the shellcode and then negate the result |
add byte [esi], 2 | adds 2 to the first character pointed from esi |
add byte [esi], 2 | add the byte value 2 to the esi register |
add byte [esi], 2 \n not byte [esi] | negate the byte at the address esi after adding the value 2 |
add byte [esi], 3 \n not byte [esi] | add the value 3 from the byte in esi and negate it |
add byte [var], 10 | add 10 to the single byte stored at memory address var |
add byte [var], 20 | add 20 to the single byte stored at memory address var |
add byte [var], 30 | add 30 to the single byte stored at memory address var |
add byte_value, 65 | add an immediate operand 65 to byte_value |
add byte_value, dl | add the register dl in the memory location byte_value |
add cl, 0x2 | add 2 to counter |
add cl, 0x2 | add 2 to counter cl |
add cl, 0x2 | add 0x2 to the contents in cl and save the result in cl |
add cl, 0xb8 | add 0xb8 to the cl register |
add dx, 0x1b | add the value 0x1b into the dx register |
add dx, 0x2f2f | add 0x2f2f to the contents in dx and save the result in dx |
add dx,0x1b | add 27 to dx contents |
add dx,0x2f2f | then add to it the hexadecimal value 0x2f2f. |
add eax, [ebp-4] | add the contents of the local variable stored at ebp-4 into eax |
add eax, 0x10 | add 0x10 to eax |
add eax, 0x12345678 | add 0x12345678 to the contents in eax and save the result in eax |
add eax, 0x2d383638 | add 0x2d383638 to the contents in eax and save the result in eax |
add eax, 0x2d383638 \n push eax | push ÔhmodÕ on stack |
add eax, 0x31179798 | add 0x31179798 to the contents in eax and save the result in eax |
add eax, 0x5 \n jnz L2 | add 0x5 to edx and jump to L2 if the result is not 0 |
add eax, 0x7 \n jnz L4 | add the value 0x7 to eax and jump to the label L4 if the sum is not zero |
add eax, 1 \n jnz L1 | add 1 to ebx and jump to L1 if the result is not zero |
add eax, 10 | add 10 to eax |
add eax, 10 | add 10 to the contents of eax |
add eax, 16 | add 16 to eax |
add eax, 2 | add 2 to the contents of the eax register |
add eax, 2 | add 2 to the eax register |
add eax, 2 | add decimal 2 to eax register |
add eax, 24 | add 24 to eax |
add eax, 3 \n jnz L3 | add 3 to ecx and jump to L3 if the sum is not zero |
add eax, 4 | add 4 to eax |
add eax, 4 \n jnz decode | add 4 to eax and jump to decode if the result is not zero |
add eax, 40000h | add 40000h to eax register |
add eax, 48 | add decimal 48 to eax |
add eax, 48 | add 48 to eax |
add eax, 9 \n jnz decode | add the value 9 to eax and jump to decode if the result is not zero |
add eax, c | add c to eax |
add eax, ebx | add the contents of ebx to the contents of eax |
add eax, ebx | add the value on ebx to eax |
add eax, ebx | add ebx to eax |
add eax, ebx | add ebx to eax and store the result in eax |
add eax, edx | add edx to eax |
add eax, edx | add the contents of edx to the contents of eax |
add eax, edx | add the contents of the edx register to the contents of eax register |
add eax, esi | add the contents of esi to the contents of eax |
add eax, esi | add the contents of the esi register to the contents of eax register |
add eax,0xe458376a | add hexadecimal value 0xe458376a to eax register |
add ebp, 0x2 | add 0x2 to the contents of ebp |
add ebp, 0x2 | add 0x2 to ebp |
add ebx, 0x2 | save sys_connect = 3 into ebx register |
add ebx, 0x2 | add 0x2 to the contents in ebx and save the result in ebx |
add ebx, 16 | add 16 to ebx |
add ebx, 2 | add decimal integer 2 to ebx |
add ebx, 2 | add 2 to the contents of the ebx register |
add ebx, 24 | add 48 to ebx |
add ebx, 3 | add the value 3 to the content of ebx register |
add ebx, 3 | add 3 to the contents of the ebx register |
add ebx, 5 | add decimal integer 5 to ebx |
add ebx, ecx | add ecx to ebx |
add ebx,2 | add 2 to ebx content |
add ecx, 1 | add the value 1 into the ecx register |
add ecx, 16 | add 16 to ecx |
add ecx, ebx | add ebx to ecx |
add edi, 2 | add 2 to edi |
add edi, 37 | add 37 to edi contents |
add edi, edi | add the contents of edi to the contents of edi |
add edi, edi | add the contents of the edi register to the contents of edi register |
add edi,0x11111111 | add hexadecimal value 0x11111111 to edi content |
add edx, 16 | set edx to next 16 byte block |
add edx, 32 | add 32 to edx |
add edx, 48 | add 48 to edx |
add edx, 64 | add the value 64 to the content of edx register |
add edx, 64 | add 64 to the contents of the edx register |
add edx, eax | add the contents of eax to the contents of edx |
add edx, eax | add the contents of the eax register to the contents of edx register |
add edx, eax | add the contents of the eax register to the edx register |
add edx, ecx | add ecx to edx |
add edx,ebx | add ebx content to edx |
add esi, 0x21354523 | add 0x21354523 to the contents in esi and save the result in esi |
add esi, 0x21354523 | add 0x21354523 to the contents of esi |
add esi, 0x30 | add hexadecimal value 0x30 to esi content |
add esi, 0x30 | add 0x30 to esi |
add esi, 0x33333333 | add the hexadecimal value 0x33333333 at esi content |
add esi, 0x33333333 | add 0x33333333 value to esi |
add esi, 0x3f3f3f3f | add 0x3f3f3f3f to the contents in esi and save the result in esi |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.