SNIPPETS
stringlengths 2
1.64k
| INTENTS
stringlengths 4
1.66k
|
|---|---|
dec ecx
|
decrement counter
|
dec ecx
|
decrease ecx by 1
|
dec ecx
|
decrement the contents of the ecx register
|
dec ecx
|
decrement the ecx register by one
|
dec ecx \n jns _dup2_loop
|
decrement the contents of the ecx register and jump to the _dup2_loop label if the result is not negative
|
dec ecx \n jns 2f_loop
|
decrement the contents of the ecx register and jump to the 2f_loop label if the result is not negative
|
dec ecx \n jns dup2
|
decrement the contents of the ecx register and jump to the dup2 label if the result is not negative
|
dec ecx \n jns dup2loop
|
decrement the contents of the ecx register and jump to the dup2loop label if the result is not negative
|
dec ecx \n jns dup2loop
|
decrement ecx by 1 and jump to the dup2loop procedure until ecx equals 0
|
dec ecx \n jns duploop
|
decrement the contents of the ecx register and jump to the duploop label if the result is not negative
|
dec ecx \n jns loop
|
decrement ecx by 1 and as long as sf is not set, jump to _loop label
|
dec ecx \n jns loop
|
decrement the contents of the ecx register and jump to the loop label if the result is not negative
|
dec ecx \n jns loop2
|
decrement the contents of the ecx register and jump to the loop2 label if the result is not negative
|
dec ecx \n jz counter_is_now_zero
|
decrement the contents of the ecx register and jump to the counter_is_now_zero label if the result is zero
|
dec edi
|
decrement edi register
|
dec edi
|
decrement edi content
|
dec edx
|
decrement edx content by 1
|
dec edx
|
decrement the edx register by one
|
dec edx
|
decrement edx
|
dec esp
|
decrement esp
|
dec esp
|
decrement the esp register by one
|
decode_insertion:
|
define decode_insertion label
|
decode_loop:
|
decode_loop
|
decode_pr:
|
define decode_pr label
|
decode_pr:
|
decode_pr function
|
decode_xor:
|
define decode_xor label
|
decode:
|
define _decode label
|
decode:
|
declare _decode label
|
decode:
|
define decode label
|
decode:
|
define _ decode label
|
decode:
|
define decode function
|
decode:
|
declare the decode label
|
decode:
|
define the decode label
|
decode:
|
function decode
|
decode:
|
decode function
|
decode:
|
decode routine
|
decode:
|
decode label
|
decode: \n cmp byte [esi], 0x7 \n jl lowbound \n sub byte [esi], 0x7 \n jmp common_commands
|
in the decode function jump to lowbound label if the current byte of the shellcode is lower than 0x7 else subtract 0x7 from the byte of the shellcode and jump to common_commands
|
decode: \n mov bl, byte [esi]
|
in decode move the current byte of the shellcode in the bl register
|
decode: \n not byte [esi]
|
define the decode function and negate the byte in esi
|
decode: \n sub byte [esi], 13
|
define decode function and subtract 13 from the current byte of the shellcode
|
decode: \n xor byte [esi], 0xaa
|
define the decode function and perform the xor operation between the byte in esi and the 0xaa value
|
decoded_shellcode:
|
define _decoded_shellcode label
|
decoded_shellcode:
|
define decoded_shellcode function
|
decoded_shellcode: \n call [esp]
|
declare the decoded_shellcode label and call the stack
|
decoder_setup:
|
decoder_setup label
|
decoder_value: db 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d
|
define decoder_value as an array of the following bytes: 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d
|
decoder:
|
declare decoder label
|
decoder:
|
declare _decoder label
|
decoder:
|
declare _decoderf label
|
decoder:
|
define decoder label
|
decoder:
|
define decoder_label
|
decoder:
|
define _decoder label
|
decoder:
|
define _ decoder label
|
decoder:
|
define the decoder function
|
decoder:
|
decoder function
|
decoder:
|
decoder routine
|
decoder:
|
declare the label decoder
|
decoder:
|
define decoder
|
decoder:
|
decoder's main
|
decoder:
|
decoder label
|
decoder:
|
declare the decoder function
|
decoder:
|
define decoder function
|
decoder:
|
declare the decoder label
|
decoder: \n pop esi
|
define the decoder function and store the encoded shellcode pointer in the esi register
|
decoder: \n pop esi
|
in the decoder routine save the shellcode in esi
|
decoder: \n pop esi \n mov edi, esi
|
in decoder save the shellcode in esi and move it to edi
|
decoder1:
|
define decoder1_label
|
decoder2:
|
declare decoder2_label
|
decrypt:
|
define _decrypt label
|
decrypt:
|
declare the decrypt label
|
dim: equ 25
|
declare a constant size and set equal to 25
|
dim: equ 512
|
define dim to be 512 bytes large
|
div dword [value]
|
divide the contents of eax by the word value stored at memory location value
|
div dword [var]
|
divide the contents of in eax by by the word value stored at memory location var
|
div dword ptr [eax]
|
divide dx:ax by the double word in eax storing in ax the quotient and in dx the reminder
|
div ebx
|
divide eax by ebx
|
div ebx
|
divide the contents of eax by the contents of ebx
|
div ecx
|
divide eax by ecx
|
div ecx
|
divide eax by ecx the result of the division is stored in eax and the remainder in edx
|
div edx
|
divide eax by value in edx
|
div esi
|
divide eax by esi
|
do_dup:
|
declare the do_dup label
|
do_dup:
|
define do_dup label
|
doit:
|
declare the doit label
|
done:
|
define _done label
|
done:
|
declare the done label
|
download:
|
delcare download_label
|
download:
|
declare the download label
|
download:
|
define download function
|
dup2:
|
declare _dup label
|
dup2:
|
declare _dup2 label
|
dup2:
|
define dup2 label
|
dup2:
|
define _dup2 label
|
dup2:
|
declare the dup2 label
|
dup2:
|
define dup2 function
|
dup2loop:
|
declare _dup2loop label
|
dup2loop:
|
delcare the dup2loop label
|
dupcount:
|
declare _dopcount label
|
dupcpunt:
|
declare _dupcount label
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.