SNIPPETS
stringlengths 2
1.64k
| INTENTS
stringlengths 4
1.66k
|
|---|---|
loop decode \n jmp shellcode
|
decrement the counter and jump to decode routine if it is not zero else jump to shellcode label
|
loop decode \n jmp short encodedshellcode
|
decrement the counter and jump to the decode label if it is not zero else jump short to the encodedshellcode label
|
loop decode \n jmp short shellcode
|
decrement the ecx register and jump to the decode label if the contents of the ecx register is not zero else jump short to the shellcode label
|
loop decode \n jmp short shellcode
|
decrease the counter and jump to decode if not zero else jump short to shellcode
|
loop decode_loop \n jmp short encoded_shellcode
|
decrement the counter and if it is not zero go back at decode_loop and execute the cicle again else jump to encoded_shellcode
|
loop decrypt
|
decrement the count register and jump to _decrypt if not equal zero
|
loop decrypt
|
decrement ecx and jumps to the decrypt label unless decrementing ecx caused its value to become zero
|
loop decrypt \n jmp encrypt
|
decrement the ecx register and jump to the decrypt label if the contents of the ecx register is not zero else jump short to the encrypt label
|
loop do_dup
|
decrement ecx and jumps to the do_dup label unless decrementing ecx caused its value to become zero
|
loop do_dup
|
decrement the counter and jump to the do_dup label if the count is not zero
|
loop do_dup \n push byte 0x3f
|
decrement the ecx register and jump to the do_dup label if the contents of the ecx register is not zero else push the byte 0x3f onto the stack
|
loop eggLoop \n jmp edi
|
decrement the ecx register and jump to the eggLoop label if the contents of the ecx register is not zero else jump to the edi register
|
loop fill
|
decrement ecx and jumps to the fill label unless decrementing ecx caused its value to become zero
|
loop fill
|
decrement the counter and jump to the fill label if the count is not zero
|
loop fill \n mov ecx, esp
|
decrement the ecx register and jump to the fill label if the contents of the ecx register is not zero else move the contents of the esp register into the ecx register
|
loop l1 \n mov eax, esp
|
decrement the ecx register and jump to the l1 label if the contents of the ecx register is not zero else move the contents of the esp register into the eax register
|
loop l1 \n mov eax, esp
|
decrement the ecx register and jump to the l1 label if the contents of the ecx register is not zero else point the eax register to the stack register
|
loop l2 \n jmp edi
|
decrement the ecx register and jump to the l2 label if the contents of the ecx register is not zero else jump to the edi register
|
loop l2 \n mov ebx, esp
|
decrement the ecx register and jump to the l2 label if the contents of the ecx register is not zero else move the contents of the esp register into the ebx register
|
loop l2 \n mov ebx, esp
|
decrement the ecx register and jump to the l2 label if the contents of the ecx register is not zero else point the ebx register to the stack register
|
loop l3 \n mov ecx, esp
|
decrement the ecx register and jump to the l3 label if the contents of the ecx register is not zero else move the contents of the esp register into the ecx register
|
loop l3 \n mov ecx, esp
|
decrement the ecx register and jump to the l3 label if the contents of the ecx register is not zero else point the ecx register to the stack register
|
loop l4 \n mov edx, esp
|
decrement the ecx register and jump to the l4 label if the contents of the ecx register is not zero else move the contents of the esp register into the edx register
|
loop l4 \n mov edx, esp
|
decrement the ecx register and jump to the l4 label if the contents of the ecx register is not zero else point the edx register to the stack register
|
loop main_inc
|
decrement ecx and jumps to the main_inc label unless decrementing ecx caused its value to become zero
|
loop main_inc \n mov ebx, esp
|
decrement the ecx register and jump to the main_inc label if the contents of the ecx register is not zero else move the contents of the esp register into the ebx register
|
loop main_inc \n mov ebx, esp
|
decrement the ecx register and jump to the main_inc label if the contents of the ecx register is not zero else point the ebx register to the stack register
|
loop main_loop
|
decrement the counter and jump to the main_loop label if the count is not zero
|
loop main_push
|
decrement ecx and jumps to the main_push label unless decrementing ecx caused its value to become zero
|
loop main_push \n mov cl, 30
|
decrement the ecx register and jump to the main_push label if the contents of the ecx register is not zero else move the value 30 into the cl register
|
loop rot_decode
|
loop 4 times
|
loop ROT_decode \n jmp short Shellcode
|
decrement the ecx register and jump to the ROT_decode label if the contents of the ecx register is not zero else jump short to the Shellcode label
|
loop up
|
decrement ecx and jumps to the up label unless decrementing ecx caused its value to become zero
|
loop xor_decode
|
loop 4 times
|
loop_dup:
|
define _loop_dup label
|
loop:
|
declare loop_label
|
loop:
|
define _loop_label
|
loop:
|
define _loop label
|
loop:
|
declare the loop label
|
loop:
|
define the loop label
|
loop2:
|
define _loop2 label
|
loopinghere:
|
define _ loopinghere label
|
loopinghere:
|
declare the loopinghere label
|
loopnz decode
|
decrement ecx and jumps to the decode label if the contens of ecx is not zero and the zero flag is set to zero
|
loopnz L1
|
decrement the counter and jump to the L1 label if the count is not zero and the zero flag is equal to zero
|
loopnz L1 \n jmp shellcode
|
decrement the ecx register and jump to the L1 label if the contents of the ecx register is not zero and the zero flag is zero else jump to the shellcode label
|
loopnz L2
|
decrement the counter and jump to the L2 label if the count is not zero and the zero flag is set to zero
|
loopnz L2 \n push eax
|
decrement the ecx register and jump to the L2 label if the contents of the ecx register is not zero and the zero flag is zero else push the contents of the eax register onto the stack
|
loopnz L3 \n mov edx, 7
|
decrement the ecx register and jump to the L3 label if the contents of the ecx register is not zero and the zero flag is zero else move the value 7 into the edx register
|
loopnz Label1
|
decrement ecx and jumps to the Label1 label if the contents of the ecx register is not zero and the zero flag is equal to zero
|
loopnz next
|
decrement ecx and jumps to the next label if ecx is not zero and the zero flag is equal to zero
|
loopnz next \n jmp ecx
|
decrement the ecx register and jump to the next label if the contents of the ecx register is not zero and the zero flag is zero else jump to the ecx register
|
loopnz next2 \n jmp edi
|
decrement the ecx register and jump to the next2 label if the contents of the ecx register is not zero and the zero flag is zero else jump to the edi register
|
lowbound:
|
lowbound label
|
main_inc:
|
declare the main_inc label
|
main_inc:
|
create label main_inc
|
main_loop:
|
define main_loop label
|
main_push:
|
create label main_push
|
main_push:
|
declare the main_push label
|
main:
|
define main_label
|
main:
|
declare the main label
|
main:
|
main function
|
main:
|
create main label
|
main:
|
define main label
|
marks dw 0, 0, 0, 0
|
allocate memory for the marks array of words and initialize all elements to zero
|
matrix qw 12*10
|
allocate memory for a 12*10 quad-bytes matrix
|
me:
|
declare the me label
|
me:
|
define me label
|
message db '/bin/sh'
|
define message byte and initialize it to '/bin/sh'
|
message db '/bin/sh'
|
define message as the byte string '/bin/sh'
|
message db '/etc/passwd'
|
define the string message and initialize it to '/etc/passwd'
|
message db '/etc/passwd'
|
define message as the byte string '/etc/passwd'
|
message db 'hello',13,0
|
allocate memory for a null terminated string 'hello\n'
|
message:
|
declare message_label
|
message: db 'hello world!'
|
declare message to contain the bytes 'hello world!'
|
message: db 0xeb,0x25,0x5e,0x89,0xf7,0x31,0xc0,0x50,0x89,0xe2,0x50,0x83,0xc4,0x03,0x8d,0x76,0x04,0x33,0x06,0x50,0x31,0xc0,0x33,0x07,0x50,0x89,0xe3,0x31,0xc0,0x50,0x8d,0x3b,0x57,0x89,0xe1,0xb0,0x0b,0xcd,0x80,0xe8,0xd6,0xff,0xff,0xff,0x2f,0x2f,0x62,0x69,0x6e,0x2f,0x73,0x68
|
define message as array of bytes and initialize it to 0xeb,0x25,0x5e,0x89,0xf7,0x31,0xc0,0x50,0x89,0xe2,0x50,0x83,0xc4,0x03,0x8d,0x76,0x04,0x33,0x06,0x50,0x31,0xc0,0x33,0x07,0x50,0x89,0xe3,0x31,0xc0,0x50,0x8d,0x3b,0x57,0x89,0xe1,0xb0,0x0b,0xcd,0x80,0xe8,0xd6,0xff,0xff,0xff,0x2f,0x2f,0x62,0x69,0x6e,0x2f,0x73,0x68
|
mov [1000h], ax
|
move the value of ax into memory at address 1000h
|
mov [bp+0x07], al
|
move the contents of the al register at the memory location specified by the operation [bp+0x07]
|
mov [bp+0x0a], al
|
move the contents of the al register at the memory location specified by the operation [bp+0x0a]
|
mov [bp+0x31], al
|
move the contents of the al register at the memory location specified by the operation [bp+0x31]]
|
mov [bp+0x32], si
|
move the contents of the si register at the memory location specified by the operation [bp+0x32]
|
mov [bp+0x36], bx
|
move the contents of the bx register at the memory location specified by the operation [bp+0x36]
|
mov [bp+0x3a], bx
|
move the contents of the bx register at the memory location specified by the operation [bp+0x3a]
|
mov [bp+0x3e], ax
|
move the contents of the ax register at the memory location specified by the operation [bp+0x3e]
|
mov [ebp-4], edi
|
move edi into the local memory address ebp-4
|
mov [ebp+12], ecx
|
move ecx into the address [ebp+12]
|
mov [ebp+12], ecx
|
move the contents of ecx into the memory location specified by the operation [ebp+12]
|
mov [ebp+20], zero_reg
|
move the contents of zero_reg into the memory location specified by the operation [ebp+20]
|
mov [ebp+20], zero_reg
|
move zero_reg into the address [ebp+20]
|
mov [ebp+22], word ax
|
move the word at the address ax into [ebp+22]
|
mov [ebp+22], word ax
|
move the word in ax into the memory location specified by the operation [ebp+22]
|
mov [ebp+var_a], eax
|
move the contents of eax into address defined by ebp+var_a
|
mov [ebx + 6], dl
|
save dl content into the space memory at the adress ebx + 6
|
mov [ebx + 6], dl
|
move dl into the address [ebx + 6]
|
mov [ebx], 110
|
move 110 into the effective address saved in ebx
|
mov [ebx], 123
|
move 123 into the effective address saved in ebx
|
mov [ebx+0xe], dl
|
copy dl content into memory space at the address ebx + 0xe
|
mov [ebx+0xe], dl
|
move dl into the address [ebx+0xe]
|
mov [ebx+12], eax
|
move eax into ebx+12
|
mov [ebx+7], al
|
move al into ebx+7
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.