SNIPPETS stringlengths 2 1.64k | INTENTS stringlengths 4 1.66k |
|---|---|
D4: \n pop esi \n mov edi, esi | in D4 store the shellcode in edi and move the pointer into esi |
D4: \n xor byte [esi], 0x1 | define the function D4 and perform the xor operation between the byte in esi and the 0x1 value |
D4: \n xor byte [esi], 0x12 | define the function D4 and perform the xor operation between the byte of the shellcode and the 0x12 value |
D4: \n xor byte [esi], 0x5 | define the function D4 and perform the xor operation between the byte in esi and the 0x5 value |
das | decimal adjust al register after subtraction. |
das | correct the result in al register of the previous bcd subtraction operation. |
data: | declare the data label |
db ',ajm,pk#########' | define the byte string ',ajm,pk#########' |
db '/bin/sh' | define a byte string and initialize it to '/bin/sh' |
db '/bin/sh' | define the byte string '/bin/sh' |
db '/bin/sh#sh#' | define the byte string '/bin/sh#sh#' |
db '/etc/passwd#' | define the byte string '/etc/passwd#' |
db '/proc/sys/kernel/randomize_va_spacex' | define the byte string '/proc/sys/kernel/randomize_va_spacex' |
db '/sbin/insmod#/tmp/o.o' | define the byte string '/sbin/insmod#/tmp/o.o' |
db '/sbin/ipchains#-f#' | define the byte string '/sbin/ipchains#-f#' |
db '/sbin/iptables#-f#' | define the byte string '/sbin/iptables#-f#' |
db '/usr/bin/ncat#-lvp1337#-e/bin/bash#aaaabbbbccccdddd' | define the byte string '/usr/bin/ncat#-lvp1337#-e/bin/bash#aaaabbbbccccdddd' |
db '0',10 | define the byte string '0',10 |
db 'all all=(all) nopasswd: all', 0xa | define the byte string 'all all=(all) nopasswd: all' |
db 'cp /bin/sh /tmp/sh' | define the byte string 'cp /bin/sh /tmp/sh' |
db 'egg mark' | initialize a string to 'egg mark' |
db 'egg mark' | define the byte string 'egg mark' |
db 'my.txtx' | define the byte string 'my.txtx' |
db 'rm -f /tmp/f' | define the byte string 'rm -f /tmp/f' |
db 0ah | define the byte string Ô0ahÕ |
db 0b1h | define the byte string Ô0b1hÕ |
db 0b8h | define the byte string Ô0b8hÕ |
db 0c6h | define the byte string Ô0c6hÕ |
db 0d8h | define the byte string Ô0d8hÕ |
db 0e2h | define the byte string Ô0e2hÕ |
db 0x3e,0xcd,0x5d,0x75,0x3c,0x3c,0x80,0x75,0x75,0x3c,0x6f,0x76,0x7b | define an array of bytes and initialize it to 0x3e,0xcd,0x5d,0x75,0x3c,0x3c,0x80,0x75,0x75,0x3c,0x6f,0x76,0x7b |
db 0x68 | declare a byte contining 0x68 |
db 0x68 | declare a byte with no label containing the value 0x68 |
db 0x80 | declare a byte and initialize it to 0x80 |
db 0x80 | declare an unlabeled byte initialized to 0x80 |
db 0x96,0xf0,0x5d,0x96,0xef,0x60,0x96,0xee,0xbd,0x18,0xda,0x8d | define an array of bytes and initialize it to 0x96,0xf0,0x5d,0x96,0xef,0x60,0x96,0xee,0xbd,0x18,0xda,0x8d |
db 0xcd | define a byte and initialize it to 0xcd |
db 0xcd | define the byte 0xcd |
db 10 | declare a byte with no label containing the value 10 |
db 10 | declare an unlabeled byte initialized to 10 |
db 20h | define the byte string Ô20hÕ |
db 24h | define the byte string Ô24hÕ |
db 60h | define the byte string Ô60hÕ |
db 69h | define the byte string Ô69hÕ |
db 70h | define the byte string Ô70hÕ |
db 80h | define the byte string Ô80hÕ |
db 81h | define the byte string Ô81hÕ |
db 83h | define the byte string Ô83hÕ |
db 87h | define the byte string Ô87hÕ |
db 8bh | define the byte string Ô8bhÕ |
db 9ah | define the byte string Ô9ahÕ |
dd 0xdeadbeef | define a byte and initialize it to 0xdeadbeef |
dd 0xdeadbeef \n dd 0xdeadbeef | define double word 0xdeadbeef two times |
dec al \n jz shellcode | decrement the al register and jump to shellcode if the result is zero |
dec bl \n jnz L1 | decrement the bl register and jump to L1 if the result is not zero |
dec bl \n jz L1 | decrement the bl register and jump to L1 if the result is zero |
dec byte dl | decrement the byte at the address dl by one |
dec byte dl | decrement the byte in dl |
dec cl | decrement cl by1 |
dec cl | decrement cl register by 1 |
dec cl | decrement cl register |
dec cl | drement cl content by 1 |
dec cl | decrement counter |
dec cl | decrement the counter |
dec cl | decrement the cl register by one |
dec cl | decrement the contents of cl |
dec cl | decrement the contents of the cl register |
dec cl \n jns dup2 | decrement the contents of the cl register and jump to the dup2 label if the result is not negative |
dec cl \n jns loop_dup | decrement the contents of the cl register and jump to the loop_dup label if the result is not negative |
dec cl \n jns loopinghere | decrement the contents of the cl register and jump to the loopinghere label if the result is not negative |
dec cl \n jnz L2 | decrement cl and jump to L2 if the result is not equal to zero |
dec cl \n jz L2 | decrement cl and jump to L2 if the result is zero |
dec dl | decrement dl |
dec dl | decrement the dl register by one |
dec dl \n jnz L3 | decrement dl and jump to L3 if the result is not zero |
dec dl \n jz L3 | decrement dl and jump to L3 if the result is zero |
dec eax | decrements eax by 1 |
dec eax | decrement eax content |
dec eax | decrement eax content by 1 |
dec eax | decrement the contents of the eax register |
dec eax | subtract one from the contents of eax |
dec eax | decrement the eax register by one |
dec eax | decrement eax |
dec ebp | decrease ebp |
dec ebx | decrement ebx by 1 |
dec ebx | decrement ebx |
dec ebx | decrease ebx by 1 |
dec ebx | subtract one from the contents of ebx |
dec ebx | decrement the ebx register by one |
dec ecx | decrements ecx by 1 |
dec ecx | decrement ecx by 1 |
dec ecx | decrement ecx |
dec ecx | decrement ecx register |
dec ecx | decrement loop counter |
dec ecx | decrement the counter ecx |
dec ecx | decrement ecx alias loop counter |
dec ecx | decrement loop-counter |
dec ecx | decrement ecx content |
dec ecx | decrement ecx content by 1 |
dec ecx | count down to zero |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.