SNIPPETS
stringlengths
2
1.64k
INTENTS
stringlengths
4
1.66k
mov cx, 0x1ff
store hexadecimal value of Ô777Õ in cx
mov cx, 0x1ff
load hexadecimal value 0x1ff into cx register
mov cx, 0x1ff
move 0x1ff into cx
mov cx, 0x2bc
move 0x2bc into cx
mov cx, 0x301
move the value 0x301 into the cx register
mov cx, 0x3b30
mov the value 0x3b30 into the cx register
mov cx, 0x401
move 0x401 into cx
mov cx, 0x5309
move 0x5309 into cx
mov cx, 0x9ed
copy the value 4755 into cx register
mov cx, 0x9ed
move 0x9ed into cx
mov cx, 0xfff
move 0xfff into cx
mov cx, 2001
move 2001 into cx
mov cx, 2001q
set flag o_wronly and o_append
mov cx, 2001Q
move 2001Q into cx
mov cx, word_table + 3
move the 4th element of the word_table into cx
mov cx, word_table[3]
move the 4th element of the array word_table into cx
mov cx,[esi]
copy esi content into cx register
mov cx,0x2bc
move the hexadecimal value 0x2bc (700) to cx register
mov cx,0x2bc
load hexadecimal value 0x2bc into cx register
mov cx,0x301
put 769 in cx
mov cx,0x3b30 \n push cx
put 15152 into cx regsiter, then push it on the stack
mov cx,0x401
transfer hexadecimal value 0x401 into cx register
mov dh, 0x35
copy the hexadecimal value 0x35 in dh register
mov dh, 0x35
move 0x35 into dh
mov dh, 0xff
move 0xff into dh
mov dh,0x4a
copy hexadecimal value 0x4a into dh register
mov dl, [esi-1]
move the address of esi-1 into dl
mov dl, [esi-1]
move the previous byte of the shellcode to dl
mov dl, [esi+1]
move the contents of dl into the next byte of the shellcode
mov dl, 0ffh
copy hexadecimal value 0xff in dl register
mov dl, 0x01
move 0x01 into dl
mov dl, 0x02
move 0x02 into dl
mov dl, 0x09
move 0x09 into dl
mov dl, 0x1
move 0x1 into dl
mov dl, 0x10
load 0x10 into dl register
mov dl, 0x10
copy 0x10 into dl register
mov dl, 0x10
load 0x10 into cl register
mov dl, 0x10
move 0x10 into dl
mov dl, 0x14
move 0x14 into dl
mov dl, 0x16
move value 0x16 to dl register
mov dl, 0x1c
transfer the hexadecimal value 0x1c (28) into dl register
mov dl, 0x1c
move 0x1c into dl
mov dl, 0x2
move 0x2 into dl
mov dl, 0x20
move 0x20 into dl
mov dl, 0x45
move 0x45 to dl
mov dl, 0x7f
move 0x7f into dl
mov dl, 0x7f \n push edx
lad ip address 127.0.0.1 (hex) as a byte into edx register then push it onto the stack
mov dl, 0xc
move 0xc into dl
mov dl, 0xd
set dl equal to 13
mov dl, 0xd
move 0xd into dl
mov dl, 0xff
move 0xff into dl
mov dl, 0xff
move 0xff to dl
mov dl, 1+0feh
copy hexadecimal value 1+0xfe in dl register
mov dl, 1+0feh
move 1+0feh into dl
mov dl, 93
move 93 into dl
mov dl, byte [eax + 1]
move the byte at the memory location specified by the operation [eax+1] into dl
mov dl, byte [eax + 1]
move the byte at address eax+1 to dl
mov dl, byte [eax + 1]
move the byte at the address [eax + 1] into dl
mov dl, byte [eax]
move the byte at address eax to dl
mov dl, byte [eax]
move the byte at the address [eax] into dl
mov dl, byte [eax]
move the byte in eax into dl
mov dl, byte [esi + 1]
move the singl byte at the memory location specified by the operation [esi+1] into dl
mov dl, byte [esi + 1]
move the contents of the address esi+1 into dl
mov dl, byte [esi + 1]
move the byte at the address [esi + 1] into dl
mov dl, byte [esi + edi + 1]
move the byte at the address esi+edi+1 into dl
mov dl, byte [esi]
move the single byte in esi into dl
mov dl, byte [esi]
put the byte in esi into dl
mov dl, byte 0ffh
move the byte 0ffh into dl
mov dl, byte 0ffh
move the byte at the address 0ffh into dl
mov dl, len
put lenght of encodedshellcode to dl
mov dl, len
move the contents stored at the address len into the dl register
mov dl,0x09
move the value $0x09 into dl
mov dl,0x1
load the value 1 into dl register
mov dl,0xff
align page address
mov dl,93
save in dl register the len of the buffer to write, 4th arg
mov ds:0x9501bb9b,eax
save at location ds:0x9501bb9b eax content
mov dword [eax], var1
copy the value in var1 into the doubleword starting at the address in eax
mov dword [ebx], 2
move the 32-bit integer representation of 2 into the doubleword starting at the address in ebx
mov dword [ebx], 4
move the 32-bit integer representation of 4 into the doubleword starting at address ebx
mov dword [esi + 12], eax
replace last double word with null
mov dword [esi + 12], eax
move eax into the dword at address [esi + 12]
mov dword [esi + 8], ebx
replace first double word with string
mov dword [esi + 8], ebx
move ebx into the dword at address [esi + 8]
mov dword [esp-0x10], 0x5f657a69
move the value 0x5f657a69 into the double word starting at the address [esp-0x10]
mov dword [esp-0x14], 0x6d6f646e
move the value 0x6d6f646e into the double word starting at the address [esp-0x14]
mov dword [esp-0x18], 0x61722f6c
move the value 0x61722f6c into the double word starting at the address [esp-0x18]
mov dword [esp-0x1c], 0x656e7265
move the value 0x656e7265 into the double word starting at the address [esp-0x1c]
mov dword [esp-0x20], 0x6b2f7379
move the value 0x6b2f7379 into the double word starting at the address [esp-0x20]
mov dword [esp-0x24], 0x732f636f
move the value 0x732f636f into the double word starting at the address [esp-0x24]
mov dword [esp-0x28], 0x72702f2f
move the value 0x72702f2f into the double word starting at the address [esp-0x28]
mov dword [esp-0x4], eax
move the contents of the eax into the double word starting at the address [esp-0x4]
mov dword [esp-0x4],eax \n mov dword [esp-0x8],0x65636170 \n mov dword [esp-0xc],0x735f6176 \n mov dword [esp-0x10],0x5f657a69 \n mov dword [esp-0x14],0x6d6f646e \n mov dword [esp-0x18],0x61722f6c \n mov dword [esp-0x1c],0x656e7265 \n mov dword [esp-0x20],0x6b2f7379 \n mov dword [esp-0x24],0x732f636f \n mov dword [esp-0x28],0x72702f2f \n sub esp,0x28 \n mov ebx,esp
push the string //proc/sys/kernel/randomize_va_space and the eax context on the stack and then load the stack pointer into ebx register
mov dword [esp-0x8], 0x65636170
move the value 0x65636170 into the double word starting at the address [esp-0x8]
mov dword [esp-0xc], 0x735f6176
move the value 0x735f6176 into the double word starting at the address [esp-0xc]
mov dword [esp-12], 0x6374652f
move 0x6374652f into the dword at address [esp-12]
mov dword [esp-12], 0x6374652f
move 0x6374652f into the dword at the memory location [esp-12]
mov dword [esp-4], ecx
copy ecx content as a double word into memory space at the address esp-4
mov dword [esp-4], ecx
move ecx into the doubleword starting at the address esp-4
mov dword [esp-4], esi
copy esi content as a double word into memory sapce at the address esp-4
mov dword [esp-4], esi
move esi into the dword at address [esp-4]